2026-02-18T04:47:07.615 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-18T04:47:07.631 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-18T04:47:07.708 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668 branch: 20.2.1_2.17.26-baseline_2 description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: yweinste@redhat.com first_in_suite: false flavor: default job_id: '54668' kernel: branch: distro kdb: true sha1: distro last_in_suite: false machine_type: trial name: yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: 20.2.1_2.17.26-baseline_2 ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: 20.2.1_2.17.26-baseline_2 sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed owner: scheduled_yuriw@soko04.front.sepia.ceph.com priority: 69 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 407 sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: 20.2.1_2.17.26-baseline_2 suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_adc1923395f2bcd6ae89b5d331d278364d1848ed/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed targets: trial079.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPLzZH0JfiK7gu/oFInQpx5uPj9h9j4f2umGkuJSA71oIwQlXgJ/FApmGbr/6kiwm9qQuhaRRQKCdmNpu8EHLlw= trial191.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJUyvDNLq7EKVX5rdq+JLLY5KyrY3TmtPd1r0gcf/vr7vaRAZJ+wjwCODSzrrdn8LtOe3tIBJZMse12v4/DNOko= trial197.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC0VySysSSeFXqYIsQ/Q469ecj1CQufkB1wLGEAgP+hmDnyNGDthX0ztGPeumvPkmVySb3kwlcJb9mixBhZOObY= 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-17_21:23:05 tube: trial user: yuriw verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.3682 2026-02-18T04:47:07.708 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_adc1923395f2bcd6ae89b5d331d278364d1848ed/qa; will attempt to use it 2026-02-18T04:47:07.709 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_adc1923395f2bcd6ae89b5d331d278364d1848ed/qa/tasks 2026-02-18T04:47:07.709 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-18T04:47:07.714 INFO:teuthology.task.internal:Checking packages... 2026-02-18T04:47:07.714 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'adc1923395f2bcd6ae89b5d331d278364d1848ed' 2026-02-18T04:47:07.714 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-18T04:47:07.714 INFO:teuthology.packaging:ref: None 2026-02-18T04:47:07.714 INFO:teuthology.packaging:tag: None 2026-02-18T04:47:07.714 INFO:teuthology.packaging:branch: 20.2.1_2.17.26-baseline_2 2026-02-18T04:47:07.714 INFO:teuthology.packaging:sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:47:07.714 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=20.2.1_2.17.26-baseline_2 2026-02-18T04:47:07.835 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-670.gadc19233 2026-02-18T04:47:07.836 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-18T04:47:07.847 INFO:teuthology.task.internal:no buildpackages task found 2026-02-18T04:47:07.847 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-18T04:47:07.861 INFO:teuthology.task.internal:Saving configuration 2026-02-18T04:47:07.867 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-18T04:47:07.879 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-18T04:47:08.274 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial079.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668', '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-18 04:43:39.623275', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPLzZH0JfiK7gu/oFInQpx5uPj9h9j4f2umGkuJSA71oIwQlXgJ/FApmGbr/6kiwm9qQuhaRRQKCdmNpu8EHLlw='} 2026-02-18T04:47:08.331 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial191.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668', '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-18 04:43:39.624299', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJUyvDNLq7EKVX5rdq+JLLY5KyrY3TmtPd1r0gcf/vr7vaRAZJ+wjwCODSzrrdn8LtOe3tIBJZMse12v4/DNOko='} 2026-02-18T04:47:08.387 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial197.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668', '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-18 04:43:39.623881', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC0VySysSSeFXqYIsQ/Q469ecj1CQufkB1wLGEAgP+hmDnyNGDthX0ztGPeumvPkmVySb3kwlcJb9mixBhZOObY='} 2026-02-18T04:47:08.387 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-18T04:47:08.401 INFO:teuthology.task.internal:roles: ubuntu@trial079.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-02-18T04:47:08.401 INFO:teuthology.task.internal:roles: ubuntu@trial191.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-02-18T04:47:08.401 INFO:teuthology.task.internal:roles: ubuntu@trial197.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-02-18T04:47:08.401 INFO:teuthology.run_tasks:Running task console_log... 2026-02-18T04:47:08.650 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7d3fedbe3880>, signals=[15]) 2026-02-18T04:47:08.650 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-18T04:47:08.661 INFO:teuthology.task.internal:Opening connections... 2026-02-18T04:47:08.661 DEBUG:teuthology.task.internal:connecting to ubuntu@trial079.front.sepia.ceph.com 2026-02-18T04:47:08.662 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial079.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:47:08.723 DEBUG:teuthology.task.internal:connecting to ubuntu@trial191.front.sepia.ceph.com 2026-02-18T04:47:08.723 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:47:08.785 DEBUG:teuthology.task.internal:connecting to ubuntu@trial197.front.sepia.ceph.com 2026-02-18T04:47:08.785 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial197.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:47:08.847 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-18T04:47:08.859 DEBUG:teuthology.orchestra.run.trial079:> uname -m 2026-02-18T04:47:08.875 INFO:teuthology.orchestra.run.trial079.stdout:x86_64 2026-02-18T04:47:08.875 DEBUG:teuthology.orchestra.run.trial079:> cat /etc/os-release 2026-02-18T04:47:08.932 INFO:teuthology.orchestra.run.trial079.stdout:NAME="CentOS Stream" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:VERSION="9" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:ID="centos" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:ID_LIKE="rhel fedora" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:VERSION_ID="9" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:PLATFORM_ID="platform:el9" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:ANSI_COLOR="0;31" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:LOGO="fedora-logo-icon" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:HOME_URL="https://centos.org/" 2026-02-18T04:47:08.933 INFO:teuthology.orchestra.run.trial079.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-18T04:47:08.934 INFO:teuthology.orchestra.run.trial079.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-18T04:47:08.934 INFO:teuthology.orchestra.run.trial079.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-18T04:47:08.934 INFO:teuthology.lock.ops:Updating trial079.front.sepia.ceph.com on lock server 2026-02-18T04:47:09.097 DEBUG:teuthology.orchestra.run.trial191:> uname -m 2026-02-18T04:47:09.113 INFO:teuthology.orchestra.run.trial191.stdout:x86_64 2026-02-18T04:47:09.113 DEBUG:teuthology.orchestra.run.trial191:> cat /etc/os-release 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:NAME="CentOS Stream" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:VERSION="9" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:ID="centos" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:ID_LIKE="rhel fedora" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:VERSION_ID="9" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:PLATFORM_ID="platform:el9" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-18T04:47:09.169 INFO:teuthology.orchestra.run.trial191.stdout:ANSI_COLOR="0;31" 2026-02-18T04:47:09.170 INFO:teuthology.orchestra.run.trial191.stdout:LOGO="fedora-logo-icon" 2026-02-18T04:47:09.170 INFO:teuthology.orchestra.run.trial191.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-18T04:47:09.170 INFO:teuthology.orchestra.run.trial191.stdout:HOME_URL="https://centos.org/" 2026-02-18T04:47:09.170 INFO:teuthology.orchestra.run.trial191.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-18T04:47:09.170 INFO:teuthology.orchestra.run.trial191.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-18T04:47:09.170 INFO:teuthology.orchestra.run.trial191.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-18T04:47:09.170 INFO:teuthology.lock.ops:Updating trial191.front.sepia.ceph.com on lock server 2026-02-18T04:47:09.271 DEBUG:teuthology.orchestra.run.trial197:> uname -m 2026-02-18T04:47:09.287 INFO:teuthology.orchestra.run.trial197.stdout:x86_64 2026-02-18T04:47:09.287 DEBUG:teuthology.orchestra.run.trial197:> cat /etc/os-release 2026-02-18T04:47:09.342 INFO:teuthology.orchestra.run.trial197.stdout:NAME="CentOS Stream" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:VERSION="9" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:ID="centos" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:ID_LIKE="rhel fedora" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:VERSION_ID="9" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:PLATFORM_ID="platform:el9" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:ANSI_COLOR="0;31" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:LOGO="fedora-logo-icon" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-18T04:47:09.343 INFO:teuthology.orchestra.run.trial197.stdout:HOME_URL="https://centos.org/" 2026-02-18T04:47:09.344 INFO:teuthology.orchestra.run.trial197.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-18T04:47:09.344 INFO:teuthology.orchestra.run.trial197.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-18T04:47:09.344 INFO:teuthology.orchestra.run.trial197.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-18T04:47:09.344 INFO:teuthology.lock.ops:Updating trial197.front.sepia.ceph.com on lock server 2026-02-18T04:47:09.569 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-18T04:47:09.584 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-18T04:47:09.596 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-18T04:47:09.596 DEBUG:teuthology.orchestra.run.trial079:> test '!' -e /home/ubuntu/cephtest 2026-02-18T04:47:09.599 DEBUG:teuthology.orchestra.run.trial191:> test '!' -e /home/ubuntu/cephtest 2026-02-18T04:47:09.602 DEBUG:teuthology.orchestra.run.trial197:> test '!' -e /home/ubuntu/cephtest 2026-02-18T04:47:09.618 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-18T04:47:09.629 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-18T04:47:09.630 DEBUG:teuthology.orchestra.run.trial079:> test -z $(ls -A /var/lib/ceph) 2026-02-18T04:47:09.655 DEBUG:teuthology.orchestra.run.trial191:> test -z $(ls -A /var/lib/ceph) 2026-02-18T04:47:09.657 DEBUG:teuthology.orchestra.run.trial197:> test -z $(ls -A /var/lib/ceph) 2026-02-18T04:47:09.675 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-18T04:47:09.896 INFO:teuthology.run_tasks:Running task kernel... 2026-02-18T04:47:09.917 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': True, 'sha1': 'distro'} 2026-02-18T04:47:09.917 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-18T04:47:09.917 DEBUG:teuthology.orchestra.run.trial079:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-18T04:47:09.918 DEBUG:teuthology.orchestra.run.trial191:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-18T04:47:09.918 DEBUG:teuthology.orchestra.run.trial197:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-18T04:47:09.933 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:47:09.933 DEBUG:teuthology.orchestra.run.trial191:> uname -r 2026-02-18T04:47:09.933 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:47:09.933 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:47:09.933 DEBUG:teuthology.orchestra.run.trial079:> uname -r 2026-02-18T04:47:09.934 DEBUG:teuthology.orchestra.run.trial197:> uname -r 2026-02-18T04:47:09.988 INFO:teuthology.orchestra.run.trial191.stdout:5.14.0-645.el9.x86_64 2026-02-18T04:47:09.988 INFO:teuthology.task.kernel:Running kernel on trial191: 5.14.0-645.el9.x86_64 2026-02-18T04:47:09.988 DEBUG:teuthology.orchestra.run.trial191:> sudo yum install -y kernel 2026-02-18T04:47:09.989 INFO:teuthology.orchestra.run.trial079.stdout:5.14.0-645.el9.x86_64 2026-02-18T04:47:09.989 INFO:teuthology.task.kernel:Running kernel on trial079: 5.14.0-645.el9.x86_64 2026-02-18T04:47:09.989 DEBUG:teuthology.orchestra.run.trial079:> sudo yum install -y kernel 2026-02-18T04:47:09.990 INFO:teuthology.orchestra.run.trial197.stdout:5.14.0-645.el9.x86_64 2026-02-18T04:47:09.990 INFO:teuthology.task.kernel:Running kernel on trial197: 5.14.0-645.el9.x86_64 2026-02-18T04:47:09.990 DEBUG:teuthology.orchestra.run.trial197:> sudo yum install -y kernel 2026-02-18T04:47:11.186 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.9 MB 00:00 2026-02-18T04:47:11.195 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.9 MB 00:00 2026-02-18T04:47:11.373 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - BaseOS 8.7 MB/s | 8.9 MB 00:01 2026-02-18T04:47:14.677 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - AppStream 9.1 MB/s | 27 MB 00:02 2026-02-18T04:47:14.906 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - AppStream 8.4 MB/s | 27 MB 00:03 2026-02-18T04:47:17.345 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - CRB 28 MB/s | 7.8 MB 00:00 2026-02-18T04:47:18.405 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - CRB 7.0 MB/s | 7.8 MB 00:01 2026-02-18T04:47:18.591 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - Extras packages 40 kB/s | 20 kB 00:00 2026-02-18T04:47:19.018 INFO:teuthology.orchestra.run.trial197.stdout:Extra Packages for Enterprise Linux 56 MB/s | 20 MB 00:00 2026-02-18T04:47:19.855 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - Extras packages 28 kB/s | 20 kB 00:00 2026-02-18T04:47:20.114 INFO:teuthology.orchestra.run.trial191.stdout:Extra Packages for Enterprise Linux 103 MB/s | 20 MB 00:00 2026-02-18T04:47:20.267 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - AppStream 3.2 MB/s | 27 MB 00:08 2026-02-18T04:47:22.284 INFO:teuthology.orchestra.run.trial197.stdout:lab-extras 2.9 MB/s | 50 kB 00:00 2026-02-18T04:47:23.266 INFO:teuthology.orchestra.run.trial191.stdout:lab-extras 2.3 MB/s | 50 kB 00:00 2026-02-18T04:47:23.292 INFO:teuthology.orchestra.run.trial197.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-18T04:47:23.314 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:47:23.315 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:47:23.315 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-18T04:47:23.315 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:47:23.315 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:47:23.315 INFO:teuthology.orchestra.run.trial197.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-18T04:47:23.315 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout: kernel-core x86_64 5.14.0-681.el9 baseos 17 M 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout: kernel-modules x86_64 5.14.0-681.el9 baseos 40 M 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout: kernel-modules-core x86_64 5.14.0-681.el9 baseos 31 M 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout:Install 4 Packages 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 88 M 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 135 M 2026-02-18T04:47:23.316 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:47:23.488 INFO:teuthology.orchestra.run.trial197.stdout:(1/4): kernel-5.14.0-681.el9.x86_64.rpm 10 MB/s | 803 kB 00:00 2026-02-18T04:47:23.564 INFO:teuthology.orchestra.run.trial197.stdout:(2/4): kernel-core-5.14.0-681.el9.x86_64.rpm 112 MB/s | 17 MB 00:00 2026-02-18T04:47:23.664 INFO:teuthology.orchestra.run.trial197.stdout:(3/4): kernel-modules-5.14.0-681.el9.x86_64.rpm 157 MB/s | 40 MB 00:00 2026-02-18T04:47:23.721 INFO:teuthology.orchestra.run.trial197.stdout:(4/4): kernel-modules-core-5.14.0-681.el9.x86_6 133 MB/s | 31 MB 00:00 2026-02-18T04:47:23.723 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:47:23.723 INFO:teuthology.orchestra.run.trial197.stdout:Total 216 MB/s | 88 MB 00:00 2026-02-18T04:47:23.910 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:47:24.113 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:47:24.113 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:47:24.277 INFO:teuthology.orchestra.run.trial191.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-18T04:47:24.299 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:47:24.300 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:47:24.300 INFO:teuthology.orchestra.run.trial191.stdout: Package Architecture Version Repository Size 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout:Installing dependencies: 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout: kernel-core x86_64 5.14.0-681.el9 baseos 17 M 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout: kernel-modules x86_64 5.14.0-681.el9 baseos 40 M 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout: kernel-modules-core x86_64 5.14.0-681.el9 baseos 31 M 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:47:24.301 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:47:24.302 INFO:teuthology.orchestra.run.trial191.stdout:Install 4 Packages 2026-02-18T04:47:24.302 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:47:24.302 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 88 M 2026-02-18T04:47:24.302 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 135 M 2026-02-18T04:47:24.302 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:47:24.461 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:47:24.461 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:47:25.548 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:47:25.717 INFO:teuthology.orchestra.run.trial191.stdout:(1/4): kernel-5.14.0-681.el9.x86_64.rpm 595 kB/s | 803 kB 00:01 2026-02-18T04:47:25.842 INFO:teuthology.orchestra.run.trial197.stdout: Installing : kernel-modules-core-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:47:25.861 INFO:teuthology.orchestra.run.trial197.stdout: Installing : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:47:27.652 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:47:27.680 INFO:teuthology.orchestra.run.trial197.stdout: Installing : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:47:29.360 INFO:teuthology.orchestra.run.trial191.stdout:(2/4): kernel-modules-core-5.14.0-681.el9.x86_6 8.5 MB/s | 31 MB 00:03 2026-02-18T04:47:30.570 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - CRB 1.0 MB/s | 7.8 MB 00:07 2026-02-18T04:47:30.926 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:47:30.933 INFO:teuthology.orchestra.run.trial197.stdout: Installing : kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:47:31.484 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - Extras packages 115 kB/s | 20 kB 00:00 2026-02-18T04:47:31.562 INFO:teuthology.orchestra.run.trial191.stdout:(3/4): kernel-modules-5.14.0-681.el9.x86_64.rpm 5.5 MB/s | 40 MB 00:07 2026-02-18T04:47:32.839 INFO:teuthology.orchestra.run.trial191.stdout:(4/4): kernel-core-5.14.0-681.el9.x86_64.rpm 2.0 MB/s | 17 MB 00:08 2026-02-18T04:47:32.841 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:47:32.841 INFO:teuthology.orchestra.run.trial191.stdout:Total 10 MB/s | 88 MB 00:08 2026-02-18T04:47:33.030 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:47:33.120 INFO:teuthology.orchestra.run.trial079.stdout:Extra Packages for Enterprise Linux 13 MB/s | 20 MB 00:01 2026-02-18T04:47:33.244 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:47:33.244 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:47:33.590 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:47:33.590 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:47:33.971 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:47:34.677 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:47:34.957 INFO:teuthology.orchestra.run.trial191.stdout: Installing : kernel-modules-core-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:47:34.976 INFO:teuthology.orchestra.run.trial191.stdout: Installing : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:47:36.283 INFO:teuthology.orchestra.run.trial079.stdout:lab-extras 1.7 MB/s | 50 kB 00:00 2026-02-18T04:47:36.760 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:47:36.788 INFO:teuthology.orchestra.run.trial191.stdout: Installing : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:47:37.307 INFO:teuthology.orchestra.run.trial079.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-18T04:47:37.329 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:47:37.330 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:47:37.330 INFO:teuthology.orchestra.run.trial079.stdout: Package Architecture Version Repository Size 2026-02-18T04:47:37.330 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:47:37.330 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:47:37.330 INFO:teuthology.orchestra.run.trial079.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout:Installing dependencies: 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout: kernel-core x86_64 5.14.0-681.el9 baseos 17 M 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout: kernel-modules x86_64 5.14.0-681.el9 baseos 40 M 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout: kernel-modules-core x86_64 5.14.0-681.el9 baseos 31 M 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout:Install 4 Packages 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 88 M 2026-02-18T04:47:37.331 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 135 M 2026-02-18T04:47:37.332 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:47:37.443 INFO:teuthology.orchestra.run.trial079.stdout:(1/4): kernel-5.14.0-681.el9.x86_64.rpm 27 MB/s | 803 kB 00:00 2026-02-18T04:47:37.506 INFO:teuthology.orchestra.run.trial079.stdout:(2/4): kernel-core-5.14.0-681.el9.x86_64.rpm 187 MB/s | 17 MB 00:00 2026-02-18T04:47:37.613 INFO:teuthology.orchestra.run.trial079.stdout:(3/4): kernel-modules-5.14.0-681.el9.x86_64.rpm 199 MB/s | 40 MB 00:00 2026-02-18T04:47:37.684 INFO:teuthology.orchestra.run.trial079.stdout:(4/4): kernel-modules-core-5.14.0-681.el9.x86_6 128 MB/s | 31 MB 00:00 2026-02-18T04:47:37.684 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:47:37.685 INFO:teuthology.orchestra.run.trial079.stdout:Total 249 MB/s | 88 MB 00:00 2026-02-18T04:47:37.875 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:47:38.084 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:47:38.084 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:47:38.431 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:47:38.432 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:47:39.528 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:47:39.811 INFO:teuthology.orchestra.run.trial079.stdout: Installing : kernel-modules-core-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:47:39.812 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:47:39.818 INFO:teuthology.orchestra.run.trial191.stdout: Installing : kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:47:39.831 INFO:teuthology.orchestra.run.trial079.stdout: Installing : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:47:41.612 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:47:41.640 INFO:teuthology.orchestra.run.trial079.stdout: Installing : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:47:43.057 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:47:44.659 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:47:44.664 INFO:teuthology.orchestra.run.trial079.stdout: Installing : kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:47:47.697 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:04.442 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:04.463 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:04.526 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:04.526 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:48:04.527 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:48:04.527 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:48:04.577 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout: kernel-core-5.14.0-681.el9.x86_64 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout: kernel-modules-5.14.0-681.el9.x86_64 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout: kernel-modules-core-5.14.0-681.el9.x86_64 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:48:04.578 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:48:04.635 DEBUG:teuthology.orchestra.run.trial197:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:48:04.661 INFO:teuthology.orchestra.run.trial197.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:04.662 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:48:04.662 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-645.el9.x86_64 Expected: 5.14.0-681.el9.x86_64 2026-02-18T04:48:04.662 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2026-02-18T04:48:04.662 DEBUG:teuthology.task.kernel:src is distro, skipping download 2026-02-18T04:48:04.663 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2026-02-18T04:48:04.663 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@trial197.front.sepia.ceph.com, path=None, version=distro) 2026-02-18T04:48:04.663 DEBUG:teuthology.orchestra.run.trial197:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:48:04.726 INFO:teuthology.orchestra.run.trial197.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:04.726 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:48:04.726 DEBUG:teuthology.orchestra.run.trial197:> sudo rpm -qi grub2-tools 2026-02-18T04:48:04.794 INFO:teuthology.orchestra.run.trial197.stdout:Name : grub2-tools 2026-02-18T04:48:04.794 INFO:teuthology.orchestra.run.trial197.stdout:Epoch : 1 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Version : 2.06 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Release : 118.el9 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Architecture: x86_64 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Install Date: Thu 04 Dec 2025 11:54:21 PM UTC 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Group : Unspecified 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Size : 8393909 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:License : GPLv3+ 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Signature : RSA/SHA256, Wed 05 Nov 2025 09:13:15 AM UTC, Key ID 05b555b38483c65d 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Source RPM : grub2-2.06-118.el9.src.rpm 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Build Date : Tue 04 Nov 2025 03:44:14 PM UTC 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2026-02-18T04:48:04.795 INFO:teuthology.orchestra.run.trial197.stdout:Packager : builder@centos.org 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:Vendor : CentOS 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:URL : http://www.gnu.org/software/grub/ 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:Summary : Support tools for GRUB. 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:Description : 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:customizable bootloader with modular architecture. It supports a rich 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:variety of kernel formats, file systems, computer architectures and 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:hardware devices. 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:48:04.796 INFO:teuthology.orchestra.run.trial197.stdout:This subpackage provides tools for support of all platforms. 2026-02-18T04:48:04.798 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2026-02-18T04:48:04.798 INFO:teuthology.task.kernel:Updating grub on trial197 to boot 5.14.0-681.el9.x86_64 2026-02-18T04:48:04.798 DEBUG:teuthology.orchestra.run.trial197:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f -print -quit 2026-02-18T04:48:04.861 INFO:teuthology.orchestra.run.trial197.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:48:04.862 DEBUG:teuthology.orchestra.run.trial197:> sudo command -v grubby && echo yes || echo no 2026-02-18T04:48:04.925 INFO:teuthology.orchestra.run.trial197.stdout:/sbin/grubby 2026-02-18T04:48:04.927 INFO:teuthology.orchestra.run.trial197.stdout:yes 2026-02-18T04:48:04.927 DEBUG:teuthology.orchestra.run.trial197:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f | grep -F "5.14.0-681.el9.x86_64" | head -n 1 2026-02-18T04:48:04.991 INFO:teuthology.orchestra.run.trial197.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:48:04.992 DEBUG:teuthology.orchestra.run.trial197:> sudo grub2-set-default b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64 2026-02-18T04:48:05.065 DEBUG:teuthology.orchestra.run.trial197:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2026-02-18T04:48:05.274 INFO:teuthology.orchestra.run.trial197.stderr:Generating grub configuration file ... 2026-02-18T04:48:05.336 INFO:teuthology.orchestra.run.trial197.stderr:Found linux image: /boot/vmlinuz-5.14.0-681.el9.x86_64 2026-02-18T04:48:05.342 INFO:teuthology.orchestra.run.trial197.stderr:Found initrd image: /boot/initramfs-5.14.0-681.el9.x86_64.img 2026-02-18T04:48:05.590 INFO:teuthology.orchestra.run.trial197.stderr:Found linux image: /boot/vmlinuz-5.14.0-645.el9.x86_64 2026-02-18T04:48:05.597 INFO:teuthology.orchestra.run.trial197.stderr:Found initrd image: /boot/initramfs-5.14.0-645.el9.x86_64.img 2026-02-18T04:48:05.628 INFO:teuthology.orchestra.run.trial197.stderr:Found linux image: /boot/vmlinuz-0-rescue-b0373be789df49cdafedf423703d2566 2026-02-18T04:48:05.635 INFO:teuthology.orchestra.run.trial197.stderr:Found initrd image: /boot/initramfs-0-rescue-b0373be789df49cdafedf423703d2566.img 2026-02-18T04:48:05.659 INFO:teuthology.orchestra.run.trial197.stderr:Found linux image: /boot/vmlinuz-0-rescue-2734456005d743dca7f3dc77c35a2d0d 2026-02-18T04:48:05.666 INFO:teuthology.orchestra.run.trial197.stderr:Found initrd image: /boot/initramfs-0-rescue-2734456005d743dca7f3dc77c35a2d0d.img 2026-02-18T04:48:05.747 INFO:teuthology.orchestra.run.trial197.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2026-02-18T04:48:05.755 INFO:teuthology.orchestra.run.trial197.stderr:done 2026-02-18T04:48:05.757 DEBUG:teuthology.orchestra.run.trial197:> test -d /sys/firmware/efi 2026-02-18T04:48:05.773 DEBUG:teuthology.orchestra.run.trial197:> sudo find /boot/efi/EFI -mindepth 1 -maxdepth 1 -type d || true 2026-02-18T04:48:05.837 INFO:teuthology.orchestra.run.trial197.stdout:/boot/efi/EFI/BOOT 2026-02-18T04:48:05.837 INFO:teuthology.orchestra.run.trial197.stdout:/boot/efi/EFI/centos 2026-02-18T04:48:05.839 DEBUG:teuthology.orchestra.run.trial197:> sudo test -f /boot/efi/EFI/BOOT/grub.cfg && echo yes || echo no 2026-02-18T04:48:05.904 INFO:teuthology.orchestra.run.trial197.stdout:no 2026-02-18T04:48:05.904 DEBUG:teuthology.orchestra.run.trial197:> sudo test -f /boot/efi/EFI/centos/grub.cfg && echo yes || echo no 2026-02-18T04:48:05.969 INFO:teuthology.orchestra.run.trial197.stdout:yes 2026-02-18T04:48:05.970 DEBUG:teuthology.orchestra.run.trial197:> sudo cp -f /boot/grub2/grub.cfg /boot/efi/EFI/centos/grub.cfg 2026-02-18T04:48:06.034 INFO:teuthology.orchestra.remote:Triggering safe hard reboot via SysRq on trial197 2026-02-18T04:48:06.035 DEBUG:teuthology.orchestra.run.trial197:> sudo bash -c ' 2026-02-18T04:48:06.035 DEBUG:teuthology.orchestra.run.trial197:> echo pci > /sys/kernel/reboot/type && echo 1 > /sys/kernel/reboot/force && sync && echo s > /proc/sysrq-trigger && echo u > /proc/sysrq-trigger && sleep 2 && echo b > /proc/sysrq-trigger 2026-02-18T04:48:06.035 DEBUG:teuthology.orchestra.run.trial197:> ' 2026-02-18T04:48:13.524 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:13.545 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:13.609 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:13.609 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:48:13.609 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:48:13.609 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:48:13.662 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:13.662 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:48:13.662 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:48:13.663 INFO:teuthology.orchestra.run.trial191.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:13.663 INFO:teuthology.orchestra.run.trial191.stdout: kernel-core-5.14.0-681.el9.x86_64 2026-02-18T04:48:13.663 INFO:teuthology.orchestra.run.trial191.stdout: kernel-modules-5.14.0-681.el9.x86_64 2026-02-18T04:48:13.663 INFO:teuthology.orchestra.run.trial191.stdout: kernel-modules-core-5.14.0-681.el9.x86_64 2026-02-18T04:48:13.663 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:48:13.663 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:48:13.719 DEBUG:teuthology.orchestra.run.trial191:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:48:13.744 INFO:teuthology.orchestra.run.trial191.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:13.745 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:48:13.745 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-645.el9.x86_64 Expected: 5.14.0-681.el9.x86_64 2026-02-18T04:48:13.745 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2026-02-18T04:48:13.746 DEBUG:teuthology.task.kernel:src is distro, skipping download 2026-02-18T04:48:13.746 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2026-02-18T04:48:13.746 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@trial191.front.sepia.ceph.com, path=None, version=distro) 2026-02-18T04:48:13.746 DEBUG:teuthology.orchestra.run.trial191:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:48:13.809 INFO:teuthology.orchestra.run.trial191.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:13.810 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:48:13.810 DEBUG:teuthology.orchestra.run.trial191:> sudo rpm -qi grub2-tools 2026-02-18T04:48:13.878 INFO:teuthology.orchestra.run.trial191.stdout:Name : grub2-tools 2026-02-18T04:48:13.878 INFO:teuthology.orchestra.run.trial191.stdout:Epoch : 1 2026-02-18T04:48:13.878 INFO:teuthology.orchestra.run.trial191.stdout:Version : 2.06 2026-02-18T04:48:13.878 INFO:teuthology.orchestra.run.trial191.stdout:Release : 118.el9 2026-02-18T04:48:13.878 INFO:teuthology.orchestra.run.trial191.stdout:Architecture: x86_64 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Install Date: Thu 04 Dec 2025 11:54:21 PM UTC 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Group : Unspecified 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Size : 8393909 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:License : GPLv3+ 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Signature : RSA/SHA256, Wed 05 Nov 2025 09:13:15 AM UTC, Key ID 05b555b38483c65d 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Source RPM : grub2-2.06-118.el9.src.rpm 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Build Date : Tue 04 Nov 2025 03:44:14 PM UTC 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Packager : builder@centos.org 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Vendor : CentOS 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:URL : http://www.gnu.org/software/grub/ 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Summary : Support tools for GRUB. 2026-02-18T04:48:13.879 INFO:teuthology.orchestra.run.trial191.stdout:Description : 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout:customizable bootloader with modular architecture. It supports a rich 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout:variety of kernel formats, file systems, computer architectures and 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout:hardware devices. 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:48:13.880 INFO:teuthology.orchestra.run.trial191.stdout:This subpackage provides tools for support of all platforms. 2026-02-18T04:48:13.881 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2026-02-18T04:48:13.881 INFO:teuthology.task.kernel:Updating grub on trial191 to boot 5.14.0-681.el9.x86_64 2026-02-18T04:48:13.882 DEBUG:teuthology.orchestra.run.trial191:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f -print -quit 2026-02-18T04:48:13.944 INFO:teuthology.orchestra.run.trial191.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:48:13.946 DEBUG:teuthology.orchestra.run.trial191:> sudo command -v grubby && echo yes || echo no 2026-02-18T04:48:14.010 INFO:teuthology.orchestra.run.trial191.stdout:/sbin/grubby 2026-02-18T04:48:14.012 INFO:teuthology.orchestra.run.trial191.stdout:yes 2026-02-18T04:48:14.012 DEBUG:teuthology.orchestra.run.trial191:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f | grep -F "5.14.0-681.el9.x86_64" | head -n 1 2026-02-18T04:48:14.076 INFO:teuthology.orchestra.run.trial191.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:48:14.077 DEBUG:teuthology.orchestra.run.trial191:> sudo grub2-set-default b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64 2026-02-18T04:48:14.150 DEBUG:teuthology.orchestra.run.trial191:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2026-02-18T04:48:14.359 INFO:teuthology.orchestra.run.trial191.stderr:Generating grub configuration file ... 2026-02-18T04:48:14.422 INFO:teuthology.orchestra.run.trial191.stderr:Found linux image: /boot/vmlinuz-5.14.0-681.el9.x86_64 2026-02-18T04:48:14.429 INFO:teuthology.orchestra.run.trial191.stderr:Found initrd image: /boot/initramfs-5.14.0-681.el9.x86_64.img 2026-02-18T04:48:14.677 INFO:teuthology.orchestra.run.trial191.stderr:Found linux image: /boot/vmlinuz-5.14.0-645.el9.x86_64 2026-02-18T04:48:14.683 INFO:teuthology.orchestra.run.trial191.stderr:Found initrd image: /boot/initramfs-5.14.0-645.el9.x86_64.img 2026-02-18T04:48:14.714 INFO:teuthology.orchestra.run.trial191.stderr:Found linux image: /boot/vmlinuz-0-rescue-b0373be789df49cdafedf423703d2566 2026-02-18T04:48:14.721 INFO:teuthology.orchestra.run.trial191.stderr:Found initrd image: /boot/initramfs-0-rescue-b0373be789df49cdafedf423703d2566.img 2026-02-18T04:48:14.743 INFO:teuthology.orchestra.run.trial191.stderr:Found linux image: /boot/vmlinuz-0-rescue-2734456005d743dca7f3dc77c35a2d0d 2026-02-18T04:48:14.750 INFO:teuthology.orchestra.run.trial191.stderr:Found initrd image: /boot/initramfs-0-rescue-2734456005d743dca7f3dc77c35a2d0d.img 2026-02-18T04:48:14.832 INFO:teuthology.orchestra.run.trial191.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2026-02-18T04:48:14.840 INFO:teuthology.orchestra.run.trial191.stderr:done 2026-02-18T04:48:14.842 DEBUG:teuthology.orchestra.run.trial191:> test -d /sys/firmware/efi 2026-02-18T04:48:14.858 DEBUG:teuthology.orchestra.run.trial191:> sudo find /boot/efi/EFI -mindepth 1 -maxdepth 1 -type d || true 2026-02-18T04:48:14.922 INFO:teuthology.orchestra.run.trial191.stdout:/boot/efi/EFI/BOOT 2026-02-18T04:48:14.922 INFO:teuthology.orchestra.run.trial191.stdout:/boot/efi/EFI/centos 2026-02-18T04:48:14.924 DEBUG:teuthology.orchestra.run.trial191:> sudo test -f /boot/efi/EFI/BOOT/grub.cfg && echo yes || echo no 2026-02-18T04:48:14.988 INFO:teuthology.orchestra.run.trial191.stdout:no 2026-02-18T04:48:14.988 DEBUG:teuthology.orchestra.run.trial191:> sudo test -f /boot/efi/EFI/centos/grub.cfg && echo yes || echo no 2026-02-18T04:48:15.054 INFO:teuthology.orchestra.run.trial191.stdout:yes 2026-02-18T04:48:15.055 DEBUG:teuthology.orchestra.run.trial191:> sudo cp -f /boot/grub2/grub.cfg /boot/efi/EFI/centos/grub.cfg 2026-02-18T04:48:15.118 INFO:teuthology.orchestra.remote:Triggering safe hard reboot via SysRq on trial191 2026-02-18T04:48:15.118 DEBUG:teuthology.orchestra.run.trial191:> sudo bash -c ' 2026-02-18T04:48:15.119 DEBUG:teuthology.orchestra.run.trial191:> echo pci > /sys/kernel/reboot/type && echo 1 > /sys/kernel/reboot/force && sync && echo s > /proc/sysrq-trigger && echo u > /proc/sysrq-trigger && sleep 2 && echo b > /proc/sysrq-trigger 2026-02-18T04:48:15.119 DEBUG:teuthology.orchestra.run.trial191:> ' 2026-02-18T04:48:18.082 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:18.102 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:18.168 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:18.168 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:48:18.168 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:48:18.168 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: kernel-core-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: kernel-modules-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: kernel-modules-core-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.219 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:48:18.220 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:48:18.277 DEBUG:teuthology.orchestra.run.trial079:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:48:18.301 INFO:teuthology.orchestra.run.trial079.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.302 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:48:18.303 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-645.el9.x86_64 Expected: 5.14.0-681.el9.x86_64 2026-02-18T04:48:18.303 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2026-02-18T04:48:18.303 DEBUG:teuthology.task.kernel:src is distro, skipping download 2026-02-18T04:48:18.303 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2026-02-18T04:48:18.303 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@trial079.front.sepia.ceph.com, path=None, version=distro) 2026-02-18T04:48:18.303 DEBUG:teuthology.orchestra.run.trial079:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:48:18.374 INFO:teuthology.orchestra.run.trial079.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.375 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:48:18.375 DEBUG:teuthology.orchestra.run.trial079:> sudo rpm -qi grub2-tools 2026-02-18T04:48:18.455 INFO:teuthology.orchestra.run.trial079.stdout:Name : grub2-tools 2026-02-18T04:48:18.455 INFO:teuthology.orchestra.run.trial079.stdout:Epoch : 1 2026-02-18T04:48:18.455 INFO:teuthology.orchestra.run.trial079.stdout:Version : 2.06 2026-02-18T04:48:18.455 INFO:teuthology.orchestra.run.trial079.stdout:Release : 118.el9 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Architecture: x86_64 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Install Date: Thu 04 Dec 2025 11:54:21 PM UTC 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Group : Unspecified 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Size : 8393909 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:License : GPLv3+ 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Signature : RSA/SHA256, Wed 05 Nov 2025 09:13:15 AM UTC, Key ID 05b555b38483c65d 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Source RPM : grub2-2.06-118.el9.src.rpm 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Build Date : Tue 04 Nov 2025 03:44:14 PM UTC 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2026-02-18T04:48:18.456 INFO:teuthology.orchestra.run.trial079.stdout:Packager : builder@centos.org 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:Vendor : CentOS 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:URL : http://www.gnu.org/software/grub/ 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:Summary : Support tools for GRUB. 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:Description : 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:customizable bootloader with modular architecture. It supports a rich 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:variety of kernel formats, file systems, computer architectures and 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:hardware devices. 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:48:18.457 INFO:teuthology.orchestra.run.trial079.stdout:This subpackage provides tools for support of all platforms. 2026-02-18T04:48:18.459 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2026-02-18T04:48:18.459 INFO:teuthology.task.kernel:Updating grub on trial079 to boot 5.14.0-681.el9.x86_64 2026-02-18T04:48:18.459 DEBUG:teuthology.orchestra.run.trial079:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f -print -quit 2026-02-18T04:48:18.524 INFO:teuthology.orchestra.run.trial079.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:48:18.525 DEBUG:teuthology.orchestra.run.trial079:> sudo command -v grubby && echo yes || echo no 2026-02-18T04:48:18.588 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/grubby 2026-02-18T04:48:18.589 INFO:teuthology.orchestra.run.trial079.stdout:yes 2026-02-18T04:48:18.590 DEBUG:teuthology.orchestra.run.trial079:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f | grep -F "5.14.0-681.el9.x86_64" | head -n 1 2026-02-18T04:48:18.654 INFO:teuthology.orchestra.run.trial079.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:48:18.655 DEBUG:teuthology.orchestra.run.trial079:> sudo grub2-set-default b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64 2026-02-18T04:48:18.728 DEBUG:teuthology.orchestra.run.trial079:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2026-02-18T04:48:18.936 INFO:teuthology.orchestra.run.trial079.stderr:Generating grub configuration file ... 2026-02-18T04:48:18.999 INFO:teuthology.orchestra.run.trial079.stderr:Found linux image: /boot/vmlinuz-5.14.0-681.el9.x86_64 2026-02-18T04:48:19.005 INFO:teuthology.orchestra.run.trial079.stderr:Found initrd image: /boot/initramfs-5.14.0-681.el9.x86_64.img 2026-02-18T04:48:19.256 INFO:teuthology.orchestra.run.trial079.stderr:Found linux image: /boot/vmlinuz-5.14.0-645.el9.x86_64 2026-02-18T04:48:19.262 INFO:teuthology.orchestra.run.trial079.stderr:Found initrd image: /boot/initramfs-5.14.0-645.el9.x86_64.img 2026-02-18T04:48:19.293 INFO:teuthology.orchestra.run.trial079.stderr:Found linux image: /boot/vmlinuz-0-rescue-b0373be789df49cdafedf423703d2566 2026-02-18T04:48:19.300 INFO:teuthology.orchestra.run.trial079.stderr:Found initrd image: /boot/initramfs-0-rescue-b0373be789df49cdafedf423703d2566.img 2026-02-18T04:48:19.323 INFO:teuthology.orchestra.run.trial079.stderr:Found linux image: /boot/vmlinuz-0-rescue-2734456005d743dca7f3dc77c35a2d0d 2026-02-18T04:48:19.329 INFO:teuthology.orchestra.run.trial079.stderr:Found initrd image: /boot/initramfs-0-rescue-2734456005d743dca7f3dc77c35a2d0d.img 2026-02-18T04:48:19.411 INFO:teuthology.orchestra.run.trial079.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2026-02-18T04:48:19.419 INFO:teuthology.orchestra.run.trial079.stderr:done 2026-02-18T04:48:19.421 DEBUG:teuthology.orchestra.run.trial079:> test -d /sys/firmware/efi 2026-02-18T04:48:19.436 DEBUG:teuthology.orchestra.run.trial079:> sudo find /boot/efi/EFI -mindepth 1 -maxdepth 1 -type d || true 2026-02-18T04:48:19.502 INFO:teuthology.orchestra.run.trial079.stdout:/boot/efi/EFI/BOOT 2026-02-18T04:48:19.502 INFO:teuthology.orchestra.run.trial079.stdout:/boot/efi/EFI/centos 2026-02-18T04:48:19.503 DEBUG:teuthology.orchestra.run.trial079:> sudo test -f /boot/efi/EFI/BOOT/grub.cfg && echo yes || echo no 2026-02-18T04:48:19.570 INFO:teuthology.orchestra.run.trial079.stdout:no 2026-02-18T04:48:19.570 DEBUG:teuthology.orchestra.run.trial079:> sudo test -f /boot/efi/EFI/centos/grub.cfg && echo yes || echo no 2026-02-18T04:48:19.637 INFO:teuthology.orchestra.run.trial079.stdout:yes 2026-02-18T04:48:19.637 DEBUG:teuthology.orchestra.run.trial079:> sudo cp -f /boot/grub2/grub.cfg /boot/efi/EFI/centos/grub.cfg 2026-02-18T04:48:19.703 INFO:teuthology.orchestra.remote:Triggering safe hard reboot via SysRq on trial079 2026-02-18T04:48:19.703 DEBUG:teuthology.orchestra.run.trial079:> sudo bash -c ' 2026-02-18T04:48:19.703 DEBUG:teuthology.orchestra.run.trial079:> echo pci > /sys/kernel/reboot/type && echo 1 > /sys/kernel/reboot/force && sync && echo s > /proc/sysrq-trigger && echo u > /proc/sysrq-trigger && sleep 2 && echo b > /proc/sysrq-trigger 2026-02-18T04:48:19.703 DEBUG:teuthology.orchestra.run.trial079:> ' 2026-02-18T04:48:36.078 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2026-02-18T04:48:36.079 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-18T04:48:36.080 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial197.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:48:45.162 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2026-02-18T04:48:45.162 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial191.front.sepia.ceph.com' 2026-02-18T04:48:45.163 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:48:49.745 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2026-02-18T04:48:49.746 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial079.front.sepia.ceph.com' 2026-02-18T04:48:49.747 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial079.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:49:36.129 DEBUG:teuthology.orchestra.remote:timed out 2026-02-18T04:49:45.137 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-18T04:49:45.138 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial197.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:49:45.167 DEBUG:teuthology.orchestra.remote:timed out 2026-02-18T04:49:45.275 DEBUG:teuthology.orchestra.run.trial197:> true 2026-02-18T04:49:45.427 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-18T04:49:45.428 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-681.el9.x86_64"... 2026-02-18T04:49:45.428 DEBUG:teuthology.orchestra.run.trial197:> uname -r 2026-02-18T04:49:45.485 INFO:teuthology.orchestra.run.trial197.stdout:5.14.0-681.el9.x86_64 2026-02-18T04:49:45.486 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-681.el9.x86_64 vs 5.14.0-681.el9.x86_64 2026-02-18T04:49:45.486 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2026-02-18T04:49:45.486 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2026-02-18T04:49:46.486 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2026-02-18T04:49:46.487 DEBUG:teuthology.orchestra.run.trial197:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-18T04:49:46.516 INFO:teuthology.orchestra.run.trial197.stdout:ttyS1 2026-02-18T04:49:46.539 DEBUG:teuthology.parallel:result is None 2026-02-18T04:49:49.749 DEBUG:teuthology.orchestra.remote:timed out 2026-02-18T04:49:54.168 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial191.front.sepia.ceph.com' 2026-02-18T04:49:54.169 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:49:54.303 DEBUG:teuthology.orchestra.run.trial191:> true 2026-02-18T04:49:54.456 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial191.front.sepia.ceph.com' 2026-02-18T04:49:54.457 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-681.el9.x86_64"... 2026-02-18T04:49:54.457 DEBUG:teuthology.orchestra.run.trial191:> uname -r 2026-02-18T04:49:54.512 INFO:teuthology.orchestra.run.trial191.stdout:5.14.0-681.el9.x86_64 2026-02-18T04:49:54.513 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-681.el9.x86_64 vs 5.14.0-681.el9.x86_64 2026-02-18T04:49:54.513 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2026-02-18T04:49:54.513 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2026-02-18T04:49:55.514 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-18T04:49:55.514 DEBUG:teuthology.orchestra.run.trial191:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-18T04:49:55.543 INFO:teuthology.orchestra.run.trial191.stdout:ttyS1 2026-02-18T04:49:55.561 DEBUG:teuthology.parallel:result is None 2026-02-18T04:49:58.750 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial079.front.sepia.ceph.com' 2026-02-18T04:49:58.751 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial079.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:49:58.882 DEBUG:teuthology.orchestra.run.trial079:> true 2026-02-18T04:49:59.028 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial079.front.sepia.ceph.com' 2026-02-18T04:49:59.028 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-681.el9.x86_64"... 2026-02-18T04:49:59.029 DEBUG:teuthology.orchestra.run.trial079:> uname -r 2026-02-18T04:49:59.086 INFO:teuthology.orchestra.run.trial079.stdout:5.14.0-681.el9.x86_64 2026-02-18T04:49:59.086 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-681.el9.x86_64 vs 5.14.0-681.el9.x86_64 2026-02-18T04:49:59.087 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2026-02-18T04:49:59.087 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2026-02-18T04:50:00.088 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-18T04:50:00.088 DEBUG:teuthology.orchestra.run.trial079:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-18T04:50:00.118 INFO:teuthology.orchestra.run.trial079.stdout:ttyS1 2026-02-18T04:50:00.142 DEBUG:teuthology.parallel:result is None 2026-02-18T04:50:00.142 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-18T04:50:00.159 INFO:teuthology.task.internal:Creating test directory... 2026-02-18T04:50:00.160 DEBUG:teuthology.orchestra.run.trial079:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-18T04:50:00.185 DEBUG:teuthology.orchestra.run.trial191:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-18T04:50:00.188 DEBUG:teuthology.orchestra.run.trial197:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-18T04:50:00.212 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-18T04:50:00.225 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-18T04:50:00.241 INFO:teuthology.task.internal:Creating archive directory... 2026-02-18T04:50:00.241 DEBUG:teuthology.orchestra.run.trial079:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-18T04:50:00.244 DEBUG:teuthology.orchestra.run.trial191:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-18T04:50:00.247 DEBUG:teuthology.orchestra.run.trial197:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-18T04:50:00.277 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-18T04:50:00.288 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-18T04:50:00.288 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:50:00.301 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:50:00.304 DEBUG:teuthology.orchestra.run.trial197:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-18T04:50:00.324 INFO:teuthology.orchestra.run.trial079.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T04:50:00.327 INFO:teuthology.orchestra.run.trial191.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T04:50:00.333 INFO:teuthology.orchestra.run.trial079.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T04:50:00.333 INFO:teuthology.orchestra.run.trial197.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T04:50:00.345 INFO:teuthology.orchestra.run.trial191.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T04:50:00.347 INFO:teuthology.orchestra.run.trial197.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T04:50:00.349 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-18T04:50:00.360 INFO:teuthology.task.internal:Configuring sudo... 2026-02-18T04:50:00.361 DEBUG:teuthology.orchestra.run.trial079:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-18T04:50:00.377 DEBUG:teuthology.orchestra.run.trial191:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-18T04:50:00.390 DEBUG:teuthology.orchestra.run.trial197:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-18T04:50:00.414 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-18T04:50:00.432 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-18T04:50:00.432 DEBUG:teuthology.orchestra.run.trial079:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-18T04:50:00.444 DEBUG:teuthology.orchestra.run.trial191:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-18T04:50:00.456 DEBUG:teuthology.orchestra.run.trial197:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-18T04:50:00.472 DEBUG:teuthology.orchestra.run.trial079:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:50:00.624 DEBUG:teuthology.orchestra.run.trial079:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:50:00.649 DEBUG:teuthology.orchestra.run.trial079:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:50:00.800 DEBUG:teuthology.orchestra.run.trial079:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:50:00.825 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:50:00.825 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-18T04:50:00.888 DEBUG:teuthology.orchestra.run.trial191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:50:00.977 DEBUG:teuthology.orchestra.run.trial191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:50:01.002 DEBUG:teuthology.orchestra.run.trial191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:50:01.137 DEBUG:teuthology.orchestra.run.trial191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:50:01.162 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:50:01.162 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-18T04:50:01.225 DEBUG:teuthology.orchestra.run.trial197:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:50:01.341 DEBUG:teuthology.orchestra.run.trial197:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:50:01.367 DEBUG:teuthology.orchestra.run.trial197:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:50:01.524 DEBUG:teuthology.orchestra.run.trial197:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:50:01.549 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:50:01.549 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-18T04:50:01.612 DEBUG:teuthology.orchestra.run.trial079:> sudo service rsyslog restart 2026-02-18T04:50:01.614 DEBUG:teuthology.orchestra.run.trial191:> sudo service rsyslog restart 2026-02-18T04:50:01.616 DEBUG:teuthology.orchestra.run.trial197:> sudo service rsyslog restart 2026-02-18T04:50:01.641 INFO:teuthology.orchestra.run.trial079.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T04:50:01.642 INFO:teuthology.orchestra.run.trial191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T04:50:01.681 INFO:teuthology.orchestra.run.trial197.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T04:50:02.111 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-18T04:50:02.124 INFO:teuthology.task.internal:Starting timer... 2026-02-18T04:50:02.124 INFO:teuthology.run_tasks:Running task pcp... 2026-02-18T04:50:02.147 INFO:teuthology.run_tasks:Running task selinux... 2026-02-18T04:50:02.164 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-18T04:50:02.165 DEBUG:teuthology.orchestra.run.trial079:> sudo service auditd rotate 2026-02-18T04:50:02.193 INFO:teuthology.orchestra.run.trial079.stdout:Rotating logs: 2026-02-18T04:50:02.195 DEBUG:teuthology.orchestra.run.trial191:> sudo service auditd rotate 2026-02-18T04:50:02.225 INFO:teuthology.orchestra.run.trial191.stdout:Rotating logs: 2026-02-18T04:50:02.227 DEBUG:teuthology.orchestra.run.trial197:> sudo service auditd rotate 2026-02-18T04:50:02.257 INFO:teuthology.orchestra.run.trial197.stdout:Rotating logs: 2026-02-18T04:50:02.259 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-18T04:50:02.259 DEBUG:teuthology.orchestra.run.trial079:> /usr/sbin/getenforce 2026-02-18T04:50:02.276 INFO:teuthology.orchestra.run.trial079.stdout:Permissive 2026-02-18T04:50:02.277 DEBUG:teuthology.orchestra.run.trial191:> /usr/sbin/getenforce 2026-02-18T04:50:02.293 INFO:teuthology.orchestra.run.trial191.stdout:Permissive 2026-02-18T04:50:02.293 DEBUG:teuthology.orchestra.run.trial197:> /usr/sbin/getenforce 2026-02-18T04:50:02.314 INFO:teuthology.orchestra.run.trial197.stdout:Permissive 2026-02-18T04:50:02.315 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial079.front.sepia.ceph.com': 'permissive', 'ubuntu@trial191.front.sepia.ceph.com': 'permissive', 'ubuntu@trial197.front.sepia.ceph.com': 'permissive'} 2026-02-18T04:50:02.315 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:50:02.341 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:50:02.342 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:50:02.367 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:50:02.368 DEBUG:teuthology.orchestra.run.trial197:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-18T04:50:02.392 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:50:02.392 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-18T04:50:02.393 DEBUG:teuthology.orchestra.run.trial079:> sudo /usr/sbin/setenforce permissive 2026-02-18T04:50:02.416 DEBUG:teuthology.orchestra.run.trial191:> sudo /usr/sbin/setenforce permissive 2026-02-18T04:50:02.442 DEBUG:teuthology.orchestra.run.trial197:> sudo /usr/sbin/setenforce permissive 2026-02-18T04:50:02.465 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-18T04:50:02.481 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-18T04:50:02.492 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-18T04:50:02.494 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial079.front.sepia.ceph.com,trial191.front.sepia.ceph.com,trial197.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-18T04:51:13.832 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial079.front.sepia.ceph.com'), Remote(name='ubuntu@trial191.front.sepia.ceph.com'), Remote(name='ubuntu@trial197.front.sepia.ceph.com')] 2026-02-18T04:51:13.833 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial079.front.sepia.ceph.com' 2026-02-18T04:51:13.835 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial079.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:51:13.940 DEBUG:teuthology.orchestra.run.trial079:> true 2026-02-18T04:51:14.018 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial079.front.sepia.ceph.com' 2026-02-18T04:51:14.018 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial191.front.sepia.ceph.com' 2026-02-18T04:51:14.019 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:51:14.112 DEBUG:teuthology.orchestra.run.trial191:> true 2026-02-18T04:51:14.188 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial191.front.sepia.ceph.com' 2026-02-18T04:51:14.189 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-18T04:51:14.189 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial197.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:51:14.283 DEBUG:teuthology.orchestra.run.trial197:> true 2026-02-18T04:51:14.362 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-18T04:51:14.362 INFO:teuthology.run_tasks:Running task clock... 2026-02-18T04:51:14.375 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-18T04:51:14.375 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-18T04:51:14.375 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:51:14.378 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-18T04:51:14.378 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:51:14.380 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-18T04:51:14.380 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-18T04:51:14.404 INFO:teuthology.orchestra.run.trial079.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-18T04:51:14.405 INFO:teuthology.orchestra.run.trial191.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-18T04:51:14.416 INFO:teuthology.orchestra.run.trial079.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-18T04:51:14.417 INFO:teuthology.orchestra.run.trial191.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-18T04:51:14.428 INFO:teuthology.orchestra.run.trial197.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-18T04:51:14.436 INFO:teuthology.orchestra.run.trial079.stderr:sudo: ntpd: command not found 2026-02-18T04:51:14.436 INFO:teuthology.orchestra.run.trial191.stderr:sudo: ntpd: command not found 2026-02-18T04:51:14.440 INFO:teuthology.orchestra.run.trial197.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-18T04:51:14.445 INFO:teuthology.orchestra.run.trial079.stdout:506 Cannot talk to daemon 2026-02-18T04:51:14.446 INFO:teuthology.orchestra.run.trial191.stdout:506 Cannot talk to daemon 2026-02-18T04:51:14.456 INFO:teuthology.orchestra.run.trial079.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-18T04:51:14.457 INFO:teuthology.orchestra.run.trial191.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-18T04:51:14.460 INFO:teuthology.orchestra.run.trial197.stderr:sudo: ntpd: command not found 2026-02-18T04:51:14.468 INFO:teuthology.orchestra.run.trial079.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-18T04:51:14.469 INFO:teuthology.orchestra.run.trial191.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-18T04:51:14.469 INFO:teuthology.orchestra.run.trial197.stdout:506 Cannot talk to daemon 2026-02-18T04:51:14.481 INFO:teuthology.orchestra.run.trial197.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-18T04:51:14.492 INFO:teuthology.orchestra.run.trial197.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-18T04:51:14.514 INFO:teuthology.orchestra.run.trial079.stderr:bash: line 1: ntpq: command not found 2026-02-18T04:51:14.516 INFO:teuthology.orchestra.run.trial079.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T04:51:14.516 INFO:teuthology.orchestra.run.trial079.stdout:=============================================================================== 2026-02-18T04:51:14.520 INFO:teuthology.orchestra.run.trial191.stderr:bash: line 1: ntpq: command not found 2026-02-18T04:51:14.539 INFO:teuthology.orchestra.run.trial191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T04:51:14.539 INFO:teuthology.orchestra.run.trial191.stdout:=============================================================================== 2026-02-18T04:51:14.540 INFO:teuthology.orchestra.run.trial191.stdout:^? ntp3.radio-sunshine.org 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.540 INFO:teuthology.orchestra.run.trial191.stdout:^? 172-233-155-39.ip.linode> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.540 INFO:teuthology.orchestra.run.trial191.stdout:^? chi3.us.ntp.li 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.540 INFO:teuthology.orchestra.run.trial191.stdout:^? B1-66ER.matrix.gs 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.547 INFO:teuthology.orchestra.run.trial197.stderr:bash: line 1: ntpq: command not found 2026-02-18T04:51:14.553 INFO:teuthology.orchestra.run.trial197.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T04:51:14.554 INFO:teuthology.orchestra.run.trial197.stdout:=============================================================================== 2026-02-18T04:51:14.554 INFO:teuthology.orchestra.run.trial197.stdout:^? 108.61.215.221.vultruser> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.554 INFO:teuthology.orchestra.run.trial197.stdout:^? 172-233-155-39.ip.linode> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.554 INFO:teuthology.orchestra.run.trial197.stdout:^? chi3.us.ntp.li 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.554 INFO:teuthology.orchestra.run.trial197.stdout:^? B1-66ER.matrix.gs 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T04:51:14.555 INFO:teuthology.run_tasks:Running task pexec... 2026-02-18T04:51:14.572 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-18T04:51:14.573 DEBUG:teuthology.orchestra.run.trial079:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-18T04:51:14.574 DEBUG:teuthology.orchestra.run.trial191:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-18T04:51:14.574 DEBUG:teuthology.orchestra.run.trial197:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-18T04:51:14.577 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial079.front.sepia.ceph.com 2026-02-18T04:51:14.577 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-18T04:51:14.577 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-18T04:51:14.583 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial191.front.sepia.ceph.com 2026-02-18T04:51:14.584 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-18T04:51:14.584 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-18T04:51:14.597 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial197.front.sepia.ceph.com 2026-02-18T04:51:14.597 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-18T04:51:14.597 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-18T04:51:14.748 INFO:teuthology.orchestra.run.trial079.stdout:No match for argument: nvme-cli 2026-02-18T04:51:14.748 INFO:teuthology.orchestra.run.trial079.stderr:No packages marked for removal. 2026-02-18T04:51:14.750 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:51:14.751 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:51:14.751 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:51:14.755 INFO:teuthology.orchestra.run.trial191.stdout:No match for argument: nvme-cli 2026-02-18T04:51:14.756 INFO:teuthology.orchestra.run.trial191.stderr:No packages marked for removal. 2026-02-18T04:51:14.758 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:51:14.759 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:51:14.759 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:51:14.768 INFO:teuthology.orchestra.run.trial197.stdout:No match for argument: nvme-cli 2026-02-18T04:51:14.768 INFO:teuthology.orchestra.run.trial197.stderr:No packages marked for removal. 2026-02-18T04:51:14.771 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:51:14.771 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:51:14.771 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:51:15.055 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:31 ago on Wed 18 Feb 2026 04:50:43 AM UTC. 2026-02-18T04:51:15.062 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:30 ago on Wed 18 Feb 2026 04:50:44 AM UTC. 2026-02-18T04:51:15.080 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:30 ago on Wed 18 Feb 2026 04:50:44 AM UTC. 2026-02-18T04:51:15.136 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout: Package Architecture Version Repository Size 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout:Upgrading: 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout: libnvme x86_64 1.16.1-2.el9 baseos 116 k 2026-02-18T04:51:15.137 INFO:teuthology.orchestra.run.trial079.stdout:Installing dependencies: 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout:Install 6 Packages 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout:Upgrade 1 Package 2026-02-18T04:51:15.138 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:15.139 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 2.4 M 2026-02-18T04:51:15.139 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:51:15.143 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:51:15.143 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: Package Architecture Version Repository Size 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout:Upgrading: 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: libnvme x86_64 1.16.1-2.el9 baseos 116 k 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout:Installing dependencies: 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-18T04:51:15.144 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout:Install 6 Packages 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout:Upgrade 1 Package 2026-02-18T04:51:15.145 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:15.146 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 2.4 M 2026-02-18T04:51:15.146 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:51:15.162 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout:Upgrading: 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout: libnvme x86_64 1.16.1-2.el9 baseos 116 k 2026-02-18T04:51:15.163 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout:Install 6 Packages 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout:Upgrade 1 Package 2026-02-18T04:51:15.164 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:15.165 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 2.4 M 2026-02-18T04:51:15.165 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:51:15.251 INFO:teuthology.orchestra.run.trial079.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 932 kB/s | 44 kB 00:00 2026-02-18T04:51:15.257 INFO:teuthology.orchestra.run.trial079.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 1.3 MB/s | 72 kB 00:00 2026-02-18T04:51:15.274 INFO:teuthology.orchestra.run.trial079.stdout:(3/7): nvme-cli-2.16-1.el9.x86_64.rpm 16 MB/s | 1.2 MB 00:00 2026-02-18T04:51:15.278 INFO:teuthology.orchestra.run.trial079.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 3.1 MB/s | 84 kB 00:00 2026-02-18T04:51:15.282 INFO:teuthology.orchestra.run.trial079.stdout:(5/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 5.8 MB/s | 150 kB 00:00 2026-02-18T04:51:15.301 INFO:teuthology.orchestra.run.trial079.stdout:(6/7): libnvme-1.16.1-2.el9.x86_64.rpm 4.8 MB/s | 116 kB 00:00 2026-02-18T04:51:15.304 INFO:teuthology.orchestra.run.trial079.stdout:(7/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 27 MB/s | 837 kB 00:00 2026-02-18T04:51:15.306 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:15.307 INFO:teuthology.orchestra.run.trial079.stdout:Total 14 MB/s | 2.4 MB 00:00 2026-02-18T04:51:15.367 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:51:15.376 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:51:15.376 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:51:15.439 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:51:15.439 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:51:15.448 INFO:teuthology.orchestra.run.trial191.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 183 kB/s | 44 kB 00:00 2026-02-18T04:51:15.450 INFO:teuthology.orchestra.run.trial191.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 297 kB/s | 72 kB 00:00 2026-02-18T04:51:15.508 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:51:15.545 INFO:teuthology.orchestra.run.trial197.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 138 kB/s | 44 kB 00:00 2026-02-18T04:51:15.576 INFO:teuthology.orchestra.run.trial079.stdout: Upgrading : libnvme-1.16.1-2.el9.x86_64 1/8 2026-02-18T04:51:15.583 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/8 2026-02-18T04:51:15.592 INFO:teuthology.orchestra.run.trial197.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 197 kB/s | 72 kB 00:00 2026-02-18T04:51:15.592 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 3/8 2026-02-18T04:51:15.599 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 4/8 2026-02-18T04:51:15.605 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 5/8 2026-02-18T04:51:15.605 INFO:teuthology.orchestra.run.trial079.stdout: Installing : nvmetcli-0.8-3.el9.noarch 6/8 2026-02-18T04:51:15.678 INFO:teuthology.orchestra.run.trial191.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 367 kB/s | 84 kB 00:00 2026-02-18T04:51:15.720 INFO:teuthology.orchestra.run.trial191.stdout:(4/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 559 kB/s | 150 kB 00:00 2026-02-18T04:51:15.723 INFO:teuthology.orchestra.run.trial197.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 474 kB/s | 84 kB 00:00 2026-02-18T04:51:15.736 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 6/8 2026-02-18T04:51:15.739 INFO:teuthology.orchestra.run.trial079.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/8 2026-02-18T04:51:15.802 INFO:teuthology.orchestra.run.trial197.stdout:(4/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 716 kB/s | 150 kB 00:00 2026-02-18T04:51:15.911 INFO:teuthology.orchestra.run.trial197.stdout:(5/7): nvme-cli-2.16-1.el9.x86_64.rpm 1.7 MB/s | 1.2 MB 00:00 2026-02-18T04:51:15.916 INFO:teuthology.orchestra.run.trial197.stdout:(6/7): libnvme-1.16.1-2.el9.x86_64.rpm 1.0 MB/s | 116 kB 00:00 2026-02-18T04:51:15.951 INFO:teuthology.orchestra.run.trial191.stdout:(5/7): libnvme-1.16.1-2.el9.x86_64.rpm 502 kB/s | 116 kB 00:00 2026-02-18T04:51:16.017 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/8 2026-02-18T04:51:16.017 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-18T04:51:16.017 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:16.040 INFO:teuthology.orchestra.run.trial079.stdout: Cleanup : libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:16.053 INFO:teuthology.orchestra.run.trial197.stdout:(7/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 2.5 MB/s | 837 kB 00:00 2026-02-18T04:51:16.053 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:16.053 INFO:teuthology.orchestra.run.trial197.stdout:Total 2.7 MB/s | 2.4 MB 00:00 2026-02-18T04:51:16.114 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:51:16.121 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:51:16.122 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:51:16.183 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:51:16.183 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:51:16.252 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:51:16.254 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/8 2026-02-18T04:51:16.255 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libnvme-1.16.1-2.el9.x86_64 7/8 2026-02-18T04:51:16.259 INFO:teuthology.orchestra.run.trial191.stdout:(6/7): nvme-cli-2.16-1.el9.x86_64.rpm 1.1 MB/s | 1.2 MB 00:01 2026-02-18T04:51:16.308 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:16.308 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:16.308 INFO:teuthology.orchestra.run.trial079.stdout:Upgraded: 2026-02-18T04:51:16.308 INFO:teuthology.orchestra.run.trial079.stdout: libnvme-1.16.1-2.el9.x86_64 2026-02-18T04:51:16.308 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:51:16.308 INFO:teuthology.orchestra.run.trial079.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-18T04:51:16.309 INFO:teuthology.orchestra.run.trial079.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-18T04:51:16.309 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-18T04:51:16.309 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:16.309 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:51:16.320 INFO:teuthology.orchestra.run.trial197.stdout: Upgrading : libnvme-1.16.1-2.el9.x86_64 1/8 2026-02-18T04:51:16.327 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/8 2026-02-18T04:51:16.335 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 3/8 2026-02-18T04:51:16.340 DEBUG:teuthology.parallel:result is None 2026-02-18T04:51:16.341 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 4/8 2026-02-18T04:51:16.347 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 5/8 2026-02-18T04:51:16.348 INFO:teuthology.orchestra.run.trial197.stdout: Installing : nvmetcli-0.8-3.el9.noarch 6/8 2026-02-18T04:51:16.429 INFO:teuthology.orchestra.run.trial191.stdout:(7/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 1.1 MB/s | 837 kB 00:00 2026-02-18T04:51:16.429 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:16.430 INFO:teuthology.orchestra.run.trial191.stdout:Total 1.9 MB/s | 2.4 MB 00:01 2026-02-18T04:51:16.475 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 6/8 2026-02-18T04:51:16.478 INFO:teuthology.orchestra.run.trial197.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/8 2026-02-18T04:51:16.494 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:51:16.502 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:51:16.502 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:51:16.564 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:51:16.564 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:51:16.632 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:51:16.700 INFO:teuthology.orchestra.run.trial191.stdout: Upgrading : libnvme-1.16.1-2.el9.x86_64 1/8 2026-02-18T04:51:16.707 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/8 2026-02-18T04:51:16.716 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 3/8 2026-02-18T04:51:16.721 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 4/8 2026-02-18T04:51:16.727 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 5/8 2026-02-18T04:51:16.728 INFO:teuthology.orchestra.run.trial191.stdout: Installing : nvmetcli-0.8-3.el9.noarch 6/8 2026-02-18T04:51:16.748 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/8 2026-02-18T04:51:16.748 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-18T04:51:16.748 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:16.771 INFO:teuthology.orchestra.run.trial197.stdout: Cleanup : libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:16.857 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 6/8 2026-02-18T04:51:16.860 INFO:teuthology.orchestra.run.trial191.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/8 2026-02-18T04:51:16.998 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:16.998 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/8 2026-02-18T04:51:16.998 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/8 2026-02-18T04:51:16.998 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/8 2026-02-18T04:51:16.998 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/8 2026-02-18T04:51:16.999 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/8 2026-02-18T04:51:16.999 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/8 2026-02-18T04:51:16.999 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libnvme-1.16.1-2.el9.x86_64 7/8 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout:Upgraded: 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout: libnvme-1.16.1-2.el9.x86_64 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-18T04:51:17.052 INFO:teuthology.orchestra.run.trial197.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-18T04:51:17.053 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-18T04:51:17.053 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:17.053 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:51:17.082 DEBUG:teuthology.parallel:result is None 2026-02-18T04:51:17.126 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/8 2026-02-18T04:51:17.126 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-18T04:51:17.126 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:17.150 INFO:teuthology.orchestra.run.trial191.stdout: Cleanup : libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:17.363 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:17.363 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/8 2026-02-18T04:51:17.363 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/8 2026-02-18T04:51:17.363 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/8 2026-02-18T04:51:17.364 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/8 2026-02-18T04:51:17.364 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/8 2026-02-18T04:51:17.364 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/8 2026-02-18T04:51:17.364 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libnvme-1.16.1-2.el9.x86_64 7/8 2026-02-18T04:51:17.416 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libnvme-1.13-1.el9.x86_64 8/8 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout:Upgraded: 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout: libnvme-1.16.1-2.el9.x86_64 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:17.417 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:51:17.450 DEBUG:teuthology.parallel:result is None 2026-02-18T04:51:17.450 INFO:teuthology.run_tasks:Running task install... 2026-02-18T04:51:17.465 DEBUG:teuthology.task.install:project ceph 2026-02-18T04:51:17.465 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'adc1923395f2bcd6ae89b5d331d278364d1848ed'}} 2026-02-18T04:51:17.465 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'adc1923395f2bcd6ae89b5d331d278364d1848ed'} 2026-02-18T04:51:17.465 INFO:teuthology.task.install:Using flavor: default 2026-02-18T04:51:17.474 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2026-02-18T04:51:17.474 INFO:teuthology.task.install:extra packages: [] 2026-02-18T04:51:17.475 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': 'adc1923395f2bcd6ae89b5d331d278364d1848ed', 'tag': None, 'wait_for_package': False} 2026-02-18T04:51:17.475 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:51:17.478 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': 'adc1923395f2bcd6ae89b5d331d278364d1848ed', 'tag': None, 'wait_for_package': False} 2026-02-18T04:51:17.478 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:51:17.480 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': 'adc1923395f2bcd6ae89b5d331d278364d1848ed', 'tag': None, 'wait_for_package': False} 2026-02-18T04:51:17.480 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:51:17.719 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/ 2026-02-18T04:51:17.719 INFO:teuthology.task.install.rpm:Package version is 20.2.0-670.gadc19233 2026-02-18T04:51:17.728 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/ 2026-02-18T04:51:17.728 INFO:teuthology.task.install.rpm:Package version is 20.2.0-670.gadc19233 2026-02-18T04:51:17.729 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/ 2026-02-18T04:51:17.729 INFO:teuthology.task.install.rpm:Package version is 20.2.0-670.gadc19233 2026-02-18T04:51:17.915 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/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/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/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/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-18T04:51:17.915 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:51:17.915 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-18T04:51:17.917 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/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/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/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/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-18T04:51:17.917 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:51:17.917 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-18T04:51:17.925 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/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/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/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/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-18T04:51:17.925 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:51:17.925 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-18T04:51:17.945 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-18T04:51:17.945 DEBUG:teuthology.orchestra.run.trial197:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/adc1923395f2bcd6ae89b5d331d278364d1848ed/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-18T04:51:17.946 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-18T04:51:17.946 DEBUG:teuthology.orchestra.run.trial079:> 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/adc1923395f2bcd6ae89b5d331d278364d1848ed/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-18T04:51:17.954 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-18T04:51:17.954 DEBUG:teuthology.orchestra.run.trial191:> 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/adc1923395f2bcd6ae89b5d331d278364d1848ed/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-18T04:51:18.011 DEBUG:teuthology.orchestra.run.trial197:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-18T04:51:18.012 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:51:18.022 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:51:18.084 DEBUG:teuthology.orchestra.run.trial197:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-18T04:51:18.087 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:51:18.095 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:51:18.150 INFO:teuthology.orchestra.run.trial197.stdout:check_obsoletes = 1 2026-02-18T04:51:18.151 INFO:teuthology.orchestra.run.trial079.stdout:check_obsoletes = 1 2026-02-18T04:51:18.152 DEBUG:teuthology.orchestra.run.trial197:> sudo yum clean all 2026-02-18T04:51:18.154 DEBUG:teuthology.orchestra.run.trial079:> sudo yum clean all 2026-02-18T04:51:18.160 INFO:teuthology.orchestra.run.trial191.stdout:check_obsoletes = 1 2026-02-18T04:51:18.162 DEBUG:teuthology.orchestra.run.trial191:> sudo yum clean all 2026-02-18T04:51:18.304 INFO:teuthology.orchestra.run.trial197.stdout:41 files removed 2026-02-18T04:51:18.305 INFO:teuthology.orchestra.run.trial079.stdout:41 files removed 2026-02-18T04:51:18.314 INFO:teuthology.orchestra.run.trial191.stdout:41 files removed 2026-02-18T04:51:18.320 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-radosgw 2026-02-18T04:51:18.322 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-radosgw 2026-02-18T04:51:18.330 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-radosgw 2026-02-18T04:51:18.601 INFO:teuthology.orchestra.run.trial079.stdout:ceph packages for x86_64 663 kB/s | 89 kB 00:00 2026-02-18T04:51:18.601 INFO:teuthology.orchestra.run.trial191.stdout:ceph packages for x86_64 693 kB/s | 89 kB 00:00 2026-02-18T04:51:18.602 INFO:teuthology.orchestra.run.trial197.stdout:ceph packages for x86_64 669 kB/s | 89 kB 00:00 2026-02-18T04:51:18.796 INFO:teuthology.orchestra.run.trial079.stdout:ceph noarch packages 109 kB/s | 19 kB 00:00 2026-02-18T04:51:18.798 INFO:teuthology.orchestra.run.trial197.stdout:ceph noarch packages 109 kB/s | 19 kB 00:00 2026-02-18T04:51:18.799 INFO:teuthology.orchestra.run.trial191.stdout:ceph noarch packages 109 kB/s | 19 kB 00:00 2026-02-18T04:51:19.297 INFO:teuthology.orchestra.run.trial079.stdout:ceph source packages 4.1 kB/s | 1.9 kB 00:00 2026-02-18T04:51:19.298 INFO:teuthology.orchestra.run.trial191.stdout:ceph source packages 4.1 kB/s | 1.9 kB 00:00 2026-02-18T04:51:19.298 INFO:teuthology.orchestra.run.trial197.stdout:ceph source packages 4.1 kB/s | 1.9 kB 00:00 2026-02-18T04:51:19.750 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - BaseOS 20 MB/s | 8.9 MB 00:00 2026-02-18T04:51:20.620 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - BaseOS 6.8 MB/s | 8.9 MB 00:01 2026-02-18T04:51:22.959 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - AppStream 10 MB/s | 27 MB 00:02 2026-02-18T04:51:23.574 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - BaseOS 2.1 MB/s | 8.9 MB 00:04 2026-02-18T04:51:24.353 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - AppStream 8.4 MB/s | 27 MB 00:03 2026-02-18T04:51:25.950 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - AppStream 15 MB/s | 27 MB 00:01 2026-02-18T04:51:26.205 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - CRB 8.7 MB/s | 7.8 MB 00:00 2026-02-18T04:51:27.284 INFO:teuthology.orchestra.run.trial191.stdout:CentOS Stream 9 - Extras packages 58 kB/s | 20 kB 00:00 2026-02-18T04:51:27.639 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - CRB 8.9 MB/s | 7.8 MB 00:00 2026-02-18T04:51:27.828 INFO:teuthology.orchestra.run.trial191.stdout:Extra Packages for Enterprise Linux 43 MB/s | 20 MB 00:00 2026-02-18T04:51:28.676 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - Extras packages 65 kB/s | 20 kB 00:00 2026-02-18T04:51:29.095 INFO:teuthology.orchestra.run.trial197.stdout:Extra Packages for Enterprise Linux 57 MB/s | 20 MB 00:00 2026-02-18T04:51:29.901 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - CRB 4.9 MB/s | 7.8 MB 00:01 2026-02-18T04:51:31.071 INFO:teuthology.orchestra.run.trial191.stdout:lab-extras 1.7 MB/s | 50 kB 00:00 2026-02-18T04:51:31.510 INFO:teuthology.orchestra.run.trial079.stdout:CentOS Stream 9 - Extras packages 23 kB/s | 20 kB 00:00 2026-02-18T04:51:32.025 INFO:teuthology.orchestra.run.trial079.stdout:Extra Packages for Enterprise Linux 45 MB/s | 20 MB 00:00 2026-02-18T04:51:32.294 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:51:32.295 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:32.295 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repository Size 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout: ceph-radosgw x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 M 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout:Upgrading: 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout: librados2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 3.5 M 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout: librbd1 x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.8 M 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout:Installing dependencies: 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout: ceph-base x86_64 2:20.2.0-670.gadc19233.el9 ceph 5.9 M 2026-02-18T04:51:32.296 INFO:teuthology.orchestra.run.trial191.stdout: ceph-common x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 M 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: ceph-selinux x86_64 2:20.2.0-670.gadc19233.el9 ceph 25 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 869 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libradosstriper1 x86_64 2:20.2.0-670.gadc19233.el9 ceph 250 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: librgw2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 6.4 M 2026-02-18T04:51:32.297 INFO:teuthology.orchestra.run.trial191.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: python3-ceph-argparse x86_64 2:20.2.0-670.gadc19233.el9 ceph 45 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: python3-ceph-common x86_64 2:20.2.0-670.gadc19233.el9 ceph 175 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: python3-cephfs x86_64 2:20.2.0-670.gadc19233.el9 ceph 162 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: python3-rados x86_64 2:20.2.0-670.gadc19233.el9 ceph 323 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: python3-rbd x86_64 2:20.2.0-670.gadc19233.el9 ceph 305 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: python3-rgw x86_64 2:20.2.0-670.gadc19233.el9 ceph 99 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-18T04:51:32.298 INFO:teuthology.orchestra.run.trial191.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout:Installing weak dependencies: 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs-daemon x86_64 2:20.2.0-670.gadc19233.el9 ceph 35 k 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs-proxy2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 k 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout:Install 34 Packages 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout:Upgrade 2 Packages 2026-02-18T04:51:32.299 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:32.300 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 78 M 2026-02-18T04:51:32.300 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:51:32.323 INFO:teuthology.orchestra.run.trial197.stdout:lab-extras 2.7 MB/s | 50 kB 00:00 2026-02-18T04:51:33.170 INFO:teuthology.orchestra.run.trial191.stdout:(1/36): ceph-base-20.2.0-670.gadc19233.el9.x86_ 17 MB/s | 5.9 MB 00:00 2026-02-18T04:51:33.205 INFO:teuthology.orchestra.run.trial191.stdout:(2/36): ceph-selinux-20.2.0-670.gadc19233.el9.x 726 kB/s | 25 kB 00:00 2026-02-18T04:51:33.244 INFO:teuthology.orchestra.run.trial191.stdout:(3/36): libcephfs-daemon-20.2.0-670.gadc19233.e 903 kB/s | 35 kB 00:00 2026-02-18T04:51:33.284 INFO:teuthology.orchestra.run.trial191.stdout:(4/36): libcephfs-proxy2-20.2.0-670.gadc19233.e 603 kB/s | 24 kB 00:00 2026-02-18T04:51:33.344 INFO:teuthology.orchestra.run.trial191.stdout:(5/36): libcephfs2-20.2.0-670.gadc19233.el9.x86 14 MB/s | 869 kB 00:00 2026-02-18T04:51:33.392 INFO:teuthology.orchestra.run.trial191.stdout:(6/36): libradosstriper1-20.2.0-670.gadc19233.e 5.0 MB/s | 250 kB 00:00 2026-02-18T04:51:33.533 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:51:33.534 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:33.534 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-18T04:51:33.534 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: ceph-radosgw x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 M 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout:Upgrading: 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: librados2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 3.5 M 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: librbd1 x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.8 M 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: ceph-base x86_64 2:20.2.0-670.gadc19233.el9 ceph 5.9 M 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: ceph-common x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 M 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: ceph-selinux x86_64 2:20.2.0-670.gadc19233.el9 ceph 25 k 2026-02-18T04:51:33.535 INFO:teuthology.orchestra.run.trial197.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 869 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libradosstriper1 x86_64 2:20.2.0-670.gadc19233.el9 ceph 250 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: librgw2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 6.4 M 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-18T04:51:33.536 INFO:teuthology.orchestra.run.trial197.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-argparse x86_64 2:20.2.0-670.gadc19233.el9 ceph 45 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-common x86_64 2:20.2.0-670.gadc19233.el9 ceph 175 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: python3-cephfs x86_64 2:20.2.0-670.gadc19233.el9 ceph 162 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: python3-rados x86_64 2:20.2.0-670.gadc19233.el9 ceph 323 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: python3-rbd x86_64 2:20.2.0-670.gadc19233.el9 ceph 305 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: python3-rgw x86_64 2:20.2.0-670.gadc19233.el9 ceph 99 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-18T04:51:33.537 INFO:teuthology.orchestra.run.trial197.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout:Installing weak dependencies: 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-daemon x86_64 2:20.2.0-670.gadc19233.el9 ceph 35 k 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-proxy2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 k 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout:Install 34 Packages 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout:Upgrade 2 Packages 2026-02-18T04:51:33.538 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:33.539 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 78 M 2026-02-18T04:51:33.539 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:51:33.753 INFO:teuthology.orchestra.run.trial191.stdout:(7/36): librgw2-20.2.0-670.gadc19233.el9.x86_64 18 MB/s | 6.4 MB 00:00 2026-02-18T04:51:33.790 INFO:teuthology.orchestra.run.trial191.stdout:(8/36): python3-ceph-argparse-20.2.0-670.gadc19 1.2 MB/s | 45 kB 00:00 2026-02-18T04:51:33.830 INFO:teuthology.orchestra.run.trial191.stdout:(9/36): python3-ceph-common-20.2.0-670.gadc1923 4.3 MB/s | 175 kB 00:00 2026-02-18T04:51:33.870 INFO:teuthology.orchestra.run.trial191.stdout:(10/36): python3-cephfs-20.2.0-670.gadc19233.el 4.0 MB/s | 162 kB 00:00 2026-02-18T04:51:33.925 INFO:teuthology.orchestra.run.trial191.stdout:(11/36): ceph-common-20.2.0-670.gadc19233.el9.x 22 MB/s | 24 MB 00:01 2026-02-18T04:51:33.927 INFO:teuthology.orchestra.run.trial191.stdout:(12/36): python3-rados-20.2.0-670.gadc19233.el9 5.5 MB/s | 323 kB 00:00 2026-02-18T04:51:33.949 INFO:teuthology.orchestra.run.trial191.stdout:(13/36): python3-rbd-20.2.0-670.gadc19233.el9.x 13 MB/s | 305 kB 00:00 2026-02-18T04:51:33.952 INFO:teuthology.orchestra.run.trial191.stdout:(14/36): python3-rgw-20.2.0-670.gadc19233.el9.x 3.8 MB/s | 99 kB 00:00 2026-02-18T04:51:34.021 INFO:teuthology.orchestra.run.trial191.stdout:(15/36): ceph-radosgw-20.2.0-670.gadc19233.el9. 20 MB/s | 24 MB 00:01 2026-02-18T04:51:34.021 INFO:teuthology.orchestra.run.trial191.stdout:(16/36): mailcap-2.1.49-5.el9.noarch.rpm 457 kB/s | 33 kB 00:00 2026-02-18T04:51:34.062 INFO:teuthology.orchestra.run.trial191.stdout:(17/36): pciutils-3.7.0-7.el9.x86_64.rpm 849 kB/s | 93 kB 00:00 2026-02-18T04:51:34.112 INFO:teuthology.orchestra.run.trial191.stdout:(18/36): boost-program-options-1.75.0-13.el9.x8 1.1 MB/s | 104 kB 00:00 2026-02-18T04:51:34.126 INFO:teuthology.orchestra.run.trial191.stdout:(19/36): libnbd-1.20.3-4.el9.x86_64.rpm 1.5 MB/s | 164 kB 00:00 2026-02-18T04:51:34.131 INFO:teuthology.orchestra.run.trial191.stdout:(20/36): librabbitmq-0.11.0-7.el9.x86_64.rpm 2.3 MB/s | 45 kB 00:00 2026-02-18T04:51:34.155 INFO:teuthology.orchestra.run.trial191.stdout:(21/36): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.7 MB/s | 160 kB 00:00 2026-02-18T04:51:34.198 INFO:teuthology.orchestra.run.trial191.stdout:(22/36): librdkafka-1.6.1-102.el9.x86_64.rpm 8.9 MB/s | 662 kB 00:00 2026-02-18T04:51:34.230 INFO:teuthology.orchestra.run.trial191.stdout:(23/36): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.9 MB/s | 292 kB 00:00 2026-02-18T04:51:34.252 INFO:teuthology.orchestra.run.trial191.stdout:(24/36): qatlib-25.08.0-2.el9.x86_64.rpm 2.4 MB/s | 240 kB 00:00 2026-02-18T04:51:34.302 INFO:teuthology.orchestra.run.trial191.stdout:(25/36): qatzip-libs-1.3.1-1.el9.x86_64.rpm 923 kB/s | 66 kB 00:00 2026-02-18T04:51:34.304 INFO:teuthology.orchestra.run.trial191.stdout:(26/36): qatlib-service-25.08.0-2.el9.x86_64.rp 352 kB/s | 37 kB 00:00 2026-02-18T04:51:34.348 INFO:teuthology.orchestra.run.trial191.stdout:(27/36): gperftools-libs-2.9.1-3.el9.x86_64.rpm 3.1 MB/s | 308 kB 00:00 2026-02-18T04:51:34.367 INFO:teuthology.orchestra.run.trial191.stdout:(28/36): libarrow-doc-9.0.0-15.el9.noarch.rpm 390 kB/s | 25 kB 00:00 2026-02-18T04:51:34.391 INFO:teuthology.orchestra.run.trial191.stdout:(29/36): liboath-2.6.12-1.el9.x86_64.rpm 1.1 MB/s | 49 kB 00:00 2026-02-18T04:51:34.392 INFO:teuthology.orchestra.run.trial191.stdout:(30/36): libunwind-1.6.2-1.el9.x86_64.rpm 2.6 MB/s | 67 kB 00:00 2026-02-18T04:51:34.454 INFO:teuthology.orchestra.run.trial191.stdout:(31/36): libarrow-9.0.0-15.el9.x86_64.rpm 29 MB/s | 4.4 MB 00:00 2026-02-18T04:51:34.456 INFO:teuthology.orchestra.run.trial191.stdout:(32/36): parquet-libs-9.0.0-15.el9.x86_64.rpm 13 MB/s | 838 kB 00:00 2026-02-18T04:51:34.480 INFO:teuthology.orchestra.run.trial191.stdout:(33/36): re2-20211101-20.el9.x86_64.rpm 2.1 MB/s | 191 kB 00:00 2026-02-18T04:51:34.499 INFO:teuthology.orchestra.run.trial197.stdout:(1/36): ceph-base-20.2.0-670.gadc19233.el9.x86_ 13 MB/s | 5.9 MB 00:00 2026-02-18T04:51:34.555 INFO:teuthology.orchestra.run.trial197.stdout:(2/36): ceph-selinux-20.2.0-670.gadc19233.el9.x 451 kB/s | 25 kB 00:00 2026-02-18T04:51:34.625 INFO:teuthology.orchestra.run.trial197.stdout:(3/36): libcephfs-daemon-20.2.0-670.gadc19233.e 508 kB/s | 35 kB 00:00 2026-02-18T04:51:34.650 INFO:teuthology.orchestra.run.trial191.stdout:(34/36): thrift-0.15.0-4.el9.x86_64.rpm 8.1 MB/s | 1.6 MB 00:00 2026-02-18T04:51:34.695 INFO:teuthology.orchestra.run.trial197.stdout:(4/36): libcephfs-proxy2-20.2.0-670.gadc19233.e 341 kB/s | 24 kB 00:00 2026-02-18T04:51:34.880 INFO:teuthology.orchestra.run.trial191.stdout:(35/36): librbd1-20.2.0-670.gadc19233.el9.x86_6 7.1 MB/s | 2.8 MB 00:00 2026-02-18T04:51:34.895 INFO:teuthology.orchestra.run.trial191.stdout:(36/36): librados2-20.2.0-670.gadc19233.el9.x86 8.0 MB/s | 3.5 MB 00:00 2026-02-18T04:51:34.896 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:34.897 INFO:teuthology.orchestra.run.trial191.stdout:Total 30 MB/s | 78 MB 00:02 2026-02-18T04:51:34.991 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:51:35.009 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:51:35.009 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:51:35.199 INFO:teuthology.orchestra.run.trial197.stdout:(5/36): ceph-common-20.2.0-670.gadc19233.el9.x8 21 MB/s | 24 MB 00:01 2026-02-18T04:51:35.244 INFO:teuthology.orchestra.run.trial197.stdout:(6/36): ceph-radosgw-20.2.0-670.gadc19233.el9.x 20 MB/s | 24 MB 00:01 2026-02-18T04:51:35.246 INFO:teuthology.orchestra.run.trial197.stdout:(7/36): libcephfs2-20.2.0-670.gadc19233.el9.x86 1.5 MB/s | 869 kB 00:00 2026-02-18T04:51:35.246 INFO:teuthology.orchestra.run.trial197.stdout:(8/36): libradosstriper1-20.2.0-670.gadc19233.e 5.2 MB/s | 250 kB 00:00 2026-02-18T04:51:35.247 INFO:teuthology.orchestra.run.trial079.stdout:lab-extras 2.8 MB/s | 50 kB 00:00 2026-02-18T04:51:35.264 INFO:teuthology.orchestra.run.trial197.stdout:(9/36): python3-ceph-argparse-20.2.0-670.gadc19 2.4 MB/s | 45 kB 00:00 2026-02-18T04:51:35.267 INFO:teuthology.orchestra.run.trial197.stdout:(10/36): python3-ceph-common-20.2.0-670.gadc192 8.3 MB/s | 175 kB 00:00 2026-02-18T04:51:35.286 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:51:35.286 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:51:35.288 INFO:teuthology.orchestra.run.trial197.stdout:(11/36): python3-cephfs-20.2.0-670.gadc19233.el 6.7 MB/s | 162 kB 00:00 2026-02-18T04:51:35.294 INFO:teuthology.orchestra.run.trial197.stdout:(12/36): python3-rados-20.2.0-670.gadc19233.el9 12 MB/s | 323 kB 00:00 2026-02-18T04:51:35.317 INFO:teuthology.orchestra.run.trial197.stdout:(13/36): python3-rbd-20.2.0-670.gadc19233.el9.x 10 MB/s | 305 kB 00:00 2026-02-18T04:51:35.319 INFO:teuthology.orchestra.run.trial197.stdout:(14/36): python3-rgw-20.2.0-670.gadc19233.el9.x 3.9 MB/s | 99 kB 00:00 2026-02-18T04:51:35.382 INFO:teuthology.orchestra.run.trial197.stdout:(15/36): librgw2-20.2.0-670.gadc19233.el9.x86_6 46 MB/s | 6.4 MB 00:00 2026-02-18T04:51:35.383 INFO:teuthology.orchestra.run.trial197.stdout:(16/36): mailcap-2.1.49-5.el9.noarch.rpm 503 kB/s | 33 kB 00:00 2026-02-18T04:51:35.383 INFO:teuthology.orchestra.run.trial197.stdout:(17/36): pciutils-3.7.0-7.el9.x86_64.rpm 1.4 MB/s | 93 kB 00:00 2026-02-18T04:51:35.446 INFO:teuthology.orchestra.run.trial197.stdout:(18/36): boost-program-options-1.75.0-13.el9.x8 1.6 MB/s | 104 kB 00:00 2026-02-18T04:51:35.467 INFO:teuthology.orchestra.run.trial197.stdout:(19/36): librabbitmq-0.11.0-7.el9.x86_64.rpm 2.1 MB/s | 45 kB 00:00 2026-02-18T04:51:35.494 INFO:teuthology.orchestra.run.trial197.stdout:(20/36): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.4 MB/s | 160 kB 00:00 2026-02-18T04:51:35.500 INFO:teuthology.orchestra.run.trial197.stdout:(21/36): librdkafka-1.6.1-102.el9.x86_64.rpm 20 MB/s | 662 kB 00:00 2026-02-18T04:51:35.519 INFO:teuthology.orchestra.run.trial197.stdout:(22/36): lttng-ust-2.12.0-6.el9.x86_64.rpm 11 MB/s | 292 kB 00:00 2026-02-18T04:51:35.522 INFO:teuthology.orchestra.run.trial197.stdout:(23/36): libnbd-1.20.3-4.el9.x86_64.rpm 1.2 MB/s | 164 kB 00:00 2026-02-18T04:51:35.526 INFO:teuthology.orchestra.run.trial197.stdout:(24/36): qatlib-25.08.0-2.el9.x86_64.rpm 9.3 MB/s | 240 kB 00:00 2026-02-18T04:51:35.540 INFO:teuthology.orchestra.run.trial197.stdout:(25/36): qatlib-service-25.08.0-2.el9.x86_64.rp 1.8 MB/s | 37 kB 00:00 2026-02-18T04:51:35.543 INFO:teuthology.orchestra.run.trial197.stdout:(26/36): qatzip-libs-1.3.1-1.el9.x86_64.rpm 3.1 MB/s | 66 kB 00:00 2026-02-18T04:51:35.613 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:51:35.625 INFO:teuthology.orchestra.run.trial191.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/38 2026-02-18T04:51:35.744 INFO:teuthology.orchestra.run.trial197.stdout:(27/36): libarrow-doc-9.0.0-15.el9.noarch.rpm 123 kB/s | 25 kB 00:00 2026-02-18T04:51:35.777 INFO:teuthology.orchestra.run.trial191.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/38 2026-02-18T04:51:35.781 INFO:teuthology.orchestra.run.trial191.stdout: Upgrading : librados2-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:35.832 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: librados2-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:35.833 INFO:teuthology.orchestra.run.trial197.stdout:(28/36): liboath-2.6.12-1.el9.x86_64.rpm 550 kB/s | 49 kB 00:00 2026-02-18T04:51:35.834 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:35.834 INFO:teuthology.orchestra.run.trial197.stdout:(29/36): gperftools-libs-2.9.1-3.el9.x86_64.rpm 996 kB/s | 308 kB 00:00 2026-02-18T04:51:35.847 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:35.849 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 5/38 2026-02-18T04:51:35.850 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:35.878 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:35.880 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 7/38 2026-02-18T04:51:35.889 INFO:teuthology.orchestra.run.trial191.stdout: Installing : liboath-2.6.12-1.el9.x86_64 8/38 2026-02-18T04:51:35.889 INFO:teuthology.orchestra.run.trial197.stdout:(30/36): libunwind-1.6.2-1.el9.x86_64.rpm 1.2 MB/s | 67 kB 00:00 2026-02-18T04:51:35.891 INFO:teuthology.orchestra.run.trial191.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 9/38 2026-02-18T04:51:35.896 INFO:teuthology.orchestra.run.trial191.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 10/38 2026-02-18T04:51:35.901 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 11/38 2026-02-18T04:51:35.910 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x 12/38 2026-02-18T04:51:35.922 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 13/38 2026-02-18T04:51:35.923 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:35.937 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:35.966 INFO:teuthology.orchestra.run.trial197.stdout:(31/36): parquet-libs-9.0.0-15.el9.x86_64.rpm 6.2 MB/s | 838 kB 00:00 2026-02-18T04:51:35.970 INFO:teuthology.orchestra.run.trial191.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/38 2026-02-18T04:51:35.974 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 16/38 2026-02-18T04:51:35.981 INFO:teuthology.orchestra.run.trial197.stdout:(32/36): re2-20211101-20.el9.x86_64.rpm 2.1 MB/s | 191 kB 00:00 2026-02-18T04:51:35.982 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/38 2026-02-18T04:51:35.984 INFO:teuthology.orchestra.run.trial191.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/38 2026-02-18T04:51:35.988 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 19/38 2026-02-18T04:51:36.021 INFO:teuthology.orchestra.run.trial197.stdout:(33/36): libarrow-9.0.0-15.el9.x86_64.rpm 9.2 MB/s | 4.4 MB 00:00 2026-02-18T04:51:36.059 INFO:teuthology.orchestra.run.trial197.stdout:(34/36): thrift-0.15.0-4.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2026-02-18T04:51:36.096 INFO:teuthology.orchestra.run.trial197.stdout:(35/36): librados2-20.2.0-670.gadc19233.el9.x86 31 MB/s | 3.5 MB 00:00 2026-02-18T04:51:36.111 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 20/38 2026-02-18T04:51:36.112 INFO:teuthology.orchestra.run.trial191.stdout: Upgrading : librbd1-2:20.2.0-670.gadc19233.el9.x86_64 21/38 2026-02-18T04:51:36.116 INFO:teuthology.orchestra.run.trial197.stdout:(36/36): librbd1-20.2.0-670.gadc19233.el9.x86_6 30 MB/s | 2.8 MB 00:00 2026-02-18T04:51:36.122 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:36.122 INFO:teuthology.orchestra.run.trial197.stdout:Total 30 MB/s | 78 MB 00:02 2026-02-18T04:51:36.141 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: librbd1-2:20.2.0-670.gadc19233.el9.x86_64 21/38 2026-02-18T04:51:36.143 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 22/38 2026-02-18T04:51:36.152 INFO:teuthology.orchestra.run.trial191.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 23/38 2026-02-18T04:51:36.213 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:51:36.230 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:51:36.231 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:51:36.430 INFO:teuthology.orchestra.run.trial191.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 24/38 2026-02-18T04:51:36.431 INFO:teuthology.orchestra.run.trial191.stdout: Installing : librgw2-2:20.2.0-670.gadc19233.el9.x86_64 25/38 2026-02-18T04:51:36.447 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: librgw2-2:20.2.0-670.gadc19233.el9.x86_64 25/38 2026-02-18T04:51:36.451 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 26/38 2026-02-18T04:51:36.457 INFO:teuthology.orchestra.run.trial191.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 27/38 2026-02-18T04:51:36.460 INFO:teuthology.orchestra.run.trial191.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 28/38 2026-02-18T04:51:36.461 INFO:teuthology.orchestra.run.trial191.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-18T04:51:36.463 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repository Size 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout: ceph-radosgw x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 M 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout:Upgrading: 2026-02-18T04:51:36.464 INFO:teuthology.orchestra.run.trial079.stdout: librados2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 3.5 M 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: librbd1 x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.8 M 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout:Installing dependencies: 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: ceph-base x86_64 2:20.2.0-670.gadc19233.el9 ceph 5.9 M 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: ceph-common x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 M 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: ceph-selinux x86_64 2:20.2.0-670.gadc19233.el9 ceph 25 k 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 869 k 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-18T04:51:36.465 INFO:teuthology.orchestra.run.trial079.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: libradosstriper1 x86_64 2:20.2.0-670.gadc19233.el9 ceph 250 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: librgw2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 6.4 M 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: python3-ceph-argparse x86_64 2:20.2.0-670.gadc19233.el9 ceph 45 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: python3-ceph-common x86_64 2:20.2.0-670.gadc19233.el9 ceph 175 k 2026-02-18T04:51:36.466 INFO:teuthology.orchestra.run.trial079.stdout: python3-cephfs x86_64 2:20.2.0-670.gadc19233.el9 ceph 162 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: python3-rados x86_64 2:20.2.0-670.gadc19233.el9 ceph 323 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: python3-rbd x86_64 2:20.2.0-670.gadc19233.el9 ceph 305 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: python3-rgw x86_64 2:20.2.0-670.gadc19233.el9 ceph 99 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout:Installing weak dependencies: 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs-daemon x86_64 2:20.2.0-670.gadc19233.el9 ceph 35 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs-proxy2 x86_64 2:20.2.0-670.gadc19233.el9 ceph 24 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-18T04:51:36.467 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:36.468 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:51:36.468 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:36.468 INFO:teuthology.orchestra.run.trial079.stdout:Install 34 Packages 2026-02-18T04:51:36.468 INFO:teuthology.orchestra.run.trial079.stdout:Upgrade 2 Packages 2026-02-18T04:51:36.468 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:36.469 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 78 M 2026-02-18T04:51:36.469 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:51:36.476 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-18T04:51:36.479 INFO:teuthology.orchestra.run.trial191.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 30/38 2026-02-18T04:51:36.508 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:51:36.508 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:51:36.511 INFO:teuthology.orchestra.run.trial191.stdout: Installing : mailcap-2.1.49-5.el9.noarch 31/38 2026-02-18T04:51:36.513 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86 32/38 2026-02-18T04:51:36.834 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:51:36.845 INFO:teuthology.orchestra.run.trial197.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/38 2026-02-18T04:51:36.997 INFO:teuthology.orchestra.run.trial197.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/38 2026-02-18T04:51:37.001 INFO:teuthology.orchestra.run.trial197.stdout: Upgrading : librados2-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:37.051 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librados2-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:37.052 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:37.064 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:37.068 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 5/38 2026-02-18T04:51:37.069 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:37.097 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:37.099 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 7/38 2026-02-18T04:51:37.107 INFO:teuthology.orchestra.run.trial197.stdout: Installing : liboath-2.6.12-1.el9.x86_64 8/38 2026-02-18T04:51:37.109 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 9/38 2026-02-18T04:51:37.112 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 10/38 2026-02-18T04:51:37.117 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 11/38 2026-02-18T04:51:37.121 INFO:teuthology.orchestra.run.trial079.stdout:(1/36): ceph-base-20.2.0-670.gadc19233.el9.x86_ 17 MB/s | 5.9 MB 00:00 2026-02-18T04:51:37.125 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x 12/38 2026-02-18T04:51:37.137 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 13/38 2026-02-18T04:51:37.138 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:37.151 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:37.158 INFO:teuthology.orchestra.run.trial079.stdout:(2/36): ceph-selinux-20.2.0-670.gadc19233.el9.x 678 kB/s | 25 kB 00:00 2026-02-18T04:51:37.181 INFO:teuthology.orchestra.run.trial197.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/38 2026-02-18T04:51:37.185 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 16/38 2026-02-18T04:51:37.191 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/38 2026-02-18T04:51:37.193 INFO:teuthology.orchestra.run.trial197.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/38 2026-02-18T04:51:37.198 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 19/38 2026-02-18T04:51:37.200 INFO:teuthology.orchestra.run.trial079.stdout:(3/36): libcephfs-daemon-20.2.0-670.gadc19233.e 843 kB/s | 35 kB 00:00 2026-02-18T04:51:37.244 INFO:teuthology.orchestra.run.trial079.stdout:(4/36): libcephfs-proxy2-20.2.0-670.gadc19233.e 552 kB/s | 24 kB 00:00 2026-02-18T04:51:37.307 INFO:teuthology.orchestra.run.trial079.stdout:(5/36): libcephfs2-20.2.0-670.gadc19233.el9.x86 14 MB/s | 869 kB 00:00 2026-02-18T04:51:37.320 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 20/38 2026-02-18T04:51:37.321 INFO:teuthology.orchestra.run.trial197.stdout: Upgrading : librbd1-2:20.2.0-670.gadc19233.el9.x86_64 21/38 2026-02-18T04:51:37.348 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librbd1-2:20.2.0-670.gadc19233.el9.x86_64 21/38 2026-02-18T04:51:37.350 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 22/38 2026-02-18T04:51:37.358 INFO:teuthology.orchestra.run.trial197.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 23/38 2026-02-18T04:51:37.360 INFO:teuthology.orchestra.run.trial079.stdout:(6/36): libradosstriper1-20.2.0-670.gadc19233.e 4.6 MB/s | 250 kB 00:00 2026-02-18T04:51:37.595 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:37.597 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:37.634 INFO:teuthology.orchestra.run.trial197.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 24/38 2026-02-18T04:51:37.635 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librgw2-2:20.2.0-670.gadc19233.el9.x86_64 25/38 2026-02-18T04:51:37.653 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librgw2-2:20.2.0-670.gadc19233.el9.x86_64 25/38 2026-02-18T04:51:37.657 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 26/38 2026-02-18T04:51:37.663 INFO:teuthology.orchestra.run.trial197.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 27/38 2026-02-18T04:51:37.666 INFO:teuthology.orchestra.run.trial197.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 28/38 2026-02-18T04:51:37.666 INFO:teuthology.orchestra.run.trial197.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-18T04:51:37.685 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-18T04:51:37.688 INFO:teuthology.orchestra.run.trial197.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 30/38 2026-02-18T04:51:37.708 INFO:teuthology.orchestra.run.trial079.stdout:(7/36): librgw2-20.2.0-670.gadc19233.el9.x86_64 18 MB/s | 6.4 MB 00:00 2026-02-18T04:51:37.720 INFO:teuthology.orchestra.run.trial197.stdout: Installing : mailcap-2.1.49-5.el9.noarch 31/38 2026-02-18T04:51:37.722 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86 32/38 2026-02-18T04:51:37.746 INFO:teuthology.orchestra.run.trial079.stdout:(8/36): python3-ceph-argparse-20.2.0-670.gadc19 1.2 MB/s | 45 kB 00:00 2026-02-18T04:51:37.788 INFO:teuthology.orchestra.run.trial079.stdout:(9/36): python3-ceph-common-20.2.0-670.gadc1923 4.1 MB/s | 175 kB 00:00 2026-02-18T04:51:37.847 INFO:teuthology.orchestra.run.trial079.stdout:(10/36): ceph-common-20.2.0-670.gadc19233.el9.x 22 MB/s | 24 MB 00:01 2026-02-18T04:51:37.848 INFO:teuthology.orchestra.run.trial079.stdout:(11/36): python3-cephfs-20.2.0-670.gadc19233.el 2.6 MB/s | 162 kB 00:00 2026-02-18T04:51:37.871 INFO:teuthology.orchestra.run.trial079.stdout:(12/36): python3-rados-20.2.0-670.gadc19233.el9 13 MB/s | 323 kB 00:00 2026-02-18T04:51:37.876 INFO:teuthology.orchestra.run.trial079.stdout:(13/36): python3-rbd-20.2.0-670.gadc19233.el9.x 11 MB/s | 305 kB 00:00 2026-02-18T04:51:37.894 INFO:teuthology.orchestra.run.trial079.stdout:(14/36): python3-rgw-20.2.0-670.gadc19233.el9.x 4.2 MB/s | 99 kB 00:00 2026-02-18T04:51:37.896 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:37.900 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 34/38 2026-02-18T04:51:37.940 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 34/38 2026-02-18T04:51:37.940 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-18T04:51:37.940 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-18T04:51:37.941 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:37.944 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:37.956 INFO:teuthology.orchestra.run.trial079.stdout:(15/36): ceph-radosgw-20.2.0-670.gadc19233.el9. 20 MB/s | 24 MB 00:01 2026-02-18T04:51:38.359 INFO:teuthology.orchestra.run.trial079.stdout:(16/36): mailcap-2.1.49-5.el9.noarch.rpm 69 kB/s | 33 kB 00:00 2026-02-18T04:51:38.364 INFO:teuthology.orchestra.run.trial079.stdout:(17/36): boost-program-options-1.75.0-13.el9.x8 254 kB/s | 104 kB 00:00 2026-02-18T04:51:38.518 INFO:teuthology.orchestra.run.trial079.stdout:(18/36): pciutils-3.7.0-7.el9.x86_64.rpm 149 kB/s | 93 kB 00:00 2026-02-18T04:51:38.540 INFO:teuthology.orchestra.run.trial079.stdout:(19/36): libpmemobj-1.12.1-1.el9.x86_64.rpm 912 kB/s | 160 kB 00:00 2026-02-18T04:51:38.778 INFO:teuthology.orchestra.run.trial079.stdout:(20/36): librdkafka-1.6.1-102.el9.x86_64.rpm 2.7 MB/s | 662 kB 00:00 2026-02-18T04:51:38.799 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:38.802 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:38.811 INFO:teuthology.orchestra.run.trial079.stdout:(21/36): libnbd-1.20.3-4.el9.x86_64.rpm 363 kB/s | 164 kB 00:00 2026-02-18T04:51:38.833 INFO:teuthology.orchestra.run.trial079.stdout:(22/36): librabbitmq-0.11.0-7.el9.x86_64.rpm 144 kB/s | 45 kB 00:00 2026-02-18T04:51:38.875 INFO:teuthology.orchestra.run.trial079.stdout:(23/36): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.9 MB/s | 292 kB 00:00 2026-02-18T04:51:38.944 INFO:teuthology.orchestra.run.trial079.stdout:(24/36): qatlib-service-25.08.0-2.el9.x86_64.rp 334 kB/s | 37 kB 00:00 2026-02-18T04:51:38.957 INFO:teuthology.orchestra.run.trial079.stdout:(25/36): qatzip-libs-1.3.1-1.el9.x86_64.rpm 817 kB/s | 66 kB 00:00 2026-02-18T04:51:38.987 INFO:teuthology.orchestra.run.trial079.stdout:(26/36): qatlib-25.08.0-2.el9.x86_64.rpm 1.3 MB/s | 240 kB 00:00 2026-02-18T04:51:39.096 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:39.099 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 34/38 2026-02-18T04:51:39.142 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 34/38 2026-02-18T04:51:39.142 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-18T04:51:39.142 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-18T04:51:39.142 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:39.146 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:39.323 INFO:teuthology.orchestra.run.trial079.stdout:(27/36): libarrow-doc-9.0.0-15.el9.noarch.rpm 74 kB/s | 25 kB 00:00 2026-02-18T04:51:39.541 INFO:teuthology.orchestra.run.trial079.stdout:(28/36): gperftools-libs-2.9.1-3.el9.x86_64.rpm 515 kB/s | 308 kB 00:00 2026-02-18T04:51:39.556 INFO:teuthology.orchestra.run.trial079.stdout:(29/36): liboath-2.6.12-1.el9.x86_64.rpm 210 kB/s | 49 kB 00:00 2026-02-18T04:51:39.629 INFO:teuthology.orchestra.run.trial079.stdout:(30/36): libunwind-1.6.2-1.el9.x86_64.rpm 766 kB/s | 67 kB 00:00 2026-02-18T04:51:39.768 INFO:teuthology.orchestra.run.trial079.stdout:(31/36): parquet-libs-9.0.0-15.el9.x86_64.rpm 3.9 MB/s | 838 kB 00:00 2026-02-18T04:51:39.784 INFO:teuthology.orchestra.run.trial079.stdout:(32/36): re2-20211101-20.el9.x86_64.rpm 1.2 MB/s | 191 kB 00:00 2026-02-18T04:51:39.844 INFO:teuthology.orchestra.run.trial079.stdout:(33/36): libarrow-9.0.0-15.el9.x86_64.rpm 5.0 MB/s | 4.4 MB 00:00 2026-02-18T04:51:39.902 INFO:teuthology.orchestra.run.trial079.stdout:(34/36): librados2-20.2.0-670.gadc19233.el9.x86 30 MB/s | 3.5 MB 00:00 2026-02-18T04:51:39.934 INFO:teuthology.orchestra.run.trial079.stdout:(35/36): thrift-0.15.0-4.el9.x86_64.rpm 9.5 MB/s | 1.6 MB 00:00 2026-02-18T04:51:39.962 INFO:teuthology.orchestra.run.trial079.stdout:(36/36): librbd1-20.2.0-670.gadc19233.el9.x86_6 24 MB/s | 2.8 MB 00:00 2026-02-18T04:51:39.965 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:39.965 INFO:teuthology.orchestra.run.trial079.stdout:Total 22 MB/s | 78 MB 00:03 2026-02-18T04:51:40.055 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:51:40.075 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:51:40.075 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:51:40.350 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:51:40.351 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:51:40.677 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:51:40.688 INFO:teuthology.orchestra.run.trial079.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/38 2026-02-18T04:51:40.840 INFO:teuthology.orchestra.run.trial079.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/38 2026-02-18T04:51:40.845 INFO:teuthology.orchestra.run.trial079.stdout: Upgrading : librados2-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:40.893 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: librados2-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:40.894 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:40.906 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:40.910 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 5/38 2026-02-18T04:51:40.911 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:40.935 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:40.937 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 7/38 2026-02-18T04:51:40.945 INFO:teuthology.orchestra.run.trial079.stdout: Installing : liboath-2.6.12-1.el9.x86_64 8/38 2026-02-18T04:51:40.947 INFO:teuthology.orchestra.run.trial079.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 9/38 2026-02-18T04:51:40.950 INFO:teuthology.orchestra.run.trial079.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 10/38 2026-02-18T04:51:40.954 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 11/38 2026-02-18T04:51:40.963 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x 12/38 2026-02-18T04:51:40.975 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 13/38 2026-02-18T04:51:40.976 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:40.987 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:41.018 INFO:teuthology.orchestra.run.trial079.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/38 2026-02-18T04:51:41.022 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 16/38 2026-02-18T04:51:41.028 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/38 2026-02-18T04:51:41.030 INFO:teuthology.orchestra.run.trial079.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/38 2026-02-18T04:51:41.034 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 19/38 2026-02-18T04:51:41.157 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 20/38 2026-02-18T04:51:41.158 INFO:teuthology.orchestra.run.trial079.stdout: Upgrading : librbd1-2:20.2.0-670.gadc19233.el9.x86_64 21/38 2026-02-18T04:51:41.182 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: librbd1-2:20.2.0-670.gadc19233.el9.x86_64 21/38 2026-02-18T04:51:41.185 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 22/38 2026-02-18T04:51:41.191 INFO:teuthology.orchestra.run.trial079.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 23/38 2026-02-18T04:51:41.470 INFO:teuthology.orchestra.run.trial079.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 24/38 2026-02-18T04:51:41.471 INFO:teuthology.orchestra.run.trial079.stdout: Installing : librgw2-2:20.2.0-670.gadc19233.el9.x86_64 25/38 2026-02-18T04:51:41.487 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: librgw2-2:20.2.0-670.gadc19233.el9.x86_64 25/38 2026-02-18T04:51:41.490 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 26/38 2026-02-18T04:51:41.495 INFO:teuthology.orchestra.run.trial079.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 27/38 2026-02-18T04:51:41.498 INFO:teuthology.orchestra.run.trial079.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 28/38 2026-02-18T04:51:41.498 INFO:teuthology.orchestra.run.trial079.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-18T04:51:41.515 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-18T04:51:41.519 INFO:teuthology.orchestra.run.trial079.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 30/38 2026-02-18T04:51:41.551 INFO:teuthology.orchestra.run.trial079.stdout: Installing : mailcap-2.1.49-5.el9.noarch 31/38 2026-02-18T04:51:41.552 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86 32/38 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /sys 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /proc 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /mnt 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /var/tmp 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /home 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /root 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout:skipping the directory /tmp 2026-02-18T04:51:42.527 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:42.627 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:42.629 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:42.922 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 33/38 2026-02-18T04:51:42.926 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 34/38 2026-02-18T04:51:42.967 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 34/38 2026-02-18T04:51:42.967 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-18T04:51:42.967 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-18T04:51:42.967 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:42.970 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:43.550 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 36/38 2026-02-18T04:51:43.574 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 36/38 2026-02-18T04:51:43.574 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:51:43.575 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-18T04:51:43.575 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-18T04:51:43.575 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-18T04:51:43.575 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:43.576 INFO:teuthology.orchestra.run.trial191.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-18T04:51:43.589 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-18T04:51:43.590 INFO:teuthology.orchestra.run.trial191.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /sys 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /proc 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /mnt 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /var/tmp 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /home 2026-02-18T04:51:43.620 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /root 2026-02-18T04:51:43.621 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /tmp 2026-02-18T04:51:43.621 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:43.645 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:43.645 INFO:teuthology.orchestra.run.trial191.stdout:Creating group 'qat' with GID 992. 2026-02-18T04:51:43.645 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 1/38 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2/38 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 5/38 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:43.948 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 7/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 8/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librgw2-2:20.2.0-670.gadc19233.el9.x86_64 9/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x 10/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86 11/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 12/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 13/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 15/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 16/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 17/38 2026-02-18T04:51:43.949 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 18/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 19/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 20/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 21/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 22/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 23/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 24/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 25/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 26/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 27/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 28/38 2026-02-18T04:51:43.950 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 29/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 30/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 32/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : re2-1:20211101-20.el9.x86_64 33/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 34/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librados2-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 36/38 2026-02-18T04:51:43.951 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librbd1-2:20.2.0-670.gadc19233.el9.x86_64 37/38 2026-02-18T04:51:44.002 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout:Upgraded: 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: librados2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: librbd1-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.003 INFO:teuthology.orchestra.run.trial191.stdout: ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.004 INFO:teuthology.orchestra.run.trial191.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: librgw2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:44.005 INFO:teuthology.orchestra.run.trial191.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-18T04:51:44.006 INFO:teuthology.orchestra.run.trial191.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-18T04:51:44.006 INFO:teuthology.orchestra.run.trial191.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-18T04:51:44.006 INFO:teuthology.orchestra.run.trial191.stdout: re2-1:20211101-20.el9.x86_64 2026-02-18T04:51:44.006 INFO:teuthology.orchestra.run.trial191.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-18T04:51:44.006 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:44.006 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:51:44.046 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-test 2026-02-18T04:51:44.360 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:13 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:51:44.441 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:51:44.442 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:44.442 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repository Size 2026-02-18T04:51:44.442 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout: ceph-test x86_64 2:20.2.0-670.gadc19233.el9 ceph 84 M 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout:Installing dependencies: 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout: libcephsqlite x86_64 2:20.2.0-670.gadc19233.el9 ceph 164 k 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:51:44.443 INFO:teuthology.orchestra.run.trial191.stdout:Install 5 Packages 2026-02-18T04:51:44.444 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:44.444 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 85 M 2026-02-18T04:51:44.444 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 364 M 2026-02-18T04:51:44.444 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:51:44.616 INFO:teuthology.orchestra.run.trial191.stdout:(1/5): libcephsqlite-20.2.0-670.gadc19233.el9.x 1.5 MB/s | 164 kB 00:00 2026-02-18T04:51:44.647 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 36/38 2026-02-18T04:51:44.672 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 36/38 2026-02-18T04:51:44.672 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:51:44.672 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-18T04:51:44.672 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-18T04:51:44.672 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-18T04:51:44.672 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:44.673 INFO:teuthology.orchestra.run.trial197.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-18T04:51:44.686 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-18T04:51:44.686 INFO:teuthology.orchestra.run.trial197.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:44.743 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:44.743 INFO:teuthology.orchestra.run.trial197.stdout:Creating group 'qat' with GID 992. 2026-02-18T04:51:44.743 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:45.056 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 1/38 2026-02-18T04:51:45.056 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 5/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 7/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 8/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librgw2-2:20.2.0-670.gadc19233.el9.x86_64 9/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x 10/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86 11/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 12/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 13/38 2026-02-18T04:51:45.057 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 15/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 16/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 17/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 18/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 19/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 20/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 21/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 22/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 23/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 24/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 25/38 2026-02-18T04:51:45.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 26/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 27/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 28/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 29/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 30/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 32/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : re2-1:20211101-20.el9.x86_64 33/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 34/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librados2-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 36/38 2026-02-18T04:51:45.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librbd1-2:20.2.0-670.gadc19233.el9.x86_64 37/38 2026-02-18T04:51:45.111 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:45.111 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout:Upgraded: 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: librados2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: librbd1-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.112 INFO:teuthology.orchestra.run.trial197.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.113 INFO:teuthology.orchestra.run.trial197.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: librgw2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:45.114 INFO:teuthology.orchestra.run.trial197.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-18T04:51:45.115 INFO:teuthology.orchestra.run.trial197.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-18T04:51:45.115 INFO:teuthology.orchestra.run.trial197.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-18T04:51:45.115 INFO:teuthology.orchestra.run.trial197.stdout: re2-1:20211101-20.el9.x86_64 2026-02-18T04:51:45.115 INFO:teuthology.orchestra.run.trial197.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-18T04:51:45.115 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:45.115 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:51:45.141 INFO:teuthology.orchestra.run.trial191.stdout:(2/5): socat-1.7.4.1-8.el9.x86_64.rpm 578 kB/s | 303 kB 00:00 2026-02-18T04:51:45.156 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-test 2026-02-18T04:51:45.359 INFO:teuthology.orchestra.run.trial191.stdout:(3/5): libxslt-1.1.34-12.el9.x86_64.rpm 273 kB/s | 233 kB 00:00 2026-02-18T04:51:45.367 INFO:teuthology.orchestra.run.trial191.stdout:(4/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 281 kB/s | 64 kB 00:00 2026-02-18T04:51:45.471 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:13 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:51:45.551 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:51:45.552 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:45.552 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-18T04:51:45.552 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout: ceph-test x86_64 2:20.2.0-670.gadc19233.el9 ceph 84 M 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout: libcephsqlite x86_64 2:20.2.0-670.gadc19233.el9 ceph 164 k 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:51:45.553 INFO:teuthology.orchestra.run.trial197.stdout:Install 5 Packages 2026-02-18T04:51:45.554 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:45.554 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 85 M 2026-02-18T04:51:45.554 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 364 M 2026-02-18T04:51:45.554 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:51:45.672 INFO:teuthology.orchestra.run.trial197.stdout:(1/5): libxslt-1.1.34-12.el9.x86_64.rpm 4.3 MB/s | 233 kB 00:00 2026-02-18T04:51:45.701 INFO:teuthology.orchestra.run.trial197.stdout:(2/5): socat-1.7.4.1-8.el9.x86_64.rpm 10 MB/s | 303 kB 00:00 2026-02-18T04:51:45.724 INFO:teuthology.orchestra.run.trial197.stdout:(3/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.6 MB/s | 64 kB 00:00 2026-02-18T04:51:45.802 INFO:teuthology.orchestra.run.trial197.stdout:(4/5): libcephsqlite-20.2.0-670.gadc19233.el9.x 898 kB/s | 164 kB 00:00 2026-02-18T04:51:46.574 INFO:teuthology.orchestra.run.trial191.stdout:(5/5): ceph-test-20.2.0-670.gadc19233.el9.x86_6 41 MB/s | 84 MB 00:02 2026-02-18T04:51:46.576 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:46.576 INFO:teuthology.orchestra.run.trial191.stdout:Total 40 MB/s | 85 MB 00:02 2026-02-18T04:51:46.601 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:51:46.611 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:51:46.611 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:51:46.899 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:51:46.899 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:51:47.209 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:51:47.215 INFO:teuthology.orchestra.run.trial191.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-18T04:51:47.219 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-18T04:51:47.227 INFO:teuthology.orchestra.run.trial191.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-18T04:51:47.227 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 4/5 2026-02-18T04:51:47.479 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:47.479 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /sys 2026-02-18T04:51:47.479 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /proc 2026-02-18T04:51:47.479 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /mnt 2026-02-18T04:51:47.479 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /var/tmp 2026-02-18T04:51:47.479 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /home 2026-02-18T04:51:47.480 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /root 2026-02-18T04:51:47.480 INFO:teuthology.orchestra.run.trial079.stdout:skipping the directory /tmp 2026-02-18T04:51:47.480 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:47.937 INFO:teuthology.orchestra.run.trial197.stdout:(5/5): ceph-test-20.2.0-670.gadc19233.el9.x86_6 36 MB/s | 84 MB 00:02 2026-02-18T04:51:47.939 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:47.939 INFO:teuthology.orchestra.run.trial197.stdout:Total 35 MB/s | 85 MB 00:02 2026-02-18T04:51:47.966 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:51:47.976 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:51:47.976 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:51:48.265 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:51:48.265 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:51:48.506 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 36/38 2026-02-18T04:51:48.530 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 36/38 2026-02-18T04:51:48.530 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:51:48.530 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-18T04:51:48.530 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-18T04:51:48.530 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-18T04:51:48.531 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:48.532 INFO:teuthology.orchestra.run.trial079.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-18T04:51:48.546 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-18T04:51:48.546 INFO:teuthology.orchestra.run.trial079.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:48.576 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:51:48.581 INFO:teuthology.orchestra.run.trial197.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-18T04:51:48.585 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-18T04:51:48.593 INFO:teuthology.orchestra.run.trial197.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-18T04:51:48.594 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 4/5 2026-02-18T04:51:48.602 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:48.602 INFO:teuthology.orchestra.run.trial079.stdout:Creating group 'qat' with GID 992. 2026-02-18T04:51:48.602 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:48.924 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 1/38 2026-02-18T04:51:48.924 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2/38 2026-02-18T04:51:48.924 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 3/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 4/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 5/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 6/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 7/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 8/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librgw2-2:20.2.0-670.gadc19233.el9.x86_64 9/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x 10/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86 11/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 12/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 13/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 14/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 15/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 16/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 17/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 18/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 19/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 20/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 21/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 22/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 23/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 24/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 25/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 26/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 27/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 28/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 29/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 30/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/38 2026-02-18T04:51:48.925 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 32/38 2026-02-18T04:51:48.926 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : re2-1:20211101-20.el9.x86_64 33/38 2026-02-18T04:51:48.926 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 34/38 2026-02-18T04:51:48.926 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librados2-2:20.2.0-670.gadc19233.el9.x86_64 35/38 2026-02-18T04:51:48.926 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 36/38 2026-02-18T04:51:48.926 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librbd1-2:20.2.0-670.gadc19233.el9.x86_64 37/38 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 38/38 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout:Upgraded: 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout: librados2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout: librbd1-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-18T04:51:48.981 INFO:teuthology.orchestra.run.trial079.stdout: ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: ceph-radosgw-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: ceph-selinux-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs-daemon-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs-proxy2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libradosstriper1-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: librgw2-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: python3-ceph-argparse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: python3-ceph-common-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-18T04:51:48.982 INFO:teuthology.orchestra.run.trial079.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-18T04:51:48.983 INFO:teuthology.orchestra.run.trial079.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-18T04:51:48.983 INFO:teuthology.orchestra.run.trial079.stdout: re2-1:20211101-20.el9.x86_64 2026-02-18T04:51:48.983 INFO:teuthology.orchestra.run.trial079.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-18T04:51:48.983 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:48.983 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:51:49.024 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-test 2026-02-18T04:51:49.339 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:14 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:51:49.419 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repository Size 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: ceph-test x86_64 2:20.2.0-670.gadc19233.el9 ceph 84 M 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Installing dependencies: 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: libcephsqlite x86_64 2:20.2.0-670.gadc19233.el9 ceph 164 k 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Install 5 Packages 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 85 M 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 364 M 2026-02-18T04:51:49.420 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:51:49.564 INFO:teuthology.orchestra.run.trial079.stdout:(1/5): libxslt-1.1.34-12.el9.x86_64.rpm 4.1 MB/s | 233 kB 00:00 2026-02-18T04:51:49.589 INFO:teuthology.orchestra.run.trial079.stdout:(2/5): socat-1.7.4.1-8.el9.x86_64.rpm 12 MB/s | 303 kB 00:00 2026-02-18T04:51:49.598 INFO:teuthology.orchestra.run.trial079.stdout:(3/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 6.9 MB/s | 64 kB 00:00 2026-02-18T04:51:49.603 INFO:teuthology.orchestra.run.trial079.stdout:(4/5): libcephsqlite-20.2.0-670.gadc19233.el9.x 1.7 MB/s | 164 kB 00:00 2026-02-18T04:51:51.015 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 4/5 2026-02-18T04:51:51.033 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 5/5 2026-02-18T04:51:51.180 INFO:teuthology.orchestra.run.trial079.stdout:(5/5): ceph-test-20.2.0-670.gadc19233.el9.x86_6 50 MB/s | 84 MB 00:01 2026-02-18T04:51:51.182 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:51.182 INFO:teuthology.orchestra.run.trial079.stdout:Total 48 MB/s | 85 MB 00:01 2026-02-18T04:51:51.210 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:51:51.220 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:51:51.220 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:51:51.352 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 5/5 2026-02-18T04:51:51.352 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 1/5 2026-02-18T04:51:51.353 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 2/5 2026-02-18T04:51:51.353 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-18T04:51:51.353 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-18T04:51:51.412 INFO:teuthology.orchestra.run.trial191.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-18T04:51:51.413 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:51.413 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:51:51.447 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph 2026-02-18T04:51:51.506 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:51:51.506 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:51:51.753 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:20 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:51:51.814 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:51:51.820 INFO:teuthology.orchestra.run.trial079.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-18T04:51:51.824 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-18T04:51:51.832 INFO:teuthology.orchestra.run.trial079.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-18T04:51:51.833 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 4/5 2026-02-18T04:51:51.838 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout:====================================================================================== 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repository Size 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout:====================================================================================== 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph x86_64 2:20.2.0-670.gadc19233.el9 ceph 6.5 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout:Installing dependencies: 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-grafana-dashboards noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 43 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mds x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.3 M 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr x86_64 2:20.2.0-670.gadc19233.el9 ceph 961 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-modules-core noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 290 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mon x86_64 2:20.2.0-670.gadc19233.el9 ceph 5.1 M 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-osd x86_64 2:20.2.0-670.gadc19233.el9 ceph 17 M 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ceph-prometheus-alerts noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 17 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: cephadm noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 1.0 M 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: cryptsetup x86_64 2.8.1-2.el9 baseos 350 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-18T04:51:51.841 INFO:teuthology.orchestra.run.trial191.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-devel x86_64 3.9.25-2.el9 appstream 244 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-18T04:51:51.842 INFO:teuthology.orchestra.run.trial191.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout:Installing weak dependencies: 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-cephadm noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 173 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-dashboard noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 11 M 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 7.4 M 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 22 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-rook noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 50 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: ceph-volume noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 297 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout:====================================================================================== 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout:Install 94 Packages 2026-02-18T04:51:51.843 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:51.844 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 101 M 2026-02-18T04:51:51.844 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 560 M 2026-02-18T04:51:51.844 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:51:52.305 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 4/5 2026-02-18T04:51:52.323 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 5/5 2026-02-18T04:51:52.456 INFO:teuthology.orchestra.run.trial191.stdout:(1/94): ceph-20.2.0-670.gadc19233.el9.x86_64.rp 115 kB/s | 6.5 kB 00:00 2026-02-18T04:51:52.526 INFO:teuthology.orchestra.run.trial191.stdout:(2/94): ceph-mgr-20.2.0-670.gadc19233.el9.x86_6 7.4 MB/s | 961 kB 00:00 2026-02-18T04:51:52.549 INFO:teuthology.orchestra.run.trial191.stdout:(3/94): ceph-mds-20.2.0-670.gadc19233.el9.x86_6 16 MB/s | 2.3 MB 00:00 2026-02-18T04:51:52.579 INFO:teuthology.orchestra.run.trial191.stdout:(4/94): ceph-grafana-dashboards-20.2.0-670.gadc 1.4 MB/s | 43 kB 00:00 2026-02-18T04:51:52.614 INFO:teuthology.orchestra.run.trial191.stdout:(5/94): ceph-mgr-cephadm-20.2.0-670.gadc19233.e 4.8 MB/s | 173 kB 00:00 2026-02-18T04:51:52.664 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 5/5 2026-02-18T04:51:52.664 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 1/5 2026-02-18T04:51:52.664 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 2/5 2026-02-18T04:51:52.664 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-18T04:51:52.664 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-18T04:51:52.716 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-18T04:51:52.716 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:52.716 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:51:52.716 INFO:teuthology.orchestra.run.trial197.stdout: ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:52.716 INFO:teuthology.orchestra.run.trial197.stdout: libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:52.716 INFO:teuthology.orchestra.run.trial197.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-18T04:51:52.717 INFO:teuthology.orchestra.run.trial197.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-18T04:51:52.717 INFO:teuthology.orchestra.run.trial197.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-18T04:51:52.717 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:52.717 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:51:52.752 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph 2026-02-18T04:51:52.802 INFO:teuthology.orchestra.run.trial191.stdout:(6/94): ceph-mon-20.2.0-670.gadc19233.el9.x86_6 15 MB/s | 5.1 MB 00:00 2026-02-18T04:51:53.061 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:21 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:51:53.106 INFO:teuthology.orchestra.run.trial191.stdout:(7/94): ceph-mgr-dashboard-20.2.0-670.gadc19233 22 MB/s | 11 MB 00:00 2026-02-18T04:51:53.132 INFO:teuthology.orchestra.run.trial191.stdout:(8/94): ceph-mgr-k8sevents-20.2.0-670.gadc19233 828 kB/s | 22 kB 00:00 2026-02-18T04:51:53.148 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:51:53.151 INFO:teuthology.orchestra.run.trial197.stdout:====================================================================================== 2026-02-18T04:51:53.151 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-18T04:51:53.151 INFO:teuthology.orchestra.run.trial197.stdout:====================================================================================== 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph x86_64 2:20.2.0-670.gadc19233.el9 ceph 6.5 k 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-grafana-dashboards noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 43 k 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mds x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.3 M 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr x86_64 2:20.2.0-670.gadc19233.el9 ceph 961 k 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-modules-core noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 290 k 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mon x86_64 2:20.2.0-670.gadc19233.el9 ceph 5.1 M 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-osd x86_64 2:20.2.0-670.gadc19233.el9 ceph 17 M 2026-02-18T04:51:53.152 INFO:teuthology.orchestra.run.trial197.stdout: ceph-prometheus-alerts noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 17 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: cephadm noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 1.0 M 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: cryptsetup x86_64 2.8.1-2.el9 baseos 350 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-18T04:51:53.153 INFO:teuthology.orchestra.run.trial197.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-18T04:51:53.154 INFO:teuthology.orchestra.run.trial197.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-devel x86_64 3.9.25-2.el9 appstream 244 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-18T04:51:53.155 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-18T04:51:53.156 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-18T04:51:53.157 INFO:teuthology.orchestra.run.trial197.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-02-18T04:51:53.158 INFO:teuthology.orchestra.run.trial197.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout:Installing weak dependencies: 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-cephadm noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 173 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-dashboard noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 11 M 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 7.4 M 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 22 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-rook noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 50 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: ceph-volume noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 297 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:51:53.159 INFO:teuthology.orchestra.run.trial197.stdout:====================================================================================== 2026-02-18T04:51:53.160 INFO:teuthology.orchestra.run.trial197.stdout:Install 94 Packages 2026-02-18T04:51:53.160 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:51:53.160 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 101 M 2026-02-18T04:51:53.160 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 560 M 2026-02-18T04:51:53.161 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:51:53.170 INFO:teuthology.orchestra.run.trial191.stdout:(9/94): ceph-mgr-modules-core-20.2.0-670.gadc19 7.5 MB/s | 290 kB 00:00 2026-02-18T04:51:53.204 INFO:teuthology.orchestra.run.trial191.stdout:(10/94): ceph-mgr-rook-20.2.0-670.gadc19233.el9 1.5 MB/s | 50 kB 00:00 2026-02-18T04:51:53.240 INFO:teuthology.orchestra.run.trial191.stdout:(11/94): ceph-osd-20.2.0-670.gadc19233.el9.x86_ 24 MB/s | 17 MB 00:00 2026-02-18T04:51:53.241 INFO:teuthology.orchestra.run.trial191.stdout:(12/94): ceph-prometheus-alerts-20.2.0-670.gadc 473 kB/s | 17 kB 00:00 2026-02-18T04:51:53.250 INFO:teuthology.orchestra.run.trial191.stdout:(13/94): ceph-mgr-diskprediction-local-20.2.0-6 17 MB/s | 7.4 MB 00:00 2026-02-18T04:51:53.253 INFO:teuthology.orchestra.run.trial191.stdout:(14/94): ceph-volume-20.2.0-670.gadc19233.el9.n 24 MB/s | 297 kB 00:00 2026-02-18T04:51:53.265 INFO:teuthology.orchestra.run.trial191.stdout:(15/94): cephadm-20.2.0-670.gadc19233.el9.noarc 41 MB/s | 1.0 MB 00:00 2026-02-18T04:51:53.317 INFO:teuthology.orchestra.run.trial191.stdout:(16/94): ledmon-libs-1.1.0-3.el9.x86_64.rpm 630 kB/s | 40 kB 00:00 2026-02-18T04:51:53.329 INFO:teuthology.orchestra.run.trial191.stdout:(17/94): libconfig-1.7.2-9.el9.x86_64.rpm 1.1 MB/s | 72 kB 00:00 2026-02-18T04:51:53.360 INFO:teuthology.orchestra.run.trial191.stdout:(18/94): cryptsetup-2.8.1-2.el9.x86_64.rpm 3.1 MB/s | 350 kB 00:00 2026-02-18T04:51:53.372 INFO:teuthology.orchestra.run.trial191.stdout:(19/94): libquadmath-11.5.0-14.el9.x86_64.rpm 4.1 MB/s | 184 kB 00:00 2026-02-18T04:51:53.384 INFO:teuthology.orchestra.run.trial191.stdout:(20/94): python3-cffi-1.14.5-5.el9.x86_64.rpm 10 MB/s | 253 kB 00:00 2026-02-18T04:51:53.402 INFO:teuthology.orchestra.run.trial191.stdout:(21/94): libgfortran-11.5.0-14.el9.x86_64.rpm 9.1 MB/s | 794 kB 00:00 2026-02-18T04:51:53.407 INFO:teuthology.orchestra.run.trial191.stdout:(22/94): python3-ply-3.11-14.el9.noarch.rpm 4.5 MB/s | 106 kB 00:00 2026-02-18T04:51:53.426 INFO:teuthology.orchestra.run.trial191.stdout:(23/94): python3-pycparser-2.20-6.el9.noarch.rp 5.6 MB/s | 135 kB 00:00 2026-02-18T04:51:53.431 INFO:teuthology.orchestra.run.trial191.stdout:(24/94): python3-requests-2.25.1-10.el9.noarch. 5.3 MB/s | 126 kB 00:00 2026-02-18T04:51:53.448 INFO:teuthology.orchestra.run.trial191.stdout:(25/94): python3-urllib3-1.26.5-7.el9.noarch.rp 9.7 MB/s | 218 kB 00:00 2026-02-18T04:51:53.454 INFO:teuthology.orchestra.run.trial191.stdout:(26/94): unzip-6.0-59.el9.x86_64.rpm 7.7 MB/s | 182 kB 00:00 2026-02-18T04:51:53.457 INFO:teuthology.orchestra.run.trial191.stdout:(27/94): python3-cryptography-36.0.1-5.el9.x86_ 15 MB/s | 1.2 MB 00:00 2026-02-18T04:51:53.472 INFO:teuthology.orchestra.run.trial191.stdout:(28/94): zip-3.0-35.el9.x86_64.rpm 11 MB/s | 266 kB 00:00 2026-02-18T04:51:53.485 INFO:teuthology.orchestra.run.trial191.stdout:(29/94): flexiblas-3.0.4-9.el9.x86_64.rpm 952 kB/s | 30 kB 00:00 2026-02-18T04:51:53.497 INFO:teuthology.orchestra.run.trial191.stdout:(30/94): flexiblas-openblas-openmp-3.0.4-9.el9. 603 kB/s | 15 kB 00:00 2026-02-18T04:51:53.516 INFO:teuthology.orchestra.run.trial191.stdout:(31/94): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 7.9 MB/s | 246 kB 00:00 2026-02-18T04:51:53.524 INFO:teuthology.orchestra.run.trial191.stdout:(32/94): openblas-0.3.29-1.el9.x86_64.rpm 5.0 MB/s | 42 kB 00:00 2026-02-18T04:51:53.531 INFO:teuthology.orchestra.run.trial191.stdout:(33/94): lua-5.4.4-4.el9.x86_64.rpm 5.3 MB/s | 188 kB 00:00 2026-02-18T04:51:53.535 INFO:teuthology.orchestra.run.trial191.stdout:(34/94): flexiblas-netlib-3.0.4-9.el9.x86_64.rp 38 MB/s | 3.0 MB 00:00 2026-02-18T04:51:53.568 INFO:teuthology.orchestra.run.trial191.stdout:(35/94): python3-babel-2.9.1-2.el9.noarch.rpm 185 MB/s | 6.0 MB 00:00 2026-02-18T04:51:53.570 INFO:teuthology.orchestra.run.trial191.stdout:(36/94): protobuf-3.14.0-17.el9.x86_64.rpm 26 MB/s | 1.0 MB 00:00 2026-02-18T04:51:53.579 INFO:teuthology.orchestra.run.trial191.stdout:(37/94): python3-devel-3.9.25-2.el9.x86_64.rpm 21 MB/s | 244 kB 00:00 2026-02-18T04:51:53.581 INFO:teuthology.orchestra.run.trial191.stdout:(38/94): python3-jinja2-2.11.3-8.el9.noarch.rpm 21 MB/s | 249 kB 00:00 2026-02-18T04:51:53.588 INFO:teuthology.orchestra.run.trial191.stdout:(39/94): python3-jmespath-1.0.1-1.el9.noarch.rp 5.1 MB/s | 48 kB 00:00 2026-02-18T04:51:53.594 INFO:teuthology.orchestra.run.trial191.stdout:(40/94): python3-libstoragemgmt-1.10.1-1.el9.x8 14 MB/s | 177 kB 00:00 2026-02-18T04:51:53.602 INFO:teuthology.orchestra.run.trial191.stdout:(41/94): python3-lxml-4.6.5-3.el9.x86_64.rpm 91 MB/s | 1.2 MB 00:00 2026-02-18T04:51:53.603 INFO:teuthology.orchestra.run.trial191.stdout:(42/94): python3-markupsafe-1.1.1-12.el9.x86_64 3.6 MB/s | 35 kB 00:00 2026-02-18T04:51:53.616 INFO:teuthology.orchestra.run.trial191.stdout:(43/94): python3-numpy-f2py-1.23.5-2.el9.x86_64 34 MB/s | 442 kB 00:00 2026-02-18T04:51:53.626 INFO:teuthology.orchestra.run.trial191.stdout:(44/94): python3-packaging-20.9-5.el9.noarch.rp 7.3 MB/s | 77 kB 00:00 2026-02-18T04:51:53.637 INFO:teuthology.orchestra.run.trial191.stdout:(45/94): python3-numpy-1.23.5-2.el9.x86_64.rpm 175 MB/s | 6.1 MB 00:00 2026-02-18T04:51:53.638 INFO:teuthology.orchestra.run.trial191.stdout:(46/94): python3-protobuf-3.14.0-17.el9.noarch. 23 MB/s | 267 kB 00:00 2026-02-18T04:51:53.644 INFO:teuthology.orchestra.run.trial191.stdout:(47/94): openblas-openmp-0.3.29-1.el9.x86_64.rp 44 MB/s | 5.3 MB 00:00 2026-02-18T04:51:53.648 INFO:teuthology.orchestra.run.trial191.stdout:(48/94): python3-pyasn1-0.4.8-6.el9.noarch.rpm 15 MB/s | 159 kB 00:00 2026-02-18T04:51:53.650 INFO:teuthology.orchestra.run.trial191.stdout:(49/94): python3-pyasn1-modules-0.4.8-6.el9.noa 23 MB/s | 279 kB 00:00 2026-02-18T04:51:53.654 INFO:teuthology.orchestra.run.trial191.stdout:(50/94): python3-requests-oauthlib-1.3.0-12.el9 5.7 MB/s | 54 kB 00:00 2026-02-18T04:51:53.660 INFO:teuthology.orchestra.run.trial191.stdout:(51/94): python3-toml-0.10.2-6.el9.noarch.rpm 4.0 MB/s | 42 kB 00:00 2026-02-18T04:51:53.664 INFO:teuthology.orchestra.run.trial191.stdout:(52/94): xmlsec1-1.2.29-13.el9.x86_64.rpm 18 MB/s | 189 kB 00:00 2026-02-18T04:51:53.670 INFO:teuthology.orchestra.run.trial191.stdout:(53/94): xmlsec1-openssl-1.2.29-13.el9.x86_64.r 9.0 MB/s | 90 kB 00:00 2026-02-18T04:51:53.673 INFO:teuthology.orchestra.run.trial191.stdout:(54/94): lua-devel-5.4.4-4.el9.x86_64.rpm 2.6 MB/s | 22 kB 00:00 2026-02-18T04:51:53.686 INFO:teuthology.orchestra.run.trial191.stdout:(55/94): protobuf-compiler-3.14.0-17.el9.x86_64 54 MB/s | 862 kB 00:00 2026-02-18T04:51:53.731 INFO:teuthology.orchestra.run.trial191.stdout:(56/94): python3-scipy-1.9.3-2.el9.x86_64.rpm 232 MB/s | 19 MB 00:00 2026-02-18T04:51:53.816 INFO:teuthology.orchestra.run.trial197.stdout:(1/94): ceph-20.2.0-670.gadc19233.el9.x86_64.rp 114 kB/s | 6.5 kB 00:00 2026-02-18T04:51:53.870 INFO:teuthology.orchestra.run.trial191.stdout:(57/94): grpc-data-1.46.7-10.el9.noarch.rpm 106 kB/s | 19 kB 00:00 2026-02-18T04:51:53.891 INFO:teuthology.orchestra.run.trial197.stdout:(2/94): ceph-mgr-20.2.0-670.gadc19233.el9.x86_6 7.1 MB/s | 961 kB 00:00 2026-02-18T04:51:53.911 INFO:teuthology.orchestra.run.trial197.stdout:(3/94): ceph-mds-20.2.0-670.gadc19233.el9.x86_6 15 MB/s | 2.3 MB 00:00 2026-02-18T04:51:53.937 INFO:teuthology.orchestra.run.trial197.stdout:(4/94): ceph-grafana-dashboards-20.2.0-670.gadc 1.6 MB/s | 43 kB 00:00 2026-02-18T04:51:53.967 INFO:teuthology.orchestra.run.trial197.stdout:(5/94): ceph-mgr-cephadm-20.2.0-670.gadc19233.e 5.6 MB/s | 173 kB 00:00 2026-02-18T04:51:54.077 INFO:teuthology.orchestra.run.trial191.stdout:(58/94): luarocks-3.9.2-5.el9.noarch.rpm 437 kB/s | 151 kB 00:00 2026-02-18T04:51:54.140 INFO:teuthology.orchestra.run.trial191.stdout:(59/94): abseil-cpp-20211102.0-4.el9.x86_64.rpm 1.2 MB/s | 551 kB 00:00 2026-02-18T04:51:54.146 INFO:teuthology.orchestra.run.trial191.stdout:(60/94): python3-autocommand-2.2.2-8.el9.noarch 425 kB/s | 29 kB 00:00 2026-02-18T04:51:54.160 INFO:teuthology.orchestra.run.trial197.stdout:(6/94): ceph-mon-20.2.0-670.gadc19233.el9.x86_6 15 MB/s | 5.1 MB 00:00 2026-02-18T04:51:54.203 INFO:teuthology.orchestra.run.trial191.stdout:(61/94): python3-asyncssh-2.13.2-5.el9.noarch.r 1.6 MB/s | 548 kB 00:00 2026-02-18T04:51:54.205 INFO:teuthology.orchestra.run.trial191.stdout:(62/94): python3-backports-tarfile-1.2.0-1.el9. 920 kB/s | 60 kB 00:00 2026-02-18T04:51:54.220 INFO:teuthology.orchestra.run.trial191.stdout:(63/94): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 593 kB/s | 43 kB 00:00 2026-02-18T04:51:54.266 INFO:teuthology.orchestra.run.trial191.stdout:(64/94): python3-cachetools-4.2.4-1.el9.noarch. 511 kB/s | 32 kB 00:00 2026-02-18T04:51:54.267 INFO:teuthology.orchestra.run.trial191.stdout:(65/94): python3-certifi-2023.05.07-4.el9.noarc 229 kB/s | 14 kB 00:00 2026-02-18T04:51:54.331 INFO:teuthology.orchestra.run.trial191.stdout:(66/94): python3-cheroot-10.0.1-4.el9.noarch.rp 1.5 MB/s | 173 kB 00:00 2026-02-18T04:51:54.347 INFO:teuthology.orchestra.run.trial191.stdout:(67/94): python3-google-auth-2.45.0-1.el9.noarc 3.1 MB/s | 254 kB 00:00 2026-02-18T04:51:54.354 INFO:teuthology.orchestra.run.trial191.stdout:(68/94): python3-cherrypy-18.6.1-2.el9.noarch.r 4.0 MB/s | 358 kB 00:00 2026-02-18T04:51:54.379 INFO:teuthology.orchestra.run.trial197.stdout:(7/94): ceph-mgr-dashboard-20.2.0-670.gadc19233 26 MB/s | 11 MB 00:00 2026-02-18T04:51:54.410 INFO:teuthology.orchestra.run.trial197.stdout:(8/94): ceph-mgr-k8sevents-20.2.0-670.gadc19233 727 kB/s | 22 kB 00:00 2026-02-18T04:51:54.419 INFO:teuthology.orchestra.run.trial191.stdout:(69/94): python3-grpcio-tools-1.46.7-10.el9.x86 2.0 MB/s | 144 kB 00:00 2026-02-18T04:51:54.425 INFO:teuthology.orchestra.run.trial191.stdout:(70/94): python3-influxdb-5.3.1-1.el9.noarch.rp 1.9 MB/s | 139 kB 00:00 2026-02-18T04:51:54.456 INFO:teuthology.orchestra.run.trial197.stdout:(9/94): ceph-mgr-modules-core-20.2.0-670.gadc19 6.1 MB/s | 290 kB 00:00 2026-02-18T04:51:54.484 INFO:teuthology.orchestra.run.trial191.stdout:(71/94): python3-isodate-0.6.1-3.el9.noarch.rpm 866 kB/s | 56 kB 00:00 2026-02-18T04:51:54.486 INFO:teuthology.orchestra.run.trial191.stdout:(72/94): python3-jaraco-8.2.1-3.el9.noarch.rpm 173 kB/s | 11 kB 00:00 2026-02-18T04:51:54.499 INFO:teuthology.orchestra.run.trial197.stdout:(10/94): ceph-mgr-rook-20.2.0-670.gadc19233.el9 1.1 MB/s | 50 kB 00:00 2026-02-18T04:51:54.544 INFO:teuthology.orchestra.run.trial197.stdout:(11/94): ceph-prometheus-alerts-20.2.0-670.gadc 384 kB/s | 17 kB 00:00 2026-02-18T04:51:54.546 INFO:teuthology.orchestra.run.trial191.stdout:(73/94): python3-jaraco-classes-3.2.1-5.el9.noa 286 kB/s | 18 kB 00:00 2026-02-18T04:51:54.549 INFO:teuthology.orchestra.run.trial191.stdout:(74/94): python3-jaraco-collections-3.0.0-8.el9 373 kB/s | 23 kB 00:00 2026-02-18T04:51:54.583 INFO:teuthology.orchestra.run.trial197.stdout:(12/94): ceph-mgr-diskprediction-local-20.2.0-6 18 MB/s | 7.4 MB 00:00 2026-02-18T04:51:54.588 INFO:teuthology.orchestra.run.trial197.stdout:(13/94): ceph-volume-20.2.0-670.gadc19233.el9.n 6.7 MB/s | 297 kB 00:00 2026-02-18T04:51:54.608 INFO:teuthology.orchestra.run.trial191.stdout:(75/94): python3-jaraco-context-6.0.1-3.el9.noa 317 kB/s | 20 kB 00:00 2026-02-18T04:51:54.612 INFO:teuthology.orchestra.run.trial191.stdout:(76/94): python3-grpcio-1.46.7-10.el9.x86_64.rp 7.2 MB/s | 2.0 MB 00:00 2026-02-18T04:51:54.612 INFO:teuthology.orchestra.run.trial191.stdout:(77/94): python3-jaraco-functools-3.5.0-2.el9.n 304 kB/s | 19 kB 00:00 2026-02-18T04:51:54.618 INFO:teuthology.orchestra.run.trial197.stdout:(14/94): ceph-osd-20.2.0-670.gadc19233.el9.x86_ 23 MB/s | 17 MB 00:00 2026-02-18T04:51:54.622 INFO:teuthology.orchestra.run.trial197.stdout:(15/94): cephadm-20.2.0-670.gadc19233.el9.noarc 26 MB/s | 1.0 MB 00:00 2026-02-18T04:51:54.671 INFO:teuthology.orchestra.run.trial191.stdout:(78/94): python3-jaraco-text-4.0.0-2.el9.noarch 420 kB/s | 26 kB 00:00 2026-02-18T04:51:54.680 INFO:teuthology.orchestra.run.trial191.stdout:(79/94): python3-more-itertools-8.12.0-2.el9.no 1.1 MB/s | 79 kB 00:00 2026-02-18T04:51:54.694 INFO:teuthology.orchestra.run.trial191.stdout:(80/94): python3-kubernetes-26.1.0-3.el9.noarch 12 MB/s | 1.0 MB 00:00 2026-02-18T04:51:54.706 INFO:teuthology.orchestra.run.trial197.stdout:(16/94): ledmon-libs-1.1.0-3.el9.x86_64.rpm 464 kB/s | 40 kB 00:00 2026-02-18T04:51:54.733 INFO:teuthology.orchestra.run.trial197.stdout:(17/94): libconfig-1.7.2-9.el9.x86_64.rpm 649 kB/s | 72 kB 00:00 2026-02-18T04:51:54.738 INFO:teuthology.orchestra.run.trial191.stdout:(81/94): python3-msgpack-1.0.3-2.el9.x86_64.rpm 1.2 MB/s | 86 kB 00:00 2026-02-18T04:51:54.745 INFO:teuthology.orchestra.run.trial191.stdout:(82/94): python3-natsort-7.1.1-5.el9.noarch.rpm 889 kB/s | 58 kB 00:00 2026-02-18T04:51:54.757 INFO:teuthology.orchestra.run.trial191.stdout:(83/94): python3-portend-3.1.0-2.el9.noarch.rpm 264 kB/s | 16 kB 00:00 2026-02-18T04:51:54.761 INFO:teuthology.orchestra.run.trial197.stdout:(18/94): cryptsetup-2.8.1-2.el9.x86_64.rpm 2.0 MB/s | 350 kB 00:00 2026-02-18T04:51:54.797 INFO:teuthology.orchestra.run.trial197.stdout:(19/94): python3-cffi-1.14.5-5.el9.x86_64.rpm 6.9 MB/s | 253 kB 00:00 2026-02-18T04:51:54.804 INFO:teuthology.orchestra.run.trial197.stdout:(20/94): libquadmath-11.5.0-14.el9.x86_64.rpm 2.5 MB/s | 184 kB 00:00 2026-02-18T04:51:54.806 INFO:teuthology.orchestra.run.trial191.stdout:(84/94): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.3 MB/s | 90 kB 00:00 2026-02-18T04:51:54.808 INFO:teuthology.orchestra.run.trial191.stdout:(85/94): python3-repoze-lru-0.7-16.el9.noarch.r 489 kB/s | 31 kB 00:00 2026-02-18T04:51:54.822 INFO:teuthology.orchestra.run.trial191.stdout:(86/94): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2026-02-18T04:51:54.837 INFO:teuthology.orchestra.run.trial197.stdout:(21/94): python3-ply-3.11-14.el9.noarch.rpm 3.1 MB/s | 106 kB 00:00 2026-02-18T04:51:54.842 INFO:teuthology.orchestra.run.trial197.stdout:(22/94): libgfortran-11.5.0-14.el9.x86_64.rpm 5.7 MB/s | 794 kB 00:00 2026-02-18T04:51:54.870 INFO:teuthology.orchestra.run.trial197.stdout:(23/94): python3-requests-2.25.1-10.el9.noarch. 4.5 MB/s | 126 kB 00:00 2026-02-18T04:51:54.872 INFO:teuthology.orchestra.run.trial191.stdout:(87/94): python3-rsa-4.9-2.el9.noarch.rpm 907 kB/s | 59 kB 00:00 2026-02-18T04:51:54.873 INFO:teuthology.orchestra.run.trial197.stdout:(24/94): python3-pycparser-2.20-6.el9.noarch.rp 3.6 MB/s | 135 kB 00:00 2026-02-18T04:51:54.875 INFO:teuthology.orchestra.run.trial197.stdout:(25/94): python3-cryptography-36.0.1-5.el9.x86_ 16 MB/s | 1.2 MB 00:00 2026-02-18T04:51:54.877 INFO:teuthology.orchestra.run.trial191.stdout:(88/94): python3-saml-1.16.0-1.el9.noarch.rpm 1.8 MB/s | 125 kB 00:00 2026-02-18T04:51:54.884 INFO:teuthology.orchestra.run.trial191.stdout:(89/94): python3-tempora-5.0.0-2.el9.noarch.rpm 573 kB/s | 36 kB 00:00 2026-02-18T04:51:54.898 INFO:teuthology.orchestra.run.trial197.stdout:(26/94): python3-urllib3-1.26.5-7.el9.noarch.rp 7.4 MB/s | 218 kB 00:00 2026-02-18T04:51:54.902 INFO:teuthology.orchestra.run.trial197.stdout:(27/94): unzip-6.0-59.el9.x86_64.rpm 6.3 MB/s | 182 kB 00:00 2026-02-18T04:51:54.922 INFO:teuthology.orchestra.run.trial197.stdout:(28/94): zip-3.0-35.el9.x86_64.rpm 5.6 MB/s | 266 kB 00:00 2026-02-18T04:51:54.939 INFO:teuthology.orchestra.run.trial191.stdout:(90/94): python3-typing-extensions-4.15.0-1.el9 1.3 MB/s | 86 kB 00:00 2026-02-18T04:51:54.941 INFO:teuthology.orchestra.run.trial197.stdout:(29/94): flexiblas-3.0.4-9.el9.x86_64.rpm 698 kB/s | 30 kB 00:00 2026-02-18T04:51:54.945 INFO:teuthology.orchestra.run.trial191.stdout:(91/94): python3-websocket-client-1.2.3-2.el9.n 1.3 MB/s | 90 kB 00:00 2026-02-18T04:51:54.946 INFO:teuthology.orchestra.run.trial191.stdout:(92/94): python3-xmlsec-1.3.13-1.el9.x86_64.rpm 779 kB/s | 48 kB 00:00 2026-02-18T04:51:54.963 INFO:teuthology.orchestra.run.trial197.stdout:(30/94): flexiblas-openblas-openmp-3.0.4-9.el9. 356 kB/s | 15 kB 00:00 2026-02-18T04:51:55.003 INFO:teuthology.orchestra.run.trial191.stdout:(93/94): python3-xmltodict-0.12.0-15.el9.noarch 348 kB/s | 22 kB 00:00 2026-02-18T04:51:55.005 INFO:teuthology.orchestra.run.trial197.stdout:(31/94): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 3.8 MB/s | 246 kB 00:00 2026-02-18T04:51:55.009 INFO:teuthology.orchestra.run.trial191.stdout:(94/94): python3-zc-lockfile-2.0-10.el9.noarch. 315 kB/s | 20 kB 00:00 2026-02-18T04:51:55.010 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:55.010 INFO:teuthology.orchestra.run.trial191.stdout:Total 32 MB/s | 101 MB 00:03 2026-02-18T04:51:55.027 INFO:teuthology.orchestra.run.trial197.stdout:(32/94): openblas-0.3.29-1.el9.x86_64.rpm 1.9 MB/s | 42 kB 00:00 2026-02-18T04:51:55.027 INFO:teuthology.orchestra.run.trial197.stdout:(33/94): lua-5.4.4-4.el9.x86_64.rpm 2.9 MB/s | 188 kB 00:00 2026-02-18T04:51:55.071 INFO:teuthology.orchestra.run.trial197.stdout:(34/94): flexiblas-netlib-3.0.4-9.el9.x86_64.rp 18 MB/s | 3.0 MB 00:00 2026-02-18T04:51:55.108 INFO:teuthology.orchestra.run.trial197.stdout:(35/94): protobuf-3.14.0-17.el9.x86_64.rpm 12 MB/s | 1.0 MB 00:00 2026-02-18T04:51:55.129 INFO:teuthology.orchestra.run.trial197.stdout:(36/94): python3-babel-2.9.1-2.el9.noarch.rpm 103 MB/s | 6.0 MB 00:00 2026-02-18T04:51:55.133 INFO:teuthology.orchestra.run.trial197.stdout:(37/94): python3-devel-3.9.25-2.el9.x86_64.rpm 9.8 MB/s | 244 kB 00:00 2026-02-18T04:51:55.154 INFO:teuthology.orchestra.run.trial197.stdout:(38/94): python3-jinja2-2.11.3-8.el9.noarch.rpm 9.9 MB/s | 249 kB 00:00 2026-02-18T04:51:55.155 INFO:teuthology.orchestra.run.trial197.stdout:(39/94): python3-jmespath-1.0.1-1.el9.noarch.rp 2.1 MB/s | 48 kB 00:00 2026-02-18T04:51:55.179 INFO:teuthology.orchestra.run.trial197.stdout:(40/94): python3-libstoragemgmt-1.10.1-1.el9.x8 7.1 MB/s | 177 kB 00:00 2026-02-18T04:51:55.193 INFO:teuthology.orchestra.run.trial197.stdout:(41/94): openblas-openmp-0.3.29-1.el9.x86_64.rp 32 MB/s | 5.3 MB 00:00 2026-02-18T04:51:55.201 INFO:teuthology.orchestra.run.trial197.stdout:(42/94): python3-lxml-4.6.5-3.el9.x86_64.rpm 27 MB/s | 1.2 MB 00:00 2026-02-18T04:51:55.201 INFO:teuthology.orchestra.run.trial197.stdout:(43/94): python3-markupsafe-1.1.1-12.el9.x86_64 1.5 MB/s | 35 kB 00:00 2026-02-18T04:51:55.224 INFO:teuthology.orchestra.run.trial197.stdout:(44/94): python3-packaging-20.9-5.el9.noarch.rp 3.3 MB/s | 77 kB 00:00 2026-02-18T04:51:55.226 INFO:teuthology.orchestra.run.trial197.stdout:(45/94): python3-numpy-f2py-1.23.5-2.el9.x86_64 17 MB/s | 442 kB 00:00 2026-02-18T04:51:55.248 INFO:teuthology.orchestra.run.trial197.stdout:(46/94): python3-numpy-1.23.5-2.el9.x86_64.rpm 110 MB/s | 6.1 MB 00:00 2026-02-18T04:51:55.249 INFO:teuthology.orchestra.run.trial197.stdout:(47/94): python3-protobuf-3.14.0-17.el9.noarch. 10 MB/s | 267 kB 00:00 2026-02-18T04:51:55.250 INFO:teuthology.orchestra.run.trial197.stdout:(48/94): python3-pyasn1-0.4.8-6.el9.noarch.rpm 6.5 MB/s | 159 kB 00:00 2026-02-18T04:51:55.272 INFO:teuthology.orchestra.run.trial197.stdout:(49/94): python3-requests-oauthlib-1.3.0-12.el9 2.3 MB/s | 54 kB 00:00 2026-02-18T04:51:55.273 INFO:teuthology.orchestra.run.trial197.stdout:(50/94): python3-pyasn1-modules-0.4.8-6.el9.noa 11 MB/s | 279 kB 00:00 2026-02-18T04:51:55.294 INFO:teuthology.orchestra.run.trial197.stdout:(51/94): python3-toml-0.10.2-6.el9.noarch.rpm 1.8 MB/s | 42 kB 00:00 2026-02-18T04:51:55.296 INFO:teuthology.orchestra.run.trial197.stdout:(52/94): xmlsec1-1.2.29-13.el9.x86_64.rpm 7.9 MB/s | 189 kB 00:00 2026-02-18T04:51:55.316 INFO:teuthology.orchestra.run.trial197.stdout:(53/94): xmlsec1-openssl-1.2.29-13.el9.x86_64.r 4.0 MB/s | 90 kB 00:00 2026-02-18T04:51:55.325 INFO:teuthology.orchestra.run.trial197.stdout:(54/94): lua-devel-5.4.4-4.el9.x86_64.rpm 767 kB/s | 22 kB 00:00 2026-02-18T04:51:55.374 INFO:teuthology.orchestra.run.trial197.stdout:(55/94): protobuf-compiler-3.14.0-17.el9.x86_64 15 MB/s | 862 kB 00:00 2026-02-18T04:51:55.405 INFO:teuthology.orchestra.run.trial197.stdout:(56/94): python3-scipy-1.9.3-2.el9.x86_64.rpm 125 MB/s | 19 MB 00:00 2026-02-18T04:51:55.428 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:51:55.465 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:51:55.465 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:51:55.547 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 4/5 2026-02-18T04:51:55.565 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 5/5 2026-02-18T04:51:55.628 INFO:teuthology.orchestra.run.trial197.stdout:(57/94): grpc-data-1.46.7-10.el9.noarch.rpm 76 kB/s | 19 kB 00:00 2026-02-18T04:51:55.797 INFO:teuthology.orchestra.run.trial197.stdout:(58/94): luarocks-3.9.2-5.el9.noarch.rpm 386 kB/s | 151 kB 00:00 2026-02-18T04:51:55.866 INFO:teuthology.orchestra.run.trial197.stdout:(59/94): python3-autocommand-2.2.2-8.el9.noarch 430 kB/s | 29 kB 00:00 2026-02-18T04:51:55.875 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 5/5 2026-02-18T04:51:55.875 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 1/5 2026-02-18T04:51:55.876 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 2/5 2026-02-18T04:51:55.876 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-18T04:51:55.876 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-18T04:51:55.896 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:51:55.897 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:51:55.930 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: ceph-test-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: libcephsqlite-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:55.931 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:51:55.943 INFO:teuthology.orchestra.run.trial197.stdout:(60/94): python3-backports-tarfile-1.2.0-1.el9. 781 kB/s | 60 kB 00:00 2026-02-18T04:51:55.952 INFO:teuthology.orchestra.run.trial197.stdout:(61/94): python3-asyncssh-2.13.2-5.el9.noarch.r 1.7 MB/s | 548 kB 00:00 2026-02-18T04:51:55.966 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph 2026-02-18T04:51:55.989 INFO:teuthology.orchestra.run.trial197.stdout:(62/94): abseil-cpp-20211102.0-4.el9.x86_64.rpm 830 kB/s | 551 kB 00:00 2026-02-18T04:51:56.015 INFO:teuthology.orchestra.run.trial197.stdout:(63/94): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 600 kB/s | 43 kB 00:00 2026-02-18T04:51:56.016 INFO:teuthology.orchestra.run.trial197.stdout:(64/94): python3-cachetools-4.2.4-1.el9.noarch. 506 kB/s | 32 kB 00:00 2026-02-18T04:51:56.070 INFO:teuthology.orchestra.run.trial197.stdout:(65/94): python3-certifi-2023.05.07-4.el9.noarc 176 kB/s | 14 kB 00:00 2026-02-18T04:51:56.104 INFO:teuthology.orchestra.run.trial197.stdout:(66/94): python3-cherrypy-18.6.1-2.el9.noarch.r 4.0 MB/s | 358 kB 00:00 2026-02-18T04:51:56.124 INFO:teuthology.orchestra.run.trial197.stdout:(67/94): python3-cheroot-10.0.1-4.el9.noarch.rp 1.6 MB/s | 173 kB 00:00 2026-02-18T04:51:56.174 INFO:teuthology.orchestra.run.trial197.stdout:(68/94): python3-google-auth-2.45.0-1.el9.noarc 2.4 MB/s | 254 kB 00:00 2026-02-18T04:51:56.216 INFO:teuthology.orchestra.run.trial197.stdout:(69/94): python3-grpcio-tools-1.46.7-10.el9.x86 1.5 MB/s | 144 kB 00:00 2026-02-18T04:51:56.267 INFO:teuthology.orchestra.run.trial197.stdout:(70/94): python3-influxdb-5.3.1-1.el9.noarch.rp 1.5 MB/s | 139 kB 00:00 2026-02-18T04:51:56.276 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:21 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:51:56.289 INFO:teuthology.orchestra.run.trial197.stdout:(71/94): python3-isodate-0.6.1-3.el9.noarch.rpm 771 kB/s | 56 kB 00:00 2026-02-18T04:51:56.300 INFO:teuthology.orchestra.run.trial197.stdout:(72/94): python3-grpcio-1.46.7-10.el9.x86_64.rp 10 MB/s | 2.0 MB 00:00 2026-02-18T04:51:56.347 INFO:teuthology.orchestra.run.trial197.stdout:(73/94): python3-jaraco-8.2.1-3.el9.noarch.rpm 133 kB/s | 11 kB 00:00 2026-02-18T04:51:56.352 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:51:56.353 INFO:teuthology.orchestra.run.trial197.stdout:(74/94): python3-jaraco-classes-3.2.1-5.el9.noa 275 kB/s | 18 kB 00:00 2026-02-18T04:51:56.354 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/94 2026-02-18T04:51:56.358 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/94 2026-02-18T04:51:56.360 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:51:56.362 INFO:teuthology.orchestra.run.trial197.stdout:(75/94): python3-jaraco-collections-3.0.0-8.el9 373 kB/s | 23 kB 00:00 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout:====================================================================================== 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repository Size 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout:====================================================================================== 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph x86_64 2:20.2.0-670.gadc19233.el9 ceph 6.5 k 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout:Installing dependencies: 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-grafana-dashboards noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 43 k 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mds x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.3 M 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr x86_64 2:20.2.0-670.gadc19233.el9 ceph 961 k 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-modules-core noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 290 k 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mon x86_64 2:20.2.0-670.gadc19233.el9 ceph 5.1 M 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-osd x86_64 2:20.2.0-670.gadc19233.el9 ceph 17 M 2026-02-18T04:51:56.363 INFO:teuthology.orchestra.run.trial079.stdout: ceph-prometheus-alerts noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 17 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: cephadm noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 1.0 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: cryptsetup x86_64 2.8.1-2.el9 baseos 350 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-devel x86_64 3.9.25-2.el9 appstream 244 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-18T04:51:56.364 INFO:teuthology.orchestra.run.trial079.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout:Installing weak dependencies: 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-cephadm noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 173 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-dashboard noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 11 M 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 7.4 M 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 22 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-rook noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 50 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: ceph-volume noarch 2:20.2.0-670.gadc19233.el9 ceph-noarch 297 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout:====================================================================================== 2026-02-18T04:51:56.365 INFO:teuthology.orchestra.run.trial079.stdout:Install 94 Packages 2026-02-18T04:51:56.366 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:51:56.366 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 101 M 2026-02-18T04:51:56.366 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 560 M 2026-02-18T04:51:56.366 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:51:56.380 INFO:teuthology.orchestra.run.trial191.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 3/94 2026-02-18T04:51:56.390 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 4/94 2026-02-18T04:51:56.417 INFO:teuthology.orchestra.run.trial197.stdout:(76/94): python3-jaraco-functools-3.5.0-2.el9.n 302 kB/s | 19 kB 00:00 2026-02-18T04:51:56.423 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-packaging-20.9-5.el9.noarch 5/94 2026-02-18T04:51:56.424 INFO:teuthology.orchestra.run.trial197.stdout:(77/94): python3-jaraco-text-4.0.0-2.el9.noarch 426 kB/s | 26 kB 00:00 2026-02-18T04:51:56.428 INFO:teuthology.orchestra.run.trial197.stdout:(78/94): python3-jaraco-context-6.0.1-3.el9.noa 242 kB/s | 20 kB 00:00 2026-02-18T04:51:56.434 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 6/94 2026-02-18T04:51:56.439 INFO:teuthology.orchestra.run.trial191.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 7/94 2026-02-18T04:51:56.442 INFO:teuthology.orchestra.run.trial191.stdout: Installing : lua-5.4.4-4.el9.x86_64 8/94 2026-02-18T04:51:56.446 INFO:teuthology.orchestra.run.trial191.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 9/94 2026-02-18T04:51:56.469 INFO:teuthology.orchestra.run.trial191.stdout: Installing : unzip-6.0-59.el9.x86_64 10/94 2026-02-18T04:51:56.482 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 11/94 2026-02-18T04:51:56.486 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 12/94 2026-02-18T04:51:56.487 INFO:teuthology.orchestra.run.trial197.stdout:(79/94): python3-more-itertools-8.12.0-2.el9.no 1.2 MB/s | 79 kB 00:00 2026-02-18T04:51:56.492 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 13/94 2026-02-18T04:51:56.494 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 14/94 2026-02-18T04:51:56.505 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 15/94 2026-02-18T04:51:56.511 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 16/94 2026-02-18T04:51:56.515 INFO:teuthology.orchestra.run.trial197.stdout:(80/94): python3-msgpack-1.0.3-2.el9.x86_64.rpm 989 kB/s | 86 kB 00:00 2026-02-18T04:51:56.535 INFO:teuthology.orchestra.run.trial191.stdout: Installing : zip-3.0-35.el9.x86_64 17/94 2026-02-18T04:51:56.539 INFO:teuthology.orchestra.run.trial191.stdout: Installing : luarocks-3.9.2-5.el9.noarch 18/94 2026-02-18T04:51:56.545 INFO:teuthology.orchestra.run.trial191.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 19/94 2026-02-18T04:51:56.549 INFO:teuthology.orchestra.run.trial197.stdout:(81/94): python3-natsort-7.1.1-5.el9.noarch.rpm 929 kB/s | 58 kB 00:00 2026-02-18T04:51:56.596 INFO:teuthology.orchestra.run.trial197.stdout:(82/94): python3-portend-3.1.0-2.el9.noarch.rpm 205 kB/s | 16 kB 00:00 2026-02-18T04:51:56.597 INFO:teuthology.orchestra.run.trial191.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 20/94 2026-02-18T04:51:56.610 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 21/94 2026-02-18T04:51:56.613 INFO:teuthology.orchestra.run.trial197.stdout:(83/94): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.4 MB/s | 90 kB 00:00 2026-02-18T04:51:56.613 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-rsa-4.9-2.el9.noarch 22/94 2026-02-18T04:51:56.617 INFO:teuthology.orchestra.run.trial191.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 23/94 2026-02-18T04:51:56.623 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 24/94 2026-02-18T04:51:56.628 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 25/94 2026-02-18T04:51:56.631 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 26/94 2026-02-18T04:51:56.637 INFO:teuthology.orchestra.run.trial197.stdout:(84/94): python3-kubernetes-26.1.0-3.el9.noarch 4.6 MB/s | 1.0 MB 00:00 2026-02-18T04:51:56.646 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 27/94 2026-02-18T04:51:56.650 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 28/94 2026-02-18T04:51:56.655 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 29/94 2026-02-18T04:51:56.666 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 30/94 2026-02-18T04:51:56.675 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 31/94 2026-02-18T04:51:56.677 INFO:teuthology.orchestra.run.trial197.stdout:(85/94): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2026-02-18T04:51:56.678 INFO:teuthology.orchestra.run.trial197.stdout:(86/94): python3-repoze-lru-0.7-16.el9.noarch.r 374 kB/s | 31 kB 00:00 2026-02-18T04:51:56.682 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 32/94 2026-02-18T04:51:56.699 INFO:teuthology.orchestra.run.trial197.stdout:(87/94): python3-rsa-4.9-2.el9.noarch.rpm 948 kB/s | 59 kB 00:00 2026-02-18T04:51:56.701 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 33/94 2026-02-18T04:51:56.712 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 34/94 2026-02-18T04:51:56.728 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 35/94 2026-02-18T04:51:56.732 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 36/94 2026-02-18T04:51:56.740 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 37/94 2026-02-18T04:51:56.741 INFO:teuthology.orchestra.run.trial197.stdout:(88/94): python3-saml-1.16.0-1.el9.noarch.rpm 1.9 MB/s | 125 kB 00:00 2026-02-18T04:51:56.760 INFO:teuthology.orchestra.run.trial197.stdout:(89/94): python3-tempora-5.0.0-2.el9.noarch.rpm 436 kB/s | 36 kB 00:00 2026-02-18T04:51:56.763 INFO:teuthology.orchestra.run.trial197.stdout:(90/94): python3-typing-extensions-4.15.0-1.el9 1.3 MB/s | 86 kB 00:00 2026-02-18T04:51:56.780 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 38/94 2026-02-18T04:51:56.804 INFO:teuthology.orchestra.run.trial197.stdout:(91/94): python3-websocket-client-1.2.3-2.el9.n 1.4 MB/s | 90 kB 00:00 2026-02-18T04:51:56.824 INFO:teuthology.orchestra.run.trial197.stdout:(92/94): python3-xmltodict-0.12.0-15.el9.noarch 361 kB/s | 22 kB 00:00 2026-02-18T04:51:56.844 INFO:teuthology.orchestra.run.trial197.stdout:(93/94): python3-xmlsec-1.3.13-1.el9.x86_64.rpm 578 kB/s | 48 kB 00:00 2026-02-18T04:51:56.866 INFO:teuthology.orchestra.run.trial197.stdout:(94/94): python3-zc-lockfile-2.0-10.el9.noarch. 322 kB/s | 20 kB 00:00 2026-02-18T04:51:56.868 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:51:56.868 INFO:teuthology.orchestra.run.trial197.stdout:Total 27 MB/s | 101 MB 00:03 2026-02-18T04:51:56.941 INFO:teuthology.orchestra.run.trial079.stdout:(1/94): ceph-20.2.0-670.gadc19233.el9.x86_64.rp 114 kB/s | 6.5 kB 00:00 2026-02-18T04:51:57.009 INFO:teuthology.orchestra.run.trial079.stdout:(2/94): ceph-mgr-20.2.0-670.gadc19233.el9.x86_6 7.5 MB/s | 961 kB 00:00 2026-02-18T04:51:57.035 INFO:teuthology.orchestra.run.trial079.stdout:(3/94): ceph-mds-20.2.0-670.gadc19233.el9.x86_6 16 MB/s | 2.3 MB 00:00 2026-02-18T04:51:57.063 INFO:teuthology.orchestra.run.trial079.stdout:(4/94): ceph-grafana-dashboards-20.2.0-670.gadc 1.5 MB/s | 43 kB 00:00 2026-02-18T04:51:57.096 INFO:teuthology.orchestra.run.trial079.stdout:(5/94): ceph-mgr-cephadm-20.2.0-670.gadc19233.e 5.1 MB/s | 173 kB 00:00 2026-02-18T04:51:57.103 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 39/94 2026-02-18T04:51:57.113 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 40/94 2026-02-18T04:51:57.117 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 41/94 2026-02-18T04:51:57.123 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 42/94 2026-02-18T04:51:57.125 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 43/94 2026-02-18T04:51:57.153 INFO:teuthology.orchestra.run.trial191.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 44/94 2026-02-18T04:51:57.197 INFO:teuthology.orchestra.run.trial191.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 45/94 2026-02-18T04:51:57.204 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 46/94 2026-02-18T04:51:57.207 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 47/94 2026-02-18T04:51:57.213 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 48/94 2026-02-18T04:51:57.217 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 49/94 2026-02-18T04:51:57.224 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 50/94 2026-02-18T04:51:57.227 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 51/94 2026-02-18T04:51:57.255 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 52/94 2026-02-18T04:51:57.265 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 53/94 2026-02-18T04:51:57.271 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 54/94 2026-02-18T04:51:57.278 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 55/94 2026-02-18T04:51:57.294 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:51:57.312 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 56/94 2026-02-18T04:51:57.320 INFO:teuthology.orchestra.run.trial079.stdout:(6/94): ceph-mon-20.2.0-670.gadc19233.el9.x86_6 13 MB/s | 5.1 MB 00:00 2026-02-18T04:51:57.330 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:51:57.330 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:51:57.536 INFO:teuthology.orchestra.run.trial079.stdout:(7/94): ceph-mgr-dashboard-20.2.0-670.gadc19233 24 MB/s | 11 MB 00:00 2026-02-18T04:51:57.540 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-devel-3.9.25-2.el9.x86_64 57/94 2026-02-18T04:51:57.557 INFO:teuthology.orchestra.run.trial079.stdout:(8/94): ceph-mgr-k8sevents-20.2.0-670.gadc19233 1.0 MB/s | 22 kB 00:00 2026-02-18T04:51:57.564 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 58/94 2026-02-18T04:51:57.568 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 59/94 2026-02-18T04:51:57.592 INFO:teuthology.orchestra.run.trial079.stdout:(9/94): ceph-mgr-modules-core-20.2.0-670.gadc19 8.2 MB/s | 290 kB 00:00 2026-02-18T04:51:57.622 INFO:teuthology.orchestra.run.trial079.stdout:(10/94): ceph-mgr-rook-20.2.0-670.gadc19233.el9 1.6 MB/s | 50 kB 00:00 2026-02-18T04:51:57.626 INFO:teuthology.orchestra.run.trial191.stdout: Installing : openblas-0.3.29-1.el9.x86_64 60/94 2026-02-18T04:51:57.628 INFO:teuthology.orchestra.run.trial191.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 61/94 2026-02-18T04:51:57.649 INFO:teuthology.orchestra.run.trial191.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 62/94 2026-02-18T04:51:57.652 INFO:teuthology.orchestra.run.trial079.stdout:(11/94): ceph-prometheus-alerts-20.2.0-670.gadc 584 kB/s | 17 kB 00:00 2026-02-18T04:51:57.687 INFO:teuthology.orchestra.run.trial079.stdout:(12/94): ceph-volume-20.2.0-670.gadc19233.el9.n 8.4 MB/s | 297 kB 00:00 2026-02-18T04:51:57.732 INFO:teuthology.orchestra.run.trial079.stdout:(13/94): ceph-osd-20.2.0-670.gadc19233.el9.x86_ 24 MB/s | 17 MB 00:00 2026-02-18T04:51:57.735 INFO:teuthology.orchestra.run.trial079.stdout:(14/94): cephadm-20.2.0-670.gadc19233.el9.noarc 21 MB/s | 1.0 MB 00:00 2026-02-18T04:51:57.752 INFO:teuthology.orchestra.run.trial079.stdout:(15/94): ceph-mgr-diskprediction-local-20.2.0-6 17 MB/s | 7.4 MB 00:00 2026-02-18T04:51:57.764 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:51:57.764 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:51:57.776 INFO:teuthology.orchestra.run.trial079.stdout:(16/94): ledmon-libs-1.1.0-3.el9.x86_64.rpm 985 kB/s | 40 kB 00:00 2026-02-18T04:51:57.780 INFO:teuthology.orchestra.run.trial079.stdout:(17/94): cryptsetup-2.8.1-2.el9.x86_64.rpm 7.1 MB/s | 350 kB 00:00 2026-02-18T04:51:57.785 INFO:teuthology.orchestra.run.trial079.stdout:(18/94): libconfig-1.7.2-9.el9.x86_64.rpm 2.1 MB/s | 72 kB 00:00 2026-02-18T04:51:57.790 INFO:teuthology.orchestra.run.trial079.stdout:(19/94): libquadmath-11.5.0-14.el9.x86_64.rpm 18 MB/s | 184 kB 00:00 2026-02-18T04:51:57.809 INFO:teuthology.orchestra.run.trial079.stdout:(20/94): python3-cffi-1.14.5-5.el9.x86_64.rpm 11 MB/s | 253 kB 00:00 2026-02-18T04:51:57.813 INFO:teuthology.orchestra.run.trial079.stdout:(21/94): libgfortran-11.5.0-14.el9.x86_64.rpm 21 MB/s | 794 kB 00:00 2026-02-18T04:51:57.819 INFO:teuthology.orchestra.run.trial079.stdout:(22/94): python3-ply-3.11-14.el9.noarch.rpm 10 MB/s | 106 kB 00:00 2026-02-18T04:51:57.824 INFO:teuthology.orchestra.run.trial079.stdout:(23/94): python3-pycparser-2.20-6.el9.noarch.rp 13 MB/s | 135 kB 00:00 2026-02-18T04:51:57.826 INFO:teuthology.orchestra.run.trial079.stdout:(24/94): python3-cryptography-36.0.1-5.el9.x86_ 35 MB/s | 1.2 MB 00:00 2026-02-18T04:51:57.830 INFO:teuthology.orchestra.run.trial079.stdout:(25/94): python3-requests-2.25.1-10.el9.noarch. 12 MB/s | 126 kB 00:00 2026-02-18T04:51:57.833 INFO:teuthology.orchestra.run.trial079.stdout:(26/94): python3-urllib3-1.26.5-7.el9.noarch.rp 23 MB/s | 218 kB 00:00 2026-02-18T04:51:57.836 INFO:teuthology.orchestra.run.trial079.stdout:(27/94): unzip-6.0-59.el9.x86_64.rpm 18 MB/s | 182 kB 00:00 2026-02-18T04:51:57.841 INFO:teuthology.orchestra.run.trial079.stdout:(28/94): zip-3.0-35.el9.x86_64.rpm 24 MB/s | 266 kB 00:00 2026-02-18T04:51:57.978 INFO:teuthology.orchestra.run.trial191.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 63/94 2026-02-18T04:51:58.051 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 64/94 2026-02-18T04:51:58.077 INFO:teuthology.orchestra.run.trial079.stdout:(29/94): flexiblas-openblas-openmp-3.0.4-9.el9. 63 kB/s | 15 kB 00:00 2026-02-18T04:51:58.103 INFO:teuthology.orchestra.run.trial079.stdout:(30/94): flexiblas-3.0.4-9.el9.x86_64.rpm 110 kB/s | 30 kB 00:00 2026-02-18T04:51:58.218 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:51:58.220 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/94 2026-02-18T04:51:58.224 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/94 2026-02-18T04:51:58.246 INFO:teuthology.orchestra.run.trial197.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 3/94 2026-02-18T04:51:58.256 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 4/94 2026-02-18T04:51:58.289 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-packaging-20.9-5.el9.noarch 5/94 2026-02-18T04:51:58.300 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 6/94 2026-02-18T04:51:58.305 INFO:teuthology.orchestra.run.trial197.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 7/94 2026-02-18T04:51:58.307 INFO:teuthology.orchestra.run.trial197.stdout: Installing : lua-5.4.4-4.el9.x86_64 8/94 2026-02-18T04:51:58.312 INFO:teuthology.orchestra.run.trial197.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 9/94 2026-02-18T04:51:58.335 INFO:teuthology.orchestra.run.trial197.stdout: Installing : unzip-6.0-59.el9.x86_64 10/94 2026-02-18T04:51:58.348 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 11/94 2026-02-18T04:51:58.352 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 12/94 2026-02-18T04:51:58.358 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 13/94 2026-02-18T04:51:58.359 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 14/94 2026-02-18T04:51:58.371 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 15/94 2026-02-18T04:51:58.377 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 16/94 2026-02-18T04:51:58.394 INFO:teuthology.orchestra.run.trial079.stdout:(31/94): lua-5.4.4-4.el9.x86_64.rpm 647 kB/s | 188 kB 00:00 2026-02-18T04:51:58.401 INFO:teuthology.orchestra.run.trial197.stdout: Installing : zip-3.0-35.el9.x86_64 17/94 2026-02-18T04:51:58.404 INFO:teuthology.orchestra.run.trial197.stdout: Installing : luarocks-3.9.2-5.el9.noarch 18/94 2026-02-18T04:51:58.411 INFO:teuthology.orchestra.run.trial197.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 19/94 2026-02-18T04:51:58.427 INFO:teuthology.orchestra.run.trial079.stdout:(32/94): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 703 kB/s | 246 kB 00:00 2026-02-18T04:51:58.462 INFO:teuthology.orchestra.run.trial197.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 20/94 2026-02-18T04:51:58.475 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 21/94 2026-02-18T04:51:58.479 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rsa-4.9-2.el9.noarch 22/94 2026-02-18T04:51:58.482 INFO:teuthology.orchestra.run.trial079.stdout:(33/94): openblas-0.3.29-1.el9.x86_64.rpm 477 kB/s | 42 kB 00:00 2026-02-18T04:51:58.484 INFO:teuthology.orchestra.run.trial197.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 23/94 2026-02-18T04:51:58.489 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 24/94 2026-02-18T04:51:58.494 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 25/94 2026-02-18T04:51:58.497 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 26/94 2026-02-18T04:51:58.512 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 27/94 2026-02-18T04:51:58.516 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 28/94 2026-02-18T04:51:58.521 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 29/94 2026-02-18T04:51:58.532 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 30/94 2026-02-18T04:51:58.542 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 31/94 2026-02-18T04:51:58.548 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 32/94 2026-02-18T04:51:58.567 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 33/94 2026-02-18T04:51:58.579 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 34/94 2026-02-18T04:51:58.594 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 35/94 2026-02-18T04:51:58.599 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 36/94 2026-02-18T04:51:58.607 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 37/94 2026-02-18T04:51:58.623 INFO:teuthology.orchestra.run.trial079.stdout:(34/94): flexiblas-netlib-3.0.4-9.el9.x86_64.rp 3.8 MB/s | 3.0 MB 00:00 2026-02-18T04:51:58.647 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 38/94 2026-02-18T04:51:58.719 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 65/94 2026-02-18T04:51:58.738 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 66/94 2026-02-18T04:51:58.751 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-ply-3.11-14.el9.noarch 67/94 2026-02-18T04:51:58.760 INFO:teuthology.orchestra.run.trial079.stdout:(35/94): protobuf-3.14.0-17.el9.x86_64.rpm 3.6 MB/s | 1.0 MB 00:00 2026-02-18T04:51:58.767 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 68/94 2026-02-18T04:51:58.842 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 69/94 2026-02-18T04:51:58.843 INFO:teuthology.orchestra.run.trial079.stdout:(36/94): python3-babel-2.9.1-2.el9.noarch.rpm 27 MB/s | 6.0 MB 00:00 2026-02-18T04:51:58.849 INFO:teuthology.orchestra.run.trial079.stdout:(37/94): python3-devel-3.9.25-2.el9.x86_64.rpm 2.7 MB/s | 244 kB 00:00 2026-02-18T04:51:58.851 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 70/94 2026-02-18T04:51:58.874 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 71/94 2026-02-18T04:51:58.878 INFO:teuthology.orchestra.run.trial079.stdout:(38/94): openblas-openmp-0.3.29-1.el9.x86_64.rp 12 MB/s | 5.3 MB 00:00 2026-02-18T04:51:58.904 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 72/94 2026-02-18T04:51:58.925 INFO:teuthology.orchestra.run.trial079.stdout:(39/94): python3-jinja2-2.11.3-8.el9.noarch.rpm 3.0 MB/s | 249 kB 00:00 2026-02-18T04:51:58.930 INFO:teuthology.orchestra.run.trial079.stdout:(40/94): python3-jmespath-1.0.1-1.el9.noarch.rp 592 kB/s | 48 kB 00:00 2026-02-18T04:51:58.954 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 73/94 2026-02-18T04:51:58.960 INFO:teuthology.orchestra.run.trial079.stdout:(41/94): python3-libstoragemgmt-1.10.1-1.el9.x8 2.1 MB/s | 177 kB 00:00 2026-02-18T04:51:58.960 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 74/94 2026-02-18T04:51:58.963 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 75/94 2026-02-18T04:51:58.965 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 76/94 2026-02-18T04:51:58.973 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 39/94 2026-02-18T04:51:58.982 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:51:58.987 INFO:teuthology.orchestra.run.trial191.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-18T04:51:58.987 INFO:teuthology.orchestra.run.trial191.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-18T04:51:58.987 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:58.988 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 40/94 2026-02-18T04:51:58.988 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 41/94 2026-02-18T04:51:58.989 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:51:58.994 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 42/94 2026-02-18T04:51:58.996 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 43/94 2026-02-18T04:51:59.009 INFO:teuthology.orchestra.run.trial079.stdout:(42/94): python3-markupsafe-1.1.1-12.el9.x86_64 437 kB/s | 35 kB 00:00 2026-02-18T04:51:59.015 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:51:59.015 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-18T04:51:59.015 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:59.015 INFO:teuthology.orchestra.run.trial079.stdout:(43/94): python3-lxml-4.6.5-3.el9.x86_64.rpm 14 MB/s | 1.2 MB 00:00 2026-02-18T04:51:59.024 INFO:teuthology.orchestra.run.trial197.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 44/94 2026-02-18T04:51:59.048 INFO:teuthology.orchestra.run.trial191.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 78/94 2026-02-18T04:51:59.068 INFO:teuthology.orchestra.run.trial197.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 45/94 2026-02-18T04:51:59.074 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 46/94 2026-02-18T04:51:59.078 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 47/94 2026-02-18T04:51:59.084 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 48/94 2026-02-18T04:51:59.088 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 49/94 2026-02-18T04:51:59.094 INFO:teuthology.orchestra.run.trial079.stdout:(44/94): python3-packaging-20.9-5.el9.noarch.rp 970 kB/s | 77 kB 00:00 2026-02-18T04:51:59.095 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 50/94 2026-02-18T04:51:59.098 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 51/94 2026-02-18T04:51:59.108 INFO:teuthology.orchestra.run.trial079.stdout:(45/94): python3-numpy-f2py-1.23.5-2.el9.x86_64 4.4 MB/s | 442 kB 00:00 2026-02-18T04:51:59.111 INFO:teuthology.orchestra.run.trial191.stdout: Installing : cryptsetup-2.8.1-2.el9.x86_64 79/94 2026-02-18T04:51:59.113 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 80/94 2026-02-18T04:51:59.126 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 52/94 2026-02-18T04:51:59.127 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 80/94 2026-02-18T04:51:59.127 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:51:59.127 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-18T04:51:59.127 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:59.136 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 53/94 2026-02-18T04:51:59.142 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 54/94 2026-02-18T04:51:59.148 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 55/94 2026-02-18T04:51:59.175 INFO:teuthology.orchestra.run.trial079.stdout:(46/94): python3-protobuf-3.14.0-17.el9.noarch. 3.2 MB/s | 267 kB 00:00 2026-02-18T04:51:59.183 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 56/94 2026-02-18T04:51:59.194 INFO:teuthology.orchestra.run.trial079.stdout:(47/94): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.8 MB/s | 159 kB 00:00 2026-02-18T04:51:59.211 INFO:teuthology.orchestra.run.trial079.stdout:(48/94): python3-numpy-1.23.5-2.el9.x86_64.rpm 24 MB/s | 6.1 MB 00:00 2026-02-18T04:51:59.256 INFO:teuthology.orchestra.run.trial079.stdout:(49/94): python3-pyasn1-modules-0.4.8-6.el9.noa 3.3 MB/s | 279 kB 00:00 2026-02-18T04:51:59.275 INFO:teuthology.orchestra.run.trial079.stdout:(50/94): python3-requests-oauthlib-1.3.0-12.el9 665 kB/s | 54 kB 00:00 2026-02-18T04:51:59.336 INFO:teuthology.orchestra.run.trial079.stdout:(51/94): python3-toml-0.10.2-6.el9.noarch.rpm 527 kB/s | 42 kB 00:00 2026-02-18T04:51:59.360 INFO:teuthology.orchestra.run.trial079.stdout:(52/94): xmlsec1-1.2.29-13.el9.x86_64.rpm 2.1 MB/s | 189 kB 00:00 2026-02-18T04:51:59.408 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-devel-3.9.25-2.el9.x86_64 57/94 2026-02-18T04:51:59.415 INFO:teuthology.orchestra.run.trial079.stdout:(53/94): xmlsec1-openssl-1.2.29-13.el9.x86_64.r 1.1 MB/s | 90 kB 00:00 2026-02-18T04:51:59.432 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 58/94 2026-02-18T04:51:59.436 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 59/94 2026-02-18T04:51:59.495 INFO:teuthology.orchestra.run.trial197.stdout: Installing : openblas-0.3.29-1.el9.x86_64 60/94 2026-02-18T04:51:59.497 INFO:teuthology.orchestra.run.trial197.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 61/94 2026-02-18T04:51:59.518 INFO:teuthology.orchestra.run.trial197.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 62/94 2026-02-18T04:51:59.800 INFO:teuthology.orchestra.run.trial079.stdout:(54/94): python3-scipy-1.9.3-2.el9.x86_64.rpm 33 MB/s | 19 MB 00:00 2026-02-18T04:51:59.801 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 81/94 2026-02-18T04:51:59.827 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 81/94 2026-02-18T04:51:59.827 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:51:59.827 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-18T04:51:59.827 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-18T04:51:59.827 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-18T04:51:59.828 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:51:59.845 INFO:teuthology.orchestra.run.trial197.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 63/94 2026-02-18T04:51:59.885 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: cephadm-2:20.2.0-670.gadc19233.el9.noarch 82/94 2026-02-18T04:51:59.887 INFO:teuthology.orchestra.run.trial191.stdout: Installing : cephadm-2:20.2.0-670.gadc19233.el9.noarch 82/94 2026-02-18T04:51:59.894 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9. 83/94 2026-02-18T04:51:59.917 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9 84/94 2026-02-18T04:51:59.918 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 85/94 2026-02-18T04:51:59.919 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 64/94 2026-02-18T04:51:59.976 INFO:teuthology.orchestra.run.trial079.stdout:(55/94): lua-devel-5.4.4-4.el9.x86_64.rpm 36 kB/s | 22 kB 00:00 2026-02-18T04:52:00.206 INFO:teuthology.orchestra.run.trial079.stdout:(56/94): grpc-data-1.46.7-10.el9.noarch.rpm 85 kB/s | 19 kB 00:00 2026-02-18T04:52:00.376 INFO:teuthology.orchestra.run.trial079.stdout:(57/94): abseil-cpp-20211102.0-4.el9.x86_64.rpm 957 kB/s | 551 kB 00:00 2026-02-18T04:52:00.481 INFO:teuthology.orchestra.run.trial079.stdout:(58/94): luarocks-3.9.2-5.el9.noarch.rpm 549 kB/s | 151 kB 00:00 2026-02-18T04:52:00.504 INFO:teuthology.orchestra.run.trial079.stdout:(59/94): python3-asyncssh-2.13.2-5.el9.noarch.r 4.2 MB/s | 548 kB 00:00 2026-02-18T04:52:00.566 INFO:teuthology.orchestra.run.trial079.stdout:(60/94): python3-autocommand-2.2.2-8.el9.noarch 350 kB/s | 29 kB 00:00 2026-02-18T04:52:00.584 INFO:teuthology.orchestra.run.trial079.stdout:(61/94): python3-backports-tarfile-1.2.0-1.el9. 754 kB/s | 60 kB 00:00 2026-02-18T04:52:00.595 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 65/94 2026-02-18T04:52:00.613 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 66/94 2026-02-18T04:52:00.627 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-ply-3.11-14.el9.noarch 67/94 2026-02-18T04:52:00.643 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 68/94 2026-02-18T04:52:00.654 INFO:teuthology.orchestra.run.trial079.stdout:(62/94): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 490 kB/s | 43 kB 00:00 2026-02-18T04:52:00.662 INFO:teuthology.orchestra.run.trial079.stdout:(63/94): python3-cachetools-4.2.4-1.el9.noarch. 413 kB/s | 32 kB 00:00 2026-02-18T04:52:00.718 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 69/94 2026-02-18T04:52:00.729 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 70/94 2026-02-18T04:52:00.734 INFO:teuthology.orchestra.run.trial079.stdout:(64/94): python3-certifi-2023.05.07-4.el9.noarc 177 kB/s | 14 kB 00:00 2026-02-18T04:52:00.751 INFO:teuthology.orchestra.run.trial079.stdout:(65/94): python3-cheroot-10.0.1-4.el9.noarch.rp 1.9 MB/s | 173 kB 00:00 2026-02-18T04:52:00.753 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 71/94 2026-02-18T04:52:00.783 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 72/94 2026-02-18T04:52:00.834 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 73/94 2026-02-18T04:52:00.840 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 74/94 2026-02-18T04:52:00.843 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 75/94 2026-02-18T04:52:00.845 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 76/94 2026-02-18T04:52:00.847 INFO:teuthology.orchestra.run.trial079.stdout:(66/94): python3-google-auth-2.45.0-1.el9.noarc 2.6 MB/s | 254 kB 00:00 2026-02-18T04:52:00.863 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:52:00.863 INFO:teuthology.orchestra.run.trial197.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-18T04:52:00.863 INFO:teuthology.orchestra.run.trial197.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-18T04:52:00.863 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:00.870 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:52:00.895 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:52:00.896 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-18T04:52:00.896 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:00.924 INFO:teuthology.orchestra.run.trial079.stdout:(67/94): python3-cherrypy-18.6.1-2.el9.noarch.r 1.8 MB/s | 358 kB 00:00 2026-02-18T04:52:00.930 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 78/94 2026-02-18T04:52:00.979 INFO:teuthology.orchestra.run.trial079.stdout:(68/94): protobuf-compiler-3.14.0-17.el9.x86_64 551 kB/s | 862 kB 00:01 2026-02-18T04:52:00.994 INFO:teuthology.orchestra.run.trial197.stdout: Installing : cryptsetup-2.8.1-2.el9.x86_64 79/94 2026-02-18T04:52:00.996 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 80/94 2026-02-18T04:52:01.009 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 80/94 2026-02-18T04:52:01.009 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:01.009 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-18T04:52:01.010 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:01.016 INFO:teuthology.orchestra.run.trial079.stdout:(69/94): python3-grpcio-tools-1.46.7-10.el9.x86 1.5 MB/s | 144 kB 00:00 2026-02-18T04:52:01.067 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 85/94 2026-02-18T04:52:01.072 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 86/94 2026-02-18T04:52:01.078 INFO:teuthology.orchestra.run.trial079.stdout:(70/94): python3-grpcio-1.46.7-10.el9.x86_64.rp 8.8 MB/s | 2.0 MB 00:00 2026-02-18T04:52:01.098 INFO:teuthology.orchestra.run.trial079.stdout:(71/94): python3-isodate-0.6.1-3.el9.noarch.rpm 689 kB/s | 56 kB 00:00 2026-02-18T04:52:01.154 INFO:teuthology.orchestra.run.trial079.stdout:(72/94): python3-jaraco-8.2.1-3.el9.noarch.rpm 140 kB/s | 11 kB 00:00 2026-02-18T04:52:01.175 INFO:teuthology.orchestra.run.trial079.stdout:(73/94): python3-jaraco-classes-3.2.1-5.el9.noa 229 kB/s | 18 kB 00:00 2026-02-18T04:52:01.231 INFO:teuthology.orchestra.run.trial079.stdout:(74/94): python3-jaraco-collections-3.0.0-8.el9 303 kB/s | 23 kB 00:00 2026-02-18T04:52:01.252 INFO:teuthology.orchestra.run.trial079.stdout:(75/94): python3-jaraco-context-6.0.1-3.el9.noa 255 kB/s | 20 kB 00:00 2026-02-18T04:52:01.307 INFO:teuthology.orchestra.run.trial079.stdout:(76/94): python3-jaraco-functools-3.5.0-2.el9.n 255 kB/s | 19 kB 00:00 2026-02-18T04:52:01.330 INFO:teuthology.orchestra.run.trial079.stdout:(77/94): python3-jaraco-text-4.0.0-2.el9.noarch 339 kB/s | 26 kB 00:00 2026-02-18T04:52:01.409 INFO:teuthology.orchestra.run.trial079.stdout:(78/94): python3-kubernetes-26.1.0-3.el9.noarch 10 MB/s | 1.0 MB 00:00 2026-02-18T04:52:01.409 INFO:teuthology.orchestra.run.trial079.stdout:(79/94): python3-influxdb-5.3.1-1.el9.noarch.rp 323 kB/s | 139 kB 00:00 2026-02-18T04:52:01.414 INFO:teuthology.orchestra.run.trial079.stdout:(80/94): python3-more-itertools-8.12.0-2.el9.no 945 kB/s | 79 kB 00:00 2026-02-18T04:52:01.487 INFO:teuthology.orchestra.run.trial079.stdout:(81/94): python3-msgpack-1.0.3-2.el9.x86_64.rpm 1.1 MB/s | 86 kB 00:00 2026-02-18T04:52:01.490 INFO:teuthology.orchestra.run.trial079.stdout:(82/94): python3-portend-3.1.0-2.el9.noarch.rpm 215 kB/s | 16 kB 00:00 2026-02-18T04:52:01.509 INFO:teuthology.orchestra.run.trial079.stdout:(83/94): python3-natsort-7.1.1-5.el9.noarch.rpm 579 kB/s | 58 kB 00:00 2026-02-18T04:52:01.530 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 86/94 2026-02-18T04:52:01.531 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 87/94 2026-02-18T04:52:01.544 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 87/94 2026-02-18T04:52:01.544 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 88/94 2026-02-18T04:52:01.565 INFO:teuthology.orchestra.run.trial079.stdout:(84/94): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.1 MB/s | 90 kB 00:00 2026-02-18T04:52:01.568 INFO:teuthology.orchestra.run.trial079.stdout:(85/94): python3-repoze-lru-0.7-16.el9.noarch.r 393 kB/s | 31 kB 00:00 2026-02-18T04:52:01.604 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 88/94 2026-02-18T04:52:01.642 INFO:teuthology.orchestra.run.trial079.stdout:(86/94): python3-rsa-4.9-2.el9.noarch.rpm 761 kB/s | 59 kB 00:00 2026-02-18T04:52:01.647 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.n 89/94 2026-02-18T04:52:01.649 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 90/94 2026-02-18T04:52:01.658 INFO:teuthology.orchestra.run.trial079.stdout:(87/94): python3-saml-1.16.0-1.el9.noarch.rpm 1.4 MB/s | 125 kB 00:00 2026-02-18T04:52:01.661 INFO:teuthology.orchestra.run.trial079.stdout:(88/94): python3-routes-2.5.1-5.el9.noarch.rpm 1.2 MB/s | 188 kB 00:00 2026-02-18T04:52:01.671 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 90/94 2026-02-18T04:52:01.671 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:01.671 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-18T04:52:01.671 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-18T04:52:01.671 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-18T04:52:01.671 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:01.683 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 91/94 2026-02-18T04:52:01.703 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 81/94 2026-02-18T04:52:01.719 INFO:teuthology.orchestra.run.trial079.stdout:(89/94): python3-tempora-5.0.0-2.el9.noarch.rpm 467 kB/s | 36 kB 00:00 2026-02-18T04:52:01.728 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 81/94 2026-02-18T04:52:01.728 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:01.728 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-18T04:52:01.728 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-18T04:52:01.728 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-18T04:52:01.728 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:01.743 INFO:teuthology.orchestra.run.trial079.stdout:(90/94): python3-typing-extensions-4.15.0-1.el9 1.0 MB/s | 86 kB 00:00 2026-02-18T04:52:01.763 INFO:teuthology.orchestra.run.trial079.stdout:(91/94): python3-websocket-client-1.2.3-2.el9.n 876 kB/s | 90 kB 00:00 2026-02-18T04:52:01.789 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: cephadm-2:20.2.0-670.gadc19233.el9.noarch 82/94 2026-02-18T04:52:01.791 INFO:teuthology.orchestra.run.trial197.stdout: Installing : cephadm-2:20.2.0-670.gadc19233.el9.noarch 82/94 2026-02-18T04:52:01.796 INFO:teuthology.orchestra.run.trial079.stdout:(92/94): python3-xmlsec-1.3.13-1.el9.x86_64.rpm 629 kB/s | 48 kB 00:00 2026-02-18T04:52:01.798 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9. 83/94 2026-02-18T04:52:01.820 INFO:teuthology.orchestra.run.trial079.stdout:(93/94): python3-xmltodict-0.12.0-15.el9.noarch 286 kB/s | 22 kB 00:00 2026-02-18T04:52:01.821 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9 84/94 2026-02-18T04:52:01.822 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 85/94 2026-02-18T04:52:01.846 INFO:teuthology.orchestra.run.trial079.stdout:(94/94): python3-zc-lockfile-2.0-10.el9.noarch. 241 kB/s | 20 kB 00:00 2026-02-18T04:52:01.849 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:01.849 INFO:teuthology.orchestra.run.trial079.stdout:Total 18 MB/s | 101 MB 00:05 2026-02-18T04:52:01.908 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 91/94 2026-02-18T04:52:01.910 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 92/94 2026-02-18T04:52:01.931 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 92/94 2026-02-18T04:52:01.932 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:01.932 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-18T04:52:01.932 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-18T04:52:01.932 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-18T04:52:01.932 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:02.029 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 93/94 2026-02-18T04:52:02.050 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 93/94 2026-02-18T04:52:02.050 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:02.050 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-18T04:52:02.050 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-18T04:52:02.050 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-18T04:52:02.050 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:02.069 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-2:20.2.0-670.gadc19233.el9.x86_64 94/94 2026-02-18T04:52:02.270 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:02.307 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:02.307 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:02.737 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:02.737 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:02.783 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-2:20.2.0-670.gadc19233.el9.x86_64 94/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-2:20.2.0-670.gadc19233.el9.x86_64 1/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 2/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 3/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 4/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 5/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9 6/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 7/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 8/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 9/94 2026-02-18T04:52:02.784 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 10/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.n 11/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 12/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9. 13/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 14/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : cephadm-2:20.2.0-670.gadc19233.el9.noarch 15/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : cryptsetup-2.8.1-2.el9.x86_64 16/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 17/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 18/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 19/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 20/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 21/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 22/94 2026-02-18T04:52:02.785 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-ply-3.11-14.el9.noarch 23/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 24/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 25/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 26/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : unzip-6.0-59.el9.x86_64 27/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : zip-3.0-35.el9.x86_64 28/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 29/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 30/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 31/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 32/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : lua-5.4.4-4.el9.x86_64 33/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 34/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 35/94 2026-02-18T04:52:02.786 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 36/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 37/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-devel-3.9.25-2.el9.x86_64 38/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 39/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 40/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 41/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 42/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 43/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 44/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 45/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 46/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 47/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 48/94 2026-02-18T04:52:02.787 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 49/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 50/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 51/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 52/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 53/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 54/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 55/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 56/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 57/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 58/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 59/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 60/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 61/94 2026-02-18T04:52:02.788 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 62/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 63/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 64/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 65/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 66/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 67/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 68/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 69/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 70/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 71/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 72/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 73/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 74/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 75/94 2026-02-18T04:52:02.789 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 76/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 77/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 78/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 79/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 80/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 81/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 82/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 83/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 84/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 85/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 86/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 87/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 88/94 2026-02-18T04:52:02.790 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 89/94 2026-02-18T04:52:02.791 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 90/94 2026-02-18T04:52:02.791 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 91/94 2026-02-18T04:52:02.791 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 92/94 2026-02-18T04:52:02.791 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 93/94 2026-02-18T04:52:02.847 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 94/94 2026-02-18T04:52:02.847 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:02.847 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:02.847 INFO:teuthology.orchestra.run.trial191.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-18T04:52:02.847 INFO:teuthology.orchestra.run.trial191.stdout: ceph-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:02.847 INFO:teuthology.orchestra.run.trial191.stdout: ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-diskprediction-local-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.848 INFO:teuthology.orchestra.run.trial191.stdout: ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: cephadm-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: cryptsetup-2.8.1-2.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: lua-5.4.4-4.el9.x86_64 2026-02-18T04:52:02.849 INFO:teuthology.orchestra.run.trial191.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-18T04:52:02.850 INFO:teuthology.orchestra.run.trial191.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-devel-3.9.25-2.el9.x86_64 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-18T04:52:02.851 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-18T04:52:02.852 INFO:teuthology.orchestra.run.trial191.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-ply-3.11-14.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-18T04:52:02.853 INFO:teuthology.orchestra.run.trial191.stdout: python3-saml-1.16.0-1.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: unzip-6.0-59.el9.x86_64 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-02-18T04:52:02.854 INFO:teuthology.orchestra.run.trial191.stdout: zip-3.0-35.el9.x86_64 2026-02-18T04:52:02.855 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:02.855 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:02.904 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-base 2026-02-18T04:52:02.977 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 85/94 2026-02-18T04:52:02.982 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 86/94 2026-02-18T04:52:03.191 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:03.194 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/94 2026-02-18T04:52:03.198 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/94 2026-02-18T04:52:03.214 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:32 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:03.219 INFO:teuthology.orchestra.run.trial079.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 3/94 2026-02-18T04:52:03.230 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 4/94 2026-02-18T04:52:03.264 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-packaging-20.9-5.el9.noarch 5/94 2026-02-18T04:52:03.274 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 6/94 2026-02-18T04:52:03.279 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:03.279 INFO:teuthology.orchestra.run.trial079.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 7/94 2026-02-18T04:52:03.281 INFO:teuthology.orchestra.run.trial079.stdout: Installing : lua-5.4.4-4.el9.x86_64 8/94 2026-02-18T04:52:03.286 INFO:teuthology.orchestra.run.trial079.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 9/94 2026-02-18T04:52:03.296 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:03.297 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:03.297 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:03.309 INFO:teuthology.orchestra.run.trial079.stdout: Installing : unzip-6.0-59.el9.x86_64 10/94 2026-02-18T04:52:03.319 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install cephadm 2026-02-18T04:52:03.322 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 11/94 2026-02-18T04:52:03.325 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 12/94 2026-02-18T04:52:03.331 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 13/94 2026-02-18T04:52:03.333 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 14/94 2026-02-18T04:52:03.344 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 15/94 2026-02-18T04:52:03.350 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 16/94 2026-02-18T04:52:03.374 INFO:teuthology.orchestra.run.trial079.stdout: Installing : zip-3.0-35.el9.x86_64 17/94 2026-02-18T04:52:03.378 INFO:teuthology.orchestra.run.trial079.stdout: Installing : luarocks-3.9.2-5.el9.noarch 18/94 2026-02-18T04:52:03.385 INFO:teuthology.orchestra.run.trial079.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 19/94 2026-02-18T04:52:03.436 INFO:teuthology.orchestra.run.trial079.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 20/94 2026-02-18T04:52:03.438 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 86/94 2026-02-18T04:52:03.439 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 87/94 2026-02-18T04:52:03.449 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 21/94 2026-02-18T04:52:03.451 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-rsa-4.9-2.el9.noarch 22/94 2026-02-18T04:52:03.453 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 87/94 2026-02-18T04:52:03.454 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 88/94 2026-02-18T04:52:03.456 INFO:teuthology.orchestra.run.trial079.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 23/94 2026-02-18T04:52:03.461 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 24/94 2026-02-18T04:52:03.466 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 25/94 2026-02-18T04:52:03.469 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 26/94 2026-02-18T04:52:03.484 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 27/94 2026-02-18T04:52:03.488 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 28/94 2026-02-18T04:52:03.494 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 29/94 2026-02-18T04:52:03.505 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 30/94 2026-02-18T04:52:03.511 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 88/94 2026-02-18T04:52:03.514 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 31/94 2026-02-18T04:52:03.520 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 32/94 2026-02-18T04:52:03.540 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 33/94 2026-02-18T04:52:03.551 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 34/94 2026-02-18T04:52:03.555 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.n 89/94 2026-02-18T04:52:03.556 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 90/94 2026-02-18T04:52:03.567 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 35/94 2026-02-18T04:52:03.572 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 36/94 2026-02-18T04:52:03.577 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 90/94 2026-02-18T04:52:03.578 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:03.578 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-18T04:52:03.578 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-18T04:52:03.578 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-18T04:52:03.578 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:03.579 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 37/94 2026-02-18T04:52:03.591 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 91/94 2026-02-18T04:52:03.620 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 38/94 2026-02-18T04:52:03.629 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:32 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:03.693 INFO:teuthology.orchestra.run.trial191.stdout:Package cephadm-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:03.711 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:03.712 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:03.712 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:03.733 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-immutable-object-cache 2026-02-18T04:52:03.817 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 91/94 2026-02-18T04:52:03.819 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 92/94 2026-02-18T04:52:03.841 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 92/94 2026-02-18T04:52:03.841 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:03.841 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-18T04:52:03.842 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-18T04:52:03.842 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-18T04:52:03.842 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:03.943 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 93/94 2026-02-18T04:52:03.948 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 39/94 2026-02-18T04:52:03.958 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 40/94 2026-02-18T04:52:03.962 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 41/94 2026-02-18T04:52:03.963 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 93/94 2026-02-18T04:52:03.963 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:03.963 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-18T04:52:03.964 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-18T04:52:03.964 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-18T04:52:03.964 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:03.967 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 42/94 2026-02-18T04:52:03.969 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 43/94 2026-02-18T04:52:03.982 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-2:20.2.0-670.gadc19233.el9.x86_64 94/94 2026-02-18T04:52:03.998 INFO:teuthology.orchestra.run.trial079.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 44/94 2026-02-18T04:52:04.040 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:33 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:04.042 INFO:teuthology.orchestra.run.trial079.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 45/94 2026-02-18T04:52:04.049 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 46/94 2026-02-18T04:52:04.052 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 47/94 2026-02-18T04:52:04.058 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 48/94 2026-02-18T04:52:04.062 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 49/94 2026-02-18T04:52:04.069 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 50/94 2026-02-18T04:52:04.072 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 51/94 2026-02-18T04:52:04.101 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 52/94 2026-02-18T04:52:04.111 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 53/94 2026-02-18T04:52:04.117 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 54/94 2026-02-18T04:52:04.124 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:04.124 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:04.124 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repo Size 2026-02-18T04:52:04.124 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:04.124 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-670.gadc19233.el9 ceph 154 k 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 154 k 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 447 k 2026-02-18T04:52:04.125 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:04.126 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 55/94 2026-02-18T04:52:04.160 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 56/94 2026-02-18T04:52:04.219 INFO:teuthology.orchestra.run.trial191.stdout:ceph-immutable-object-cache-20.2.0-670.gadc1923 1.6 MB/s | 154 kB 00:00 2026-02-18T04:52:04.220 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:04.220 INFO:teuthology.orchestra.run.trial191.stdout:Total 1.6 MB/s | 154 kB 00:00 2026-02-18T04:52:04.220 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:04.224 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:04.224 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:04.255 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:04.255 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:04.310 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:04.312 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:04.333 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:04.333 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:04.333 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-18T04:52:04.333 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:04.386 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-devel-3.9.25-2.el9.x86_64 57/94 2026-02-18T04:52:04.410 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 58/94 2026-02-18T04:52:04.414 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 59/94 2026-02-18T04:52:04.472 INFO:teuthology.orchestra.run.trial079.stdout: Installing : openblas-0.3.29-1.el9.x86_64 60/94 2026-02-18T04:52:04.474 INFO:teuthology.orchestra.run.trial079.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 61/94 2026-02-18T04:52:04.495 INFO:teuthology.orchestra.run.trial079.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 62/94 2026-02-18T04:52:04.636 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:04.636 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:04.636 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:04.636 INFO:teuthology.orchestra.run.trial191.stdout: ceph-immutable-object-cache-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:04.636 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:04.636 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:04.662 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-mgr 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-2:20.2.0-670.gadc19233.el9.x86_64 94/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-2:20.2.0-670.gadc19233.el9.x86_64 1/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 2/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 3/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 4/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 5/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9 6/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 7/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 8/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 9/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 10/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.n 11/94 2026-02-18T04:52:04.666 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 12/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9. 13/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 14/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : cephadm-2:20.2.0-670.gadc19233.el9.noarch 15/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : cryptsetup-2.8.1-2.el9.x86_64 16/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 17/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 18/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 19/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 20/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 21/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 22/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-ply-3.11-14.el9.noarch 23/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 24/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 25/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 26/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : unzip-6.0-59.el9.x86_64 27/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : zip-3.0-35.el9.x86_64 28/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 29/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 30/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 31/94 2026-02-18T04:52:04.667 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 32/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : lua-5.4.4-4.el9.x86_64 33/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 34/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 35/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 36/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 37/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-devel-3.9.25-2.el9.x86_64 38/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 39/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 40/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 41/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 42/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 43/94 2026-02-18T04:52:04.669 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 44/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 45/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 46/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 47/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 48/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 49/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 50/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 51/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 52/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 53/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 54/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 55/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 56/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 57/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 58/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 59/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 60/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 61/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 62/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 63/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 64/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 65/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 66/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 67/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 68/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 69/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 70/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 71/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 72/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 73/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 74/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 75/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 76/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 77/94 2026-02-18T04:52:04.670 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 78/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 79/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 80/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 81/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 82/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 83/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 84/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 85/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 86/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 87/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 88/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 89/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 90/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 91/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 92/94 2026-02-18T04:52:04.671 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 93/94 2026-02-18T04:52:04.737 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 94/94 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: ceph-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.738 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-diskprediction-local-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: cephadm-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: cryptsetup-2.8.1-2.el9.x86_64 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-18T04:52:04.739 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: lua-5.4.4-4.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-18T04:52:04.740 INFO:teuthology.orchestra.run.trial197.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-18T04:52:04.741 INFO:teuthology.orchestra.run.trial197.stdout: python3-devel-3.9.25-2.el9.x86_64 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-18T04:52:04.742 INFO:teuthology.orchestra.run.trial197.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-ply-3.11-14.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-18T04:52:04.743 INFO:teuthology.orchestra.run.trial197.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-saml-1.16.0-1.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-18T04:52:04.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: unzip-6.0-59.el9.x86_64 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: zip-3.0-35.el9.x86_64 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:04.745 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:04.796 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-base 2026-02-18T04:52:04.823 INFO:teuthology.orchestra.run.trial079.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 63/94 2026-02-18T04:52:04.897 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 64/94 2026-02-18T04:52:04.976 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:33 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:05.041 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:05.058 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:05.059 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:05.059 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:05.081 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-mgr-dashboard 2026-02-18T04:52:05.111 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:33 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:05.177 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:05.195 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:05.196 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:05.196 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:05.217 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install cephadm 2026-02-18T04:52:05.389 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:34 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:05.454 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:05.472 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:05.473 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:05.473 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:05.494 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-18T04:52:05.528 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:33 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:05.575 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 65/94 2026-02-18T04:52:05.592 INFO:teuthology.orchestra.run.trial197.stdout:Package cephadm-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:05.595 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 66/94 2026-02-18T04:52:05.609 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-ply-3.11-14.el9.noarch 67/94 2026-02-18T04:52:05.610 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:05.611 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:05.611 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:05.624 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 68/94 2026-02-18T04:52:05.632 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-immutable-object-cache 2026-02-18T04:52:05.701 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 69/94 2026-02-18T04:52:05.710 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 70/94 2026-02-18T04:52:05.733 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 71/94 2026-02-18T04:52:05.763 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 72/94 2026-02-18T04:52:05.806 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:34 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:05.815 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 73/94 2026-02-18T04:52:05.821 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 74/94 2026-02-18T04:52:05.824 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 75/94 2026-02-18T04:52:05.825 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 76/94 2026-02-18T04:52:05.842 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:52:05.842 INFO:teuthology.orchestra.run.trial079.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-18T04:52:05.842 INFO:teuthology.orchestra.run.trial079.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-18T04:52:05.843 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:05.850 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:52:05.873 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-mgr-diskprediction-local-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:05.875 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 77/94 2026-02-18T04:52:05.875 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-18T04:52:05.875 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:05.890 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:05.891 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:05.891 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:05.910 INFO:teuthology.orchestra.run.trial079.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 78/94 2026-02-18T04:52:05.912 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-mgr-rook 2026-02-18T04:52:05.942 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:33 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:05.973 INFO:teuthology.orchestra.run.trial079.stdout: Installing : cryptsetup-2.8.1-2.el9.x86_64 79/94 2026-02-18T04:52:05.975 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 80/94 2026-02-18T04:52:05.988 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 80/94 2026-02-18T04:52:05.989 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:05.989 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-18T04:52:05.989 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:06.024 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-670.gadc19233.el9 ceph 154 k 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 154 k 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 447 k 2026-02-18T04:52:06.025 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:06.111 INFO:teuthology.orchestra.run.trial197.stdout:ceph-immutable-object-cache-20.2.0-670.gadc1923 1.8 MB/s | 154 kB 00:00 2026-02-18T04:52:06.112 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:06.112 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-18T04:52:06.112 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:06.118 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:06.118 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:06.148 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:06.149 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:06.205 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:06.206 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:06.216 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:06.229 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:06.229 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:06.229 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-18T04:52:06.229 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:06.281 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:06.299 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:06.300 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:06.300 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:06.321 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-mgr-cephadm 2026-02-18T04:52:06.550 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:06.550 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:06.550 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:06.550 INFO:teuthology.orchestra.run.trial197.stdout: ceph-immutable-object-cache-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:06.550 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:06.550 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:06.577 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr 2026-02-18T04:52:06.634 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:06.662 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 81/94 2026-02-18T04:52:06.687 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 81/94 2026-02-18T04:52:06.687 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:06.688 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-18T04:52:06.688 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-18T04:52:06.688 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-18T04:52:06.688 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:06.698 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:06.718 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:06.719 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:06.719 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:06.740 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-fuse 2026-02-18T04:52:06.748 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: cephadm-2:20.2.0-670.gadc19233.el9.noarch 82/94 2026-02-18T04:52:06.750 INFO:teuthology.orchestra.run.trial079.stdout: Installing : cephadm-2:20.2.0-670.gadc19233.el9.noarch 82/94 2026-02-18T04:52:06.757 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9. 83/94 2026-02-18T04:52:06.781 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9 84/94 2026-02-18T04:52:06.782 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 85/94 2026-02-18T04:52:06.896 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:34 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:06.961 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:06.979 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:06.980 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:06.980 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:07.001 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-dashboard 2026-02-18T04:52:07.052 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:36 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:07.135 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout: ceph-fuse x86_64 2:20.2.0-670.gadc19233.el9 ceph 942 k 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:07.137 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:07.138 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:07.138 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:07.138 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:07.138 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 942 k 2026-02-18T04:52:07.138 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 2.7 M 2026-02-18T04:52:07.138 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:07.254 INFO:teuthology.orchestra.run.trial191.stdout:ceph-fuse-20.2.0-670.gadc19233.el9.x86_64.rpm 7.8 MB/s | 942 kB 00:00 2026-02-18T04:52:07.255 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:07.255 INFO:teuthology.orchestra.run.trial191.stdout:Total 7.7 MB/s | 942 kB 00:00 2026-02-18T04:52:07.255 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:07.260 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:07.260 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:07.294 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:07.294 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:07.305 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:07.370 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:07.384 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:07.388 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:07.388 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:07.388 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:07.401 INFO:teuthology.orchestra.run.trial191.stdout: Installing : ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:07.409 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-18T04:52:07.609 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:07.666 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:07.666 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:07.667 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:07.667 INFO:teuthology.orchestra.run.trial191.stdout: ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:07.667 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:07.667 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:07.695 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install ceph-volume 2026-02-18T04:52:07.719 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:07.784 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-mgr-diskprediction-local-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:07.802 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:07.803 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:07.803 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:07.824 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-rook 2026-02-18T04:52:07.929 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 85/94 2026-02-18T04:52:07.934 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 86/94 2026-02-18T04:52:08.006 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:37 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:08.070 INFO:teuthology.orchestra.run.trial191.stdout:Package ceph-volume-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:08.087 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:08.088 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:08.088 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:08.109 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install librados-devel 2026-02-18T04:52:08.135 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:36 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:08.199 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:08.216 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:08.217 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:08.217 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:08.238 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-cephadm 2026-02-18T04:52:08.388 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 86/94 2026-02-18T04:52:08.388 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 87/94 2026-02-18T04:52:08.403 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 87/94 2026-02-18T04:52:08.403 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 88/94 2026-02-18T04:52:08.423 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:37 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:08.461 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 88/94 2026-02-18T04:52:08.504 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.n 89/94 2026-02-18T04:52:08.505 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 90/94 2026-02-18T04:52:08.509 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:08.509 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repo Size 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout: librados-devel x86_64 2:20.2.0-670.gadc19233.el9 ceph 126 k 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:08.510 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 126 k 2026-02-18T04:52:08.511 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 449 k 2026-02-18T04:52:08.511 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:08.527 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 90/94 2026-02-18T04:52:08.527 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:08.527 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-18T04:52:08.527 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-18T04:52:08.527 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-18T04:52:08.528 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:08.541 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 91/94 2026-02-18T04:52:08.547 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:36 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:08.594 INFO:teuthology.orchestra.run.trial191.stdout:librados-devel-20.2.0-670.gadc19233.el9.x86_64. 1.5 MB/s | 126 kB 00:00 2026-02-18T04:52:08.594 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:08.595 INFO:teuthology.orchestra.run.trial191.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-18T04:52:08.595 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:08.597 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:08.597 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:08.613 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:08.629 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:08.629 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:08.631 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:08.632 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:08.632 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:08.653 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-fuse 2026-02-18T04:52:08.684 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:08.701 INFO:teuthology.orchestra.run.trial191.stdout: Installing : librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:08.769 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 91/94 2026-02-18T04:52:08.770 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 92/94 2026-02-18T04:52:08.778 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:08.792 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 92/94 2026-02-18T04:52:08.792 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:08.792 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-18T04:52:08.792 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-18T04:52:08.792 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-18T04:52:08.792 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:08.835 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:08.835 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:08.835 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:08.835 INFO:teuthology.orchestra.run.trial191.stdout: librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:08.835 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:08.835 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:08.863 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install libcephfs2 2026-02-18T04:52:08.890 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 93/94 2026-02-18T04:52:08.911 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 93/94 2026-02-18T04:52:08.911 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:08.911 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-18T04:52:08.911 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-18T04:52:08.911 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-18T04:52:08.912 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:08.929 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-2:20.2.0-670.gadc19233.el9.x86_64 94/94 2026-02-18T04:52:08.960 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:36 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:09.042 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:09.043 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:09.043 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:09.043 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:09.043 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout: ceph-fuse x86_64 2:20.2.0-670.gadc19233.el9 ceph 942 k 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 942 k 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 2.7 M 2026-02-18T04:52:09.044 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:09.161 INFO:teuthology.orchestra.run.trial197.stdout:ceph-fuse-20.2.0-670.gadc19233.el9.x86_64.rpm 7.9 MB/s | 942 kB 00:00 2026-02-18T04:52:09.161 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:09.161 INFO:teuthology.orchestra.run.trial197.stdout:Total 7.8 MB/s | 942 kB 00:00 2026-02-18T04:52:09.161 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:09.166 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:09.166 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:09.171 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:09.200 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:09.200 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:09.235 INFO:teuthology.orchestra.run.trial191.stdout:Package libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:09.253 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:09.253 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:09.253 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:09.275 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install libcephfs-devel 2026-02-18T04:52:09.292 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:09.309 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:09.550 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:09.583 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:09.607 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:09.607 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:09.607 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:09.607 INFO:teuthology.orchestra.run.trial197.stdout: ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.607 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:09.607 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:09.629 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-2:20.2.0-670.gadc19233.el9.x86_64 94/94 2026-02-18T04:52:09.629 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-2:20.2.0-670.gadc19233.el9.x86_64 1/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 2/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 3/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 4/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 5/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9 6/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 7/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noar 8/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-670.gadc192 9/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noar 10/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.n 11/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 12/94 2026-02-18T04:52:09.630 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9. 13/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 14/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : cephadm-2:20.2.0-670.gadc19233.el9.noarch 15/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : cryptsetup-2.8.1-2.el9.x86_64 16/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 17/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 18/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 19/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 20/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 21/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 22/94 2026-02-18T04:52:09.631 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-ply-3.11-14.el9.noarch 23/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 24/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 25/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 26/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : unzip-6.0-59.el9.x86_64 27/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : zip-3.0-35.el9.x86_64 28/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 29/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 30/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 31/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 32/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : lua-5.4.4-4.el9.x86_64 33/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 34/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 35/94 2026-02-18T04:52:09.632 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 36/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 37/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-devel-3.9.25-2.el9.x86_64 38/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 39/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 40/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 41/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 42/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 43/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 44/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 45/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 46/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 47/94 2026-02-18T04:52:09.633 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 48/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 49/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 50/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 51/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 52/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 53/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 54/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 55/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 56/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 57/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 58/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 59/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 60/94 2026-02-18T04:52:09.634 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 61/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 62/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 63/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 64/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 65/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 66/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 67/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 68/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 69/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 70/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 71/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 72/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 73/94 2026-02-18T04:52:09.635 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 74/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 75/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 76/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 77/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 78/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 79/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 80/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 81/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 82/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 83/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 84/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 85/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 86/94 2026-02-18T04:52:09.636 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 87/94 2026-02-18T04:52:09.637 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 88/94 2026-02-18T04:52:09.637 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 89/94 2026-02-18T04:52:09.637 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 90/94 2026-02-18T04:52:09.637 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 91/94 2026-02-18T04:52:09.637 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 92/94 2026-02-18T04:52:09.637 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 93/94 2026-02-18T04:52:09.638 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-volume 2026-02-18T04:52:09.666 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:09.667 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:09.667 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repo Size 2026-02-18T04:52:09.667 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:09.667 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:09.667 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs-devel x86_64 2:20.2.0-670.gadc19233.el9 ceph 34 k 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 34 k 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 155 k 2026-02-18T04:52:09.668 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 94/94 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout: ceph-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout: ceph-grafana-dashboards-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.692 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mds-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-diskprediction-local-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-k8sevents-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-modules-core-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-mon-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-osd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-prometheus-alerts-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: ceph-volume-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.693 INFO:teuthology.orchestra.run.trial079.stdout: cephadm-2:20.2.0-670.gadc19233.el9.noarch 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: cryptsetup-2.8.1-2.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-18T04:52:09.694 INFO:teuthology.orchestra.run.trial079.stdout: lua-5.4.4-4.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-18T04:52:09.695 INFO:teuthology.orchestra.run.trial079.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-devel-3.9.25-2.el9.x86_64 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-18T04:52:09.696 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-02-18T04:52:09.697 INFO:teuthology.orchestra.run.trial079.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-ply-3.11-14.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-18T04:52:09.698 INFO:teuthology.orchestra.run.trial079.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-saml-1.16.0-1.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-18T04:52:09.699 INFO:teuthology.orchestra.run.trial079.stdout: unzip-6.0-59.el9.x86_64 2026-02-18T04:52:09.700 INFO:teuthology.orchestra.run.trial079.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-02-18T04:52:09.700 INFO:teuthology.orchestra.run.trial079.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-02-18T04:52:09.700 INFO:teuthology.orchestra.run.trial079.stdout: zip-3.0-35.el9.x86_64 2026-02-18T04:52:09.700 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:09.700 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:09.729 INFO:teuthology.orchestra.run.trial191.stdout:libcephfs-devel-20.2.0-670.gadc19233.el9.x86_64 549 kB/s | 34 kB 00:00 2026-02-18T04:52:09.730 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:09.730 INFO:teuthology.orchestra.run.trial191.stdout:Total 542 kB/s | 34 kB 00:00 2026-02-18T04:52:09.730 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:09.732 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:09.732 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:09.734 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:09.734 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:09.749 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-base 2026-02-18T04:52:09.756 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:09.772 INFO:teuthology.orchestra.run.trial191.stdout: Installing : libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:09.830 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:09.887 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:09.887 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:09.887 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:09.887 INFO:teuthology.orchestra.run.trial191.stdout: libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:09.887 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:09.887 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:09.915 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install librados2 2026-02-18T04:52:09.954 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:37 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:10.019 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-volume-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:10.037 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:10.038 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:10.038 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:10.060 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install librados-devel 2026-02-18T04:52:10.063 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:10.127 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-base-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:10.145 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:10.145 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:10.146 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:10.167 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install cephadm 2026-02-18T04:52:10.225 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:39 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:10.289 INFO:teuthology.orchestra.run.trial191.stdout:Package librados2-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:10.307 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:10.307 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:10.307 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:10.329 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install librbd1 2026-02-18T04:52:10.372 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:10.454 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:10.455 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:10.455 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-18T04:52:10.455 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:10.455 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout: librados-devel x86_64 2:20.2.0-670.gadc19233.el9 ceph 126 k 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 126 k 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 449 k 2026-02-18T04:52:10.456 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:10.476 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:10.541 INFO:teuthology.orchestra.run.trial197.stdout:librados-devel-20.2.0-670.gadc19233.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-18T04:52:10.542 INFO:teuthology.orchestra.run.trial079.stdout:Package cephadm-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:10.542 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:10.542 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-18T04:52:10.543 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:10.544 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:10.544 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:10.559 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:10.560 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:10.560 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:10.576 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:10.576 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:10.582 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-immutable-object-cache 2026-02-18T04:52:10.630 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:10.636 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:39 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:10.647 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:10.700 INFO:teuthology.orchestra.run.trial191.stdout:Package librbd1-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:10.718 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:10.718 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:10.718 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:10.732 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:10.740 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install python3-rados 2026-02-18T04:52:10.790 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:10.790 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:10.790 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:10.790 INFO:teuthology.orchestra.run.trial197.stdout: librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:10.790 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:10.790 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:10.819 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install libcephfs2 2026-02-18T04:52:10.887 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:35 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:10.970 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:10.970 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:10.970 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repo Size 2026-02-18T04:52:10.970 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:10.970 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-670.gadc19233.el9 ceph 154 k 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 154 k 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 447 k 2026-02-18T04:52:10.971 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:11.050 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:40 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:11.055 INFO:teuthology.orchestra.run.trial079.stdout:ceph-immutable-object-cache-20.2.0-670.gadc1923 1.8 MB/s | 154 kB 00:00 2026-02-18T04:52:11.055 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:11.056 INFO:teuthology.orchestra.run.trial079.stdout:Total 1.8 MB/s | 154 kB 00:00 2026-02-18T04:52:11.056 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:11.060 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:11.060 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:11.092 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:11.092 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:11.113 INFO:teuthology.orchestra.run.trial191.stdout:Package python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:11.131 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:11.132 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:11.132 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:11.137 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:39 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:11.148 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:11.150 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:11.154 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install python3-rgw 2026-02-18T04:52:11.172 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:11.172 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:11.172 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-18T04:52:11.172 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:11.201 INFO:teuthology.orchestra.run.trial197.stdout:Package libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:11.219 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:11.219 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:11.219 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:11.240 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install libcephfs-devel 2026-02-18T04:52:11.443 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-670.gadc19233.e 1/1 2026-02-18T04:52:11.444 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:11.444 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:11.444 INFO:teuthology.orchestra.run.trial079.stdout: ceph-immutable-object-cache-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:11.444 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:11.444 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:11.461 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:40 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:11.470 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-mgr 2026-02-18T04:52:11.526 INFO:teuthology.orchestra.run.trial191.stdout:Package python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:11.544 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:11.544 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:11.545 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:11.553 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:39 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:11.565 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install python3-cephfs 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-devel x86_64 2:20.2.0-670.gadc19233.el9 ceph 34 k 2026-02-18T04:52:11.638 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 34 k 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 155 k 2026-02-18T04:52:11.639 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:11.700 INFO:teuthology.orchestra.run.trial197.stdout:libcephfs-devel-20.2.0-670.gadc19233.el9.x86_64 549 kB/s | 34 kB 00:00 2026-02-18T04:52:11.701 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:11.701 INFO:teuthology.orchestra.run.trial197.stdout:Total 541 kB/s | 34 kB 00:00 2026-02-18T04:52:11.701 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:11.703 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:11.703 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:11.705 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:11.705 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:11.727 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:11.743 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:11.783 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:36 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:11.800 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:11.847 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-mgr-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:11.858 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:11.858 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:11.858 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:11.858 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:11.858 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:11.858 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:11.865 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:11.866 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:11.866 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:11.875 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:40 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:11.886 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install librados2 2026-02-18T04:52:11.888 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-mgr-dashboard 2026-02-18T04:52:11.940 INFO:teuthology.orchestra.run.trial191.stdout:Package python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:11.958 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:11.959 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:11.959 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:11.980 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install python3-rbd 2026-02-18T04:52:12.197 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:37 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:12.200 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:40 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:12.261 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-mgr-dashboard-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:12.265 INFO:teuthology.orchestra.run.trial197.stdout:Package librados2-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:12.279 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:12.280 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:12.280 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:12.282 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:12.283 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:12.283 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:12.288 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:12.301 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-18T04:52:12.305 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install librbd1 2026-02-18T04:52:12.352 INFO:teuthology.orchestra.run.trial191.stdout:Package python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:12.370 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:12.370 INFO:teuthology.orchestra.run.trial191.stdout:Nothing to do. 2026-02-18T04:52:12.371 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:12.392 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install rbd-fuse 2026-02-18T04:52:12.611 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:40 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:12.617 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:37 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:12.677 INFO:teuthology.orchestra.run.trial197.stdout:Package librbd1-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:12.681 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-mgr-diskprediction-local-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:12.695 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:12.695 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:12.695 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:12.699 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:12.700 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:12.700 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:12.701 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:12.717 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-rados 2026-02-18T04:52:12.721 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-mgr-rook 2026-02-18T04:52:12.783 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout: rbd-fuse x86_64 2:20.2.0-670.gadc19233.el9 ceph 91 k 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:12.784 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:12.785 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:12.785 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:12.785 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 91 k 2026-02-18T04:52:12.785 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 238 k 2026-02-18T04:52:12.785 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:12.857 INFO:teuthology.orchestra.run.trial191.stdout:rbd-fuse-20.2.0-670.gadc19233.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-18T04:52:12.857 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:12.857 INFO:teuthology.orchestra.run.trial191.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-18T04:52:12.858 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:12.861 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:12.861 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:12.892 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:12.893 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:12.945 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:12.961 INFO:teuthology.orchestra.run.trial191.stdout: Installing : rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:13.026 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:13.027 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:13.037 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:13.089 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:13.091 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-mgr-rook-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:13.094 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:13.094 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:13.094 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:13.095 INFO:teuthology.orchestra.run.trial191.stdout: rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:13.095 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:13.095 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:13.107 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:13.108 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:13.108 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:13.108 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:13.109 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:13.109 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:13.123 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install rbd-mirror 2026-02-18T04:52:13.129 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-rgw 2026-02-18T04:52:13.130 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-mgr-cephadm 2026-02-18T04:52:13.435 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:42 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:13.436 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:13.448 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:13.501 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:13.513 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-mgr-cephadm-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:13.517 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:13.518 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:13.518 INFO:teuthology.orchestra.run.trial191.stdout: Package Arch Version Repo Size 2026-02-18T04:52:13.518 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout: rbd-mirror x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.9 M 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 2.9 M 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 11 M 2026-02-18T04:52:13.519 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:13.520 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:13.520 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:13.520 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:13.531 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:13.531 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:13.531 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:13.541 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-cephfs 2026-02-18T04:52:13.554 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-fuse 2026-02-18T04:52:13.664 INFO:teuthology.orchestra.run.trial191.stdout:rbd-mirror-20.2.0-670.gadc19233.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-18T04:52:13.665 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:13.665 INFO:teuthology.orchestra.run.trial191.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-18T04:52:13.665 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:13.670 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:13.670 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:13.710 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:13.710 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:13.852 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:13.862 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:38 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:13.889 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:13.891 INFO:teuthology.orchestra.run.trial191.stdout: Installing : rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:13.913 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:13.914 INFO:teuthology.orchestra.run.trial191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:13.914 INFO:teuthology.orchestra.run.trial191.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-18T04:52:13.914 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-18T04:52:13.914 INFO:teuthology.orchestra.run.trial191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-18T04:52:13.914 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:13.918 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:13.936 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:13.936 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:13.936 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:13.944 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:13.945 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:13.945 INFO:teuthology.orchestra.run.trial079.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:13.945 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout: ceph-fuse x86_64 2:20.2.0-670.gadc19233.el9 ceph 942 k 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 942 k 2026-02-18T04:52:13.946 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 2.7 M 2026-02-18T04:52:13.947 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:13.958 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-rbd 2026-02-18T04:52:14.065 INFO:teuthology.orchestra.run.trial079.stdout:ceph-fuse-20.2.0-670.gadc19233.el9.x86_64.rpm 7.8 MB/s | 942 kB 00:00 2026-02-18T04:52:14.065 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:14.065 INFO:teuthology.orchestra.run.trial079.stdout:Total 7.7 MB/s | 942 kB 00:00 2026-02-18T04:52:14.065 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:14.070 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:14.070 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:14.103 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:14.103 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:14.193 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:14.211 INFO:teuthology.orchestra.run.trial079.stdout: Installing : ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.227 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.227 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:14.227 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:14.227 INFO:teuthology.orchestra.run.trial191.stdout: rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:14.227 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:14.227 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:14.256 DEBUG:teuthology.orchestra.run.trial191:> sudo yum -y install rbd-nbd 2026-02-18T04:52:14.270 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:42 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:14.334 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:14.352 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:14.353 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-18T04:52:14.353 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:14.375 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install rbd-fuse 2026-02-18T04:52:14.461 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.518 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.518 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:14.518 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:14.518 INFO:teuthology.orchestra.run.trial079.stdout: ceph-fuse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:14.518 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:14.519 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:14.545 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install ceph-volume 2026-02-18T04:52:14.577 INFO:teuthology.orchestra.run.trial191.stdout:Last metadata expiration check: 0:00:43 ago on Wed 18 Feb 2026 04:51:31 AM UTC. 2026-02-18T04:52:14.661 INFO:teuthology.orchestra.run.trial191.stdout:Dependencies resolved. 2026-02-18T04:52:14.662 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:14.662 INFO:teuthology.orchestra.run.trial191.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:14.662 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:14.662 INFO:teuthology.orchestra.run.trial191.stdout:Installing: 2026-02-18T04:52:14.662 INFO:teuthology.orchestra.run.trial191.stdout: rbd-nbd x86_64 2:20.2.0-670.gadc19233.el9 ceph 180 k 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout:Transaction Summary 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout:================================================================================ 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout:Install 1 Package 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout:Total download size: 180 k 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout:Installed size: 498 k 2026-02-18T04:52:14.663 INFO:teuthology.orchestra.run.trial191.stdout:Downloading Packages: 2026-02-18T04:52:14.688 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:42 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:14.748 INFO:teuthology.orchestra.run.trial191.stdout:rbd-nbd-20.2.0-670.gadc19233.el9.x86_64.rpm 2.1 MB/s | 180 kB 00:00 2026-02-18T04:52:14.748 INFO:teuthology.orchestra.run.trial191.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:14.749 INFO:teuthology.orchestra.run.trial191.stdout:Total 2.0 MB/s | 180 kB 00:00 2026-02-18T04:52:14.749 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction check 2026-02-18T04:52:14.753 INFO:teuthology.orchestra.run.trial191.stdout:Transaction check succeeded. 2026-02-18T04:52:14.753 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction test 2026-02-18T04:52:14.770 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout: rbd-fuse x86_64 2:20.2.0-670.gadc19233.el9 ceph 91 k 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:14.771 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:14.772 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 91 k 2026-02-18T04:52:14.772 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 238 k 2026-02-18T04:52:14.772 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:14.784 INFO:teuthology.orchestra.run.trial191.stdout:Transaction test succeeded. 2026-02-18T04:52:14.784 INFO:teuthology.orchestra.run.trial191.stdout:Running transaction 2026-02-18T04:52:14.842 INFO:teuthology.orchestra.run.trial191.stdout: Preparing : 1/1 2026-02-18T04:52:14.844 INFO:teuthology.orchestra.run.trial197.stdout:rbd-fuse-20.2.0-670.gadc19233.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-18T04:52:14.845 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:14.845 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-18T04:52:14.846 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:14.850 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:14.850 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:14.852 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:39 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:14.858 INFO:teuthology.orchestra.run.trial191.stdout: Installing : rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.881 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:14.881 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:14.916 INFO:teuthology.orchestra.run.trial079.stdout:Package ceph-volume-2:20.2.0-670.gadc19233.el9.noarch is already installed. 2026-02-18T04:52:14.933 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:14.934 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:14.934 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:14.936 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:14.942 INFO:teuthology.orchestra.run.trial191.stdout: Running scriptlet: rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.952 INFO:teuthology.orchestra.run.trial197.stdout: Installing : rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:14.955 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install librados-devel 2026-02-18T04:52:15.004 INFO:teuthology.orchestra.run.trial191.stdout: Verifying : rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.004 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:15.004 INFO:teuthology.orchestra.run.trial191.stdout:Installed: 2026-02-18T04:52:15.004 INFO:teuthology.orchestra.run.trial191.stdout: rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:15.005 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:52:15.005 INFO:teuthology.orchestra.run.trial191.stdout:Complete! 2026-02-18T04:52:15.039 DEBUG:teuthology.parallel:result is None 2026-02-18T04:52:15.040 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.094 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.094 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:15.094 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:15.094 INFO:teuthology.orchestra.run.trial197.stdout: rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:15.094 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:15.094 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:15.123 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install rbd-mirror 2026-02-18T04:52:15.268 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:40 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:15.351 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repo Size 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout: librados-devel x86_64 2:20.2.0-670.gadc19233.el9 ceph 126 k 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:15.352 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:15.353 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:15.353 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 126 k 2026-02-18T04:52:15.353 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 449 k 2026-02-18T04:52:15.353 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:15.436 INFO:teuthology.orchestra.run.trial079.stdout:librados-devel-20.2.0-670.gadc19233.el9.x86_64. 1.5 MB/s | 126 kB 00:00 2026-02-18T04:52:15.437 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:15.437 INFO:teuthology.orchestra.run.trial079.stdout:Total 1.5 MB/s | 126 kB 00:00 2026-02-18T04:52:15.437 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:15.437 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:43 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:15.439 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:15.439 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:15.471 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:15.471 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:15.519 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout: rbd-mirror x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.9 M 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:15.520 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:15.521 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 2.9 M 2026-02-18T04:52:15.521 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 11 M 2026-02-18T04:52:15.521 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:15.529 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:15.549 INFO:teuthology.orchestra.run.trial079.stdout: Installing : librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.627 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.664 INFO:teuthology.orchestra.run.trial197.stdout:rbd-mirror-20.2.0-670.gadc19233.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-18T04:52:15.664 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:15.664 INFO:teuthology.orchestra.run.trial197.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-18T04:52:15.665 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:15.670 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:15.670 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:15.685 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.685 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:15.685 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:15.685 INFO:teuthology.orchestra.run.trial079.stdout: librados-devel-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:15.685 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:15.685 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:15.709 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:15.709 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:15.712 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install libcephfs2 2026-02-18T04:52:15.893 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:15.894 INFO:teuthology.orchestra.run.trial197.stdout: Installing : rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.917 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:15.917 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:15.917 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-18T04:52:15.917 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-18T04:52:15.917 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-18T04:52:15.917 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.018 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:16.082 INFO:teuthology.orchestra.run.trial079.stdout:Package libcephfs2-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:16.100 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:16.100 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:16.100 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:16.121 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install libcephfs-devel 2026-02-18T04:52:16.227 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.227 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.227 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:16.227 INFO:teuthology.orchestra.run.trial197.stdout: rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:16.227 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.227 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:16.256 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install rbd-nbd 2026-02-18T04:52:16.433 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:41 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:16.516 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:16.516 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:16.516 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repo Size 2026-02-18T04:52:16.516 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:16.516 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs-devel x86_64 2:20.2.0-670.gadc19233.el9 ceph 34 k 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 34 k 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 155 k 2026-02-18T04:52:16.517 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:16.572 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:44 ago on Wed 18 Feb 2026 04:51:32 AM UTC. 2026-02-18T04:52:16.579 INFO:teuthology.orchestra.run.trial079.stdout:libcephfs-devel-20.2.0-670.gadc19233.el9.x86_64 550 kB/s | 34 kB 00:00 2026-02-18T04:52:16.579 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:16.580 INFO:teuthology.orchestra.run.trial079.stdout:Total 543 kB/s | 34 kB 00:00 2026-02-18T04:52:16.580 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:16.581 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:16.582 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:16.583 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:16.584 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:16.605 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:16.620 INFO:teuthology.orchestra.run.trial079.stdout: Installing : libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.656 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout: rbd-nbd x86_64 2:20.2.0-670.gadc19233.el9 ceph 180 k 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 180 k 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 498 k 2026-02-18T04:52:16.657 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-18T04:52:16.674 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.731 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.731 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:16.731 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:16.731 INFO:teuthology.orchestra.run.trial079.stdout: libcephfs-devel-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:16.731 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:16.731 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:16.742 INFO:teuthology.orchestra.run.trial197.stdout:rbd-nbd-20.2.0-670.gadc19233.el9.x86_64.rpm 2.1 MB/s | 180 kB 00:00 2026-02-18T04:52:16.743 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:16.743 INFO:teuthology.orchestra.run.trial197.stdout:Total 2.1 MB/s | 180 kB 00:00 2026-02-18T04:52:16.743 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-18T04:52:16.748 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-18T04:52:16.748 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-18T04:52:16.759 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install librados2 2026-02-18T04:52:16.779 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-18T04:52:16.779 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-18T04:52:16.836 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-18T04:52:16.853 INFO:teuthology.orchestra.run.trial197.stdout: Installing : rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.933 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.991 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:16.992 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.992 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-18T04:52:16.992 INFO:teuthology.orchestra.run.trial197.stdout: rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:16.992 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:52:16.992 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-18T04:52:17.022 DEBUG:teuthology.parallel:result is None 2026-02-18T04:52:17.071 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:42 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:17.135 INFO:teuthology.orchestra.run.trial079.stdout:Package librados2-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:17.153 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:17.154 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:17.154 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:17.176 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install librbd1 2026-02-18T04:52:17.491 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:42 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:17.555 INFO:teuthology.orchestra.run.trial079.stdout:Package librbd1-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:17.573 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:17.573 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:17.573 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:17.596 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install python3-rados 2026-02-18T04:52:17.903 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:42 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:17.967 INFO:teuthology.orchestra.run.trial079.stdout:Package python3-rados-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:17.985 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:17.986 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:17.986 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:18.007 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install python3-rgw 2026-02-18T04:52:18.319 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:43 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:18.382 INFO:teuthology.orchestra.run.trial079.stdout:Package python3-rgw-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:18.400 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:18.400 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:18.401 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:18.422 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install python3-cephfs 2026-02-18T04:52:18.733 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:43 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:18.797 INFO:teuthology.orchestra.run.trial079.stdout:Package python3-cephfs-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:18.815 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:18.815 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:18.815 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:18.837 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install python3-rbd 2026-02-18T04:52:19.144 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:44 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:19.207 INFO:teuthology.orchestra.run.trial079.stdout:Package python3-rbd-2:20.2.0-670.gadc19233.el9.x86_64 is already installed. 2026-02-18T04:52:19.225 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:19.226 INFO:teuthology.orchestra.run.trial079.stdout:Nothing to do. 2026-02-18T04:52:19.226 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:19.248 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install rbd-fuse 2026-02-18T04:52:19.558 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:44 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:19.640 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout: rbd-fuse x86_64 2:20.2.0-670.gadc19233.el9 ceph 91 k 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:19.641 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:19.642 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:19.642 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:19.642 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 91 k 2026-02-18T04:52:19.642 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 238 k 2026-02-18T04:52:19.642 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:19.714 INFO:teuthology.orchestra.run.trial079.stdout:rbd-fuse-20.2.0-670.gadc19233.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-18T04:52:19.714 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:19.714 INFO:teuthology.orchestra.run.trial079.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-18T04:52:19.714 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:19.718 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:19.718 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:19.750 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:19.750 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:19.802 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:19.819 INFO:teuthology.orchestra.run.trial079.stdout: Installing : rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:19.898 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:19.957 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:19.957 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:19.957 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:19.957 INFO:teuthology.orchestra.run.trial079.stdout: rbd-fuse-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:19.957 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:19.957 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:19.987 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install rbd-mirror 2026-02-18T04:52:20.292 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:45 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:20.374 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout: Package Arch Version Repo Size 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout: rbd-mirror x86_64 2:20.2.0-670.gadc19233.el9 ceph 2.9 M 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:20.375 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:20.376 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:20.376 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:20.376 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 2.9 M 2026-02-18T04:52:20.376 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 11 M 2026-02-18T04:52:20.376 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:20.521 INFO:teuthology.orchestra.run.trial079.stdout:rbd-mirror-20.2.0-670.gadc19233.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-18T04:52:20.522 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:20.522 INFO:teuthology.orchestra.run.trial079.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-18T04:52:20.522 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:20.527 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:20.527 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:20.566 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:20.567 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:20.746 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:20.748 INFO:teuthology.orchestra.run.trial079.stdout: Installing : rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:20.771 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:20.771 INFO:teuthology.orchestra.run.trial079.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-18T04:52:20.771 INFO:teuthology.orchestra.run.trial079.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-18T04:52:20.771 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-18T04:52:20.771 INFO:teuthology.orchestra.run.trial079.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-18T04:52:20.771 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.084 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:21.084 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.084 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:21.084 INFO:teuthology.orchestra.run.trial079.stdout: rbd-mirror-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:21.084 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.084 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:21.111 DEBUG:teuthology.orchestra.run.trial079:> sudo yum -y install rbd-nbd 2026-02-18T04:52:21.421 INFO:teuthology.orchestra.run.trial079.stdout:Last metadata expiration check: 0:00:46 ago on Wed 18 Feb 2026 04:51:35 AM UTC. 2026-02-18T04:52:21.502 INFO:teuthology.orchestra.run.trial079.stdout:Dependencies resolved. 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout: Package Architecture Version Repository Size 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:Installing: 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout: rbd-nbd x86_64 2:20.2.0-670.gadc19233.el9 ceph 180 k 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:Transaction Summary 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:================================================================================ 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:Install 1 Package 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:Total download size: 180 k 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:Installed size: 498 k 2026-02-18T04:52:21.503 INFO:teuthology.orchestra.run.trial079.stdout:Downloading Packages: 2026-02-18T04:52:21.587 INFO:teuthology.orchestra.run.trial079.stdout:rbd-nbd-20.2.0-670.gadc19233.el9.x86_64.rpm 2.1 MB/s | 180 kB 00:00 2026-02-18T04:52:21.587 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:21.587 INFO:teuthology.orchestra.run.trial079.stdout:Total 2.1 MB/s | 180 kB 00:00 2026-02-18T04:52:21.588 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction check 2026-02-18T04:52:21.592 INFO:teuthology.orchestra.run.trial079.stdout:Transaction check succeeded. 2026-02-18T04:52:21.592 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction test 2026-02-18T04:52:21.624 INFO:teuthology.orchestra.run.trial079.stdout:Transaction test succeeded. 2026-02-18T04:52:21.624 INFO:teuthology.orchestra.run.trial079.stdout:Running transaction 2026-02-18T04:52:21.683 INFO:teuthology.orchestra.run.trial079.stdout: Preparing : 1/1 2026-02-18T04:52:21.700 INFO:teuthology.orchestra.run.trial079.stdout: Installing : rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:21.784 INFO:teuthology.orchestra.run.trial079.stdout: Running scriptlet: rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:21.843 INFO:teuthology.orchestra.run.trial079.stdout: Verifying : rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 1/1 2026-02-18T04:52:21.843 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.843 INFO:teuthology.orchestra.run.trial079.stdout:Installed: 2026-02-18T04:52:21.843 INFO:teuthology.orchestra.run.trial079.stdout: rbd-nbd-2:20.2.0-670.gadc19233.el9.x86_64 2026-02-18T04:52:21.843 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:21.843 INFO:teuthology.orchestra.run.trial079.stdout:Complete! 2026-02-18T04:52:21.875 DEBUG:teuthology.parallel:result is None 2026-02-18T04:52:21.875 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:22.020 DEBUG:teuthology.orchestra.run.trial079:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-18T04:52:22.041 INFO:teuthology.orchestra.run.trial079.stdout:20.2.0-670.gadc19233.el9 2026-02-18T04:52:22.042 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-670.gadc19233.el9 2026-02-18T04:52:22.042 INFO:teuthology.task.install:The correct ceph version 20.2.0-670.gadc19233 is installed. 2026-02-18T04:52:22.044 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:22.162 DEBUG:teuthology.orchestra.run.trial191:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-18T04:52:22.182 INFO:teuthology.orchestra.run.trial191.stdout:20.2.0-670.gadc19233.el9 2026-02-18T04:52:22.182 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-670.gadc19233.el9 2026-02-18T04:52:22.182 INFO:teuthology.task.install:The correct ceph version 20.2.0-670.gadc19233 is installed. 2026-02-18T04:52:22.184 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:22.323 DEBUG:teuthology.orchestra.run.trial197:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-18T04:52:22.344 INFO:teuthology.orchestra.run.trial197.stdout:20.2.0-670.gadc19233.el9 2026-02-18T04:52:22.344 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-670.gadc19233.el9 2026-02-18T04:52:22.344 INFO:teuthology.task.install:The correct ceph version 20.2.0-670.gadc19233 is installed. 2026-02-18T04:52:22.346 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-02-18T04:52:22.346 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:22.346 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-18T04:52:22.372 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:52:22.372 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-18T04:52:22.398 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:52:22.398 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-18T04:52:22.421 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-02-18T04:52:22.422 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:22.422 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/usr/bin/daemon-helper 2026-02-18T04:52:22.447 DEBUG:teuthology.orchestra.run.trial079:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-18T04:52:22.514 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:52:22.514 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/usr/bin/daemon-helper 2026-02-18T04:52:22.540 DEBUG:teuthology.orchestra.run.trial191:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-18T04:52:22.604 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:52:22.605 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/usr/bin/daemon-helper 2026-02-18T04:52:22.630 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-18T04:52:22.696 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-02-18T04:52:22.696 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:22.696 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-18T04:52:22.722 DEBUG:teuthology.orchestra.run.trial079:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-18T04:52:22.786 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:52:22.786 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-18T04:52:22.812 DEBUG:teuthology.orchestra.run.trial191:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-18T04:52:22.875 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:52:22.875 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-18T04:52:22.899 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-18T04:52:22.965 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-02-18T04:52:22.965 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:22.965 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/usr/bin/stdin-killer 2026-02-18T04:52:22.988 DEBUG:teuthology.orchestra.run.trial079:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-18T04:52:23.051 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:52:23.051 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/usr/bin/stdin-killer 2026-02-18T04:52:23.075 DEBUG:teuthology.orchestra.run.trial191:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-18T04:52:23.140 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:52:23.140 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/usr/bin/stdin-killer 2026-02-18T04:52:23.165 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-18T04:52:23.231 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-18T04:52:23.361 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'adc1923395f2bcd6ae89b5d331d278364d1848ed'} 2026-02-18T04:52:23.362 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:23.364 INFO:tasks.cephadm:Cluster fsid is 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:23.364 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-18T04:52:23.364 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '10.20.193.79', 'mon.b': '10.20.193.191', 'mon.c': '10.20.193.197'} 2026-02-18T04:52:23.364 INFO:tasks.cephadm:First mon is mon.a on trial079 2026-02-18T04:52:23.364 INFO:tasks.cephadm:First mgr is a 2026-02-18T04:52:23.364 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-18T04:52:23.364 DEBUG:teuthology.orchestra.run.trial079:> sudo hostname $(hostname -s) 2026-02-18T04:52:23.389 DEBUG:teuthology.orchestra.run.trial191:> sudo hostname $(hostname -s) 2026-02-18T04:52:23.415 DEBUG:teuthology.orchestra.run.trial197:> sudo hostname $(hostname -s) 2026-02-18T04:52:23.440 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-18T04:52:23.440 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:23.595 INFO:tasks.cephadm:builder_project result: [{'url': 'https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/', 'ref': '20.2.1_2.17.26-baseline_2', 'sha1': 'adc1923395f2bcd6ae89b5d331d278364d1848ed', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-17 18:19:08.791671', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['x86_64', 'source'], 'extra': {'version': '20.2.0-670-gadc19233', 'package_manager_version': '20.2.0-670.gadc19233', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3038/', 'root_build_cause': '', 'node_name': '10.20.192.26+soko16', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-18T04:52:23.716 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref 20.2.1_2.17.26-baseline_2, sha1 adc1923395f2bcd6ae89b5d331d278364d1848ed from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:23.718 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm 2026-02-18T04:52:23.718 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm 2026-02-18T04:52:23.718 DEBUG:teuthology.orchestra.run.trial079:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:23.981 INFO:teuthology.orchestra.run.trial079.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054179 Feb 18 04:52 /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:23.981 DEBUG:teuthology.orchestra.run.trial191:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.232 INFO:teuthology.orchestra.run.trial191.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054179 Feb 18 04:52 /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.232 DEBUG:teuthology.orchestra.run.trial197:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.514 INFO:teuthology.orchestra.run.trial197.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054179 Feb 18 04:52 /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.514 DEBUG:teuthology.orchestra.run.trial079:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.532 DEBUG:teuthology.orchestra.run.trial191:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.550 DEBUG:teuthology.orchestra.run.trial197:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-18T04:52:24.575 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed on all hosts... 2026-02-18T04:52:24.575 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed pull 2026-02-18T04:52:24.577 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed pull 2026-02-18T04:52:24.592 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed pull 2026-02-18T04:52:24.731 INFO:teuthology.orchestra.run.trial079.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T04:52:24.748 INFO:teuthology.orchestra.run.trial191.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T04:52:24.760 INFO:teuthology.orchestra.run.trial197.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout:{ 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout: "ceph_version": "ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable)", 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout: "image_id": "c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc", 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout: "repo_digests": [ 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c" 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout: ] 2026-02-18T04:52:33.044 INFO:teuthology.orchestra.run.trial191.stdout:} 2026-02-18T04:52:33.089 INFO:teuthology.orchestra.run.trial197.stdout:{ 2026-02-18T04:52:33.089 INFO:teuthology.orchestra.run.trial197.stdout: "ceph_version": "ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable)", 2026-02-18T04:52:33.090 INFO:teuthology.orchestra.run.trial197.stdout: "image_id": "c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc", 2026-02-18T04:52:33.090 INFO:teuthology.orchestra.run.trial197.stdout: "repo_digests": [ 2026-02-18T04:52:33.090 INFO:teuthology.orchestra.run.trial197.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c" 2026-02-18T04:52:33.090 INFO:teuthology.orchestra.run.trial197.stdout: ] 2026-02-18T04:52:33.090 INFO:teuthology.orchestra.run.trial197.stdout:} 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout:{ 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout: "ceph_version": "ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable)", 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout: "image_id": "c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc", 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout: "repo_digests": [ 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c" 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout: ] 2026-02-18T04:52:33.102 INFO:teuthology.orchestra.run.trial079.stdout:} 2026-02-18T04:52:33.122 DEBUG:teuthology.orchestra.run.trial079:> sudo mkdir -p /etc/ceph 2026-02-18T04:52:33.175 DEBUG:teuthology.orchestra.run.trial191:> sudo mkdir -p /etc/ceph 2026-02-18T04:52:33.203 DEBUG:teuthology.orchestra.run.trial197:> sudo mkdir -p /etc/ceph 2026-02-18T04:52:33.231 DEBUG:teuthology.orchestra.run.trial079:> sudo chmod 777 /etc/ceph 2026-02-18T04:52:33.256 DEBUG:teuthology.orchestra.run.trial191:> sudo chmod 777 /etc/ceph 2026-02-18T04:52:33.282 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod 777 /etc/ceph 2026-02-18T04:52:33.307 INFO:tasks.cephadm:Writing seed config... 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-18T04:52:33.309 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-18T04:52:33.310 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-18T04:52:33.311 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:33.311 DEBUG:teuthology.orchestra.run.trial079:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-18T04:52:33.329 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 = 9d405fe5-0c85-11f1-b595-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-18T04:52:33.329 DEBUG:teuthology.orchestra.run.trial079:mon.a> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a.service 2026-02-18T04:52:33.371 DEBUG:teuthology.orchestra.run.trial079:mgr.a> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a.service 2026-02-18T04:52:33.414 INFO:tasks.cephadm:Bootstrapping... 2026-02-18T04:52:33.415 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed -v bootstrap --fsid 9d405fe5-0c85-11f1-b595-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.79 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:52:33.556 INFO:teuthology.orchestra.run.trial079.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:52:33.556 INFO:teuthology.orchestra.run.trial079.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed', '-v', 'bootstrap', '--fsid', '9d405fe5-0c85-11f1-b595-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.79', '--skip-admin-label'] 2026-02-18T04:52:33.556 INFO:teuthology.orchestra.run.trial079.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-18T04:52:33.557 INFO:teuthology.orchestra.run.trial079.stdout:Verifying podman|docker is present... 2026-02-18T04:52:33.573 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stdout 5.6.0 2026-02-18T04:52:33.573 INFO:teuthology.orchestra.run.trial079.stdout:Verifying lvm2 is present... 2026-02-18T04:52:33.573 INFO:teuthology.orchestra.run.trial079.stdout:Verifying time synchronization is in place... 2026-02-18T04:52:33.579 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-18T04:52:33.579 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-18T04:52:33.585 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-18T04:52:33.585 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:33.591 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout enabled 2026-02-18T04:52:33.596 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout active 2026-02-18T04:52:33.597 INFO:teuthology.orchestra.run.trial079.stdout:Unit chronyd.service is enabled and running 2026-02-18T04:52:33.597 INFO:teuthology.orchestra.run.trial079.stdout:Repeating the final host check... 2026-02-18T04:52:33.612 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stdout 5.6.0 2026-02-18T04:52:33.612 INFO:teuthology.orchestra.run.trial079.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-18T04:52:33.612 INFO:teuthology.orchestra.run.trial079.stdout:systemctl is present 2026-02-18T04:52:33.612 INFO:teuthology.orchestra.run.trial079.stdout:lvcreate is present 2026-02-18T04:52:33.617 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-18T04:52:33.617 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-18T04:52:33.623 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-18T04:52:33.623 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:33.629 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout enabled 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout active 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:Unit chronyd.service is enabled and running 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:Host looks OK 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:Cluster fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:Acquiring lock 140117342810896 on /run/cephadm/9d405fe5-0c85-11f1-b595-d404e6e7d460.lock 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:Lock 140117342810896 acquired on /run/cephadm/9d405fe5-0c85-11f1-b595-d404e6e7d460.lock 2026-02-18T04:52:33.636 INFO:teuthology.orchestra.run.trial079.stdout:Verifying IP 10.20.193.79 port 3300 ... 2026-02-18T04:52:33.637 INFO:teuthology.orchestra.run.trial079.stdout:Verifying IP 10.20.193.79 port 6789 ... 2026-02-18T04:52:33.637 INFO:teuthology.orchestra.run.trial079.stdout:Base mon IP(s) is [10.20.193.79:3300, 10.20.193.79:6789], mon addrv is [v2:10.20.193.79:3300,v1:10.20.193.79:6789] 2026-02-18T04:52:33.640 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.79 metric 102 2026-02-18T04:52:33.640 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.79 metric 102 2026-02-18T04:52:33.640 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-18T04:52:33.642 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-18T04:52:33.642 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-18T04:52:33.642 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout inet6 fe80::b0a6:cedf:c234:eac2/64 scope link noprefixroute 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:64d6/64 scope link 2026-02-18T04:52:33.646 INFO:teuthology.orchestra.run.trial079.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-18T04:52:33.647 INFO:teuthology.orchestra.run.trial079.stdout:Mon IP `10.20.193.79` is in CIDR network `10.20.192.0/20` 2026-02-18T04:52:33.647 INFO:teuthology.orchestra.run.trial079.stdout:Mon IP `10.20.193.79` is in CIDR network `10.20.192.0/20` 2026-02-18T04:52:33.647 INFO:teuthology.orchestra.run.trial079.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-18T04:52:33.647 INFO:teuthology.orchestra.run.trial079.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-18T04:52:33.647 INFO:teuthology.orchestra.run.trial079.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T04:52:33.892 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stdout c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc 2026-02-18T04:52:33.892 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T04:52:33.892 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stderr Getting image source signatures 2026-02-18T04:52:33.892 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stderr Copying blob sha256:ddefcddf6ef03d04de1b3dcc9836d89822cd11e5095471fffeae38220180f545 2026-02-18T04:52:33.892 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-18T04:52:33.893 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stderr Copying config sha256:c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc 2026-02-18T04:52:33.893 INFO:teuthology.orchestra.run.trial079.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-18T04:52:34.031 INFO:teuthology.orchestra.run.trial079.stdout:ceph: stdout ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable) 2026-02-18T04:52:34.031 INFO:teuthology.orchestra.run.trial079.stdout:Ceph version: ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable) 2026-02-18T04:52:34.031 INFO:teuthology.orchestra.run.trial079.stdout:Extracting ceph user uid/gid from container image... 2026-02-18T04:52:34.147 INFO:teuthology.orchestra.run.trial079.stdout:stat: stdout 167 167 2026-02-18T04:52:34.147 INFO:teuthology.orchestra.run.trial079.stdout:Creating initial keys... 2026-02-18T04:52:34.256 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph-authtool: stdout AQCSRZVp+OV1DhAAtBQ2VZm49DAhG/vP7Ucd9g== 2026-02-18T04:52:34.392 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph-authtool: stdout AQCSRZVpy8GLFhAAs9ryAx7aBgIOJg8tnS4/KA== 2026-02-18T04:52:34.504 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph-authtool: stdout AQCSRZVpqD47HRAAiv6qykKgfdSmZedSDobRyQ== 2026-02-18T04:52:34.505 INFO:teuthology.orchestra.run.trial079.stdout:Creating initial monmap... 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:monmaptool for a [v2:10.20.193.79:3300,v1:10.20.193.79:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:setting min_mon_release = tentacle 2026-02-18T04:52:34.639 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/monmaptool: set fsid to 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:34.640 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-18T04:52:34.640 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:34.640 INFO:teuthology.orchestra.run.trial079.stdout:Creating mon... 2026-02-18T04:52:34.773 INFO:teuthology.orchestra.run.trial079.stdout:create mon.a on 2026-02-18T04:52:34.941 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2026-02-18T04:52:35.047 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-18T04:52:35.159 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460.target → /etc/systemd/system/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460.target. 2026-02-18T04:52:35.159 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460.target → /etc/systemd/system/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460.target. 2026-02-18T04:52:35.290 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a 2026-02-18T04:52:35.290 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Failed to reset failed state of unit ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a.service: Unit ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a.service not loaded. 2026-02-18T04:52:35.413 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460.target.wants/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a.service → /etc/systemd/system/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@.service. 2026-02-18T04:52:35.547 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:35 trial079 podman[20275]: 2026-02-18 04:52:35.545988274 +0000 UTC m=+0.045112892 container start 02ace9feb16cb91e5a6a7fa1fbe9bdf77f083f75fcc7a2e89582bd9f47ff0656 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.schema-version=1.0, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=debug) 2026-02-18T04:52:35.547 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:35 trial079 bash[20275]: 02ace9feb16cb91e5a6a7fa1fbe9bdf77f083f75fcc7a2e89582bd9f47ff0656 2026-02-18T04:52:35.547 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:35 trial079 podman[20275]: 2026-02-18 04:52:35.510649188 +0000 UTC m=+0.009773806 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:35.561 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T04:52:35.561 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout disabled 2026-02-18T04:52:35.567 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T04:52:35.567 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:35.567 INFO:teuthology.orchestra.run.trial079.stdout:firewalld.service is not enabled 2026-02-18T04:52:35.567 INFO:teuthology.orchestra.run.trial079.stdout:Not possible to enable service . firewalld.service is not available 2026-02-18T04:52:35.568 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for mon to start... 2026-02-18T04:52:35.568 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for mon... 2026-02-18T04:52:35.744 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout cluster: 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout id: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout services: 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.140355s) [leader: a] 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout data: 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-18T04:52:35.745 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-18T04:52:35.746 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-18T04:52:35.746 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout pgs: 2026-02-18T04:52:35.746 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:35.746 INFO:teuthology.orchestra.run.trial079.stdout:mon is available 2026-02-18T04:52:35.746 INFO:teuthology.orchestra.run.trial079.stdout:Assimilating anything we can from ceph.conf... 2026-02-18T04:52:35.798 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:35 trial079 systemd[1]: Started Ceph mon.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:52:35.798 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:35 trial079 ceph-mon[20304]: mkfs 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:35.798 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:35 trial079 ceph-mon[20304]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout [global] 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout fsid = 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.79:3300,v1:10.20.193.79:6789] 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-18T04:52:35.908 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout [osd] 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-18T04:52:35.909 INFO:teuthology.orchestra.run.trial079.stdout:Generating new minimal ceph.conf... 2026-02-18T04:52:36.078 INFO:teuthology.orchestra.run.trial079.stdout:Restarting the monitor... 2026-02-18T04:52:36.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 systemd[1]: Stopping Ceph mon.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:52:36.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a[20300]: 2026-02-18T04:52:36.152+0000 7feef3b23640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-18T04:52:36.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a[20300]: 2026-02-18T04:52:36.152+0000 7feef3b23640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2026-02-18T04:52:36.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 podman[20583]: 2026-02-18 04:52:36.204002923 +0000 UTC m=+0.063602069 container died 02ace9feb16cb91e5a6a7fa1fbe9bdf77f083f75fcc7a2e89582bd9f47ff0656 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=20.2.1_2.17.26-baseline_2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed) 2026-02-18T04:52:36.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 podman[20583]: 2026-02-18 04:52:36.212832698 +0000 UTC m=+0.072431844 container remove 02ace9feb16cb91e5a6a7fa1fbe9bdf77f083f75fcc7a2e89582bd9f47ff0656 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, OSD_FLAVOR=debug, org.label-schema.vendor=CentOS, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , 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-18T04:52:36.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 bash[20583]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a 2026-02-18T04:52:36.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 systemd[1]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a.service: Deactivated successfully. 2026-02-18T04:52:36.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 systemd[1]: Stopped Ceph mon.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:52:36.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 systemd[1]: Starting Ceph mon.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:52:36.380 INFO:teuthology.orchestra.run.trial079.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-18T04:52:36.556 INFO:teuthology.orchestra.run.trial079.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-18T04:52:36.556 INFO:teuthology.orchestra.run.trial079.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:52:36.556 INFO:teuthology.orchestra.run.trial079.stdout:Creating mgr... 2026-02-18T04:52:36.557 INFO:teuthology.orchestra.run.trial079.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-18T04:52:36.557 INFO:teuthology.orchestra.run.trial079.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-18T04:52:36.608 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 podman[20707]: 2026-02-18 04:52:36.344889547 +0000 UTC m=+0.015461367 container create a41565e5ebd0d48277fc556cb4baf03f093c5d5ffcda4e68a68cd5b230cc2e85 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, io.buildah.version=1.33.7, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 podman[20707]: 2026-02-18 04:52:36.372545002 +0000 UTC m=+0.043116812 container init a41565e5ebd0d48277fc556cb4baf03f093c5d5ffcda4e68a68cd5b230cc2e85 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, OSD_FLAVOR=debug, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=20.2.1_2.17.26-baseline_2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 podman[20707]: 2026-02-18 04:52:36.374827122 +0000 UTC m=+0.045398932 container start a41565e5ebd0d48277fc556cb4baf03f093c5d5ffcda4e68a68cd5b230cc2e85 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, ceph=True, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=debug, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS) 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 bash[20707]: a41565e5ebd0d48277fc556cb4baf03f093c5d5ffcda4e68a68cd5b230cc2e85 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 podman[20707]: 2026-02-18 04:52:36.338121163 +0000 UTC m=+0.008692983 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 systemd[1]: Started Ceph mon.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: set uid:gid to 167:167 (ceph:ceph) 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable - Debug), process ceph-mon, pid 2 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: pidfile_write: ignore empty --pid-file 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: load: jerasure load: lrc 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: RocksDB version: 7.9.2 2026-02-18T04:52:36.609 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Git sha 0 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Compile date 2026-02-17 18:17:02 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: DB SUMMARY 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: DB Session ID: V7FRB2YWPON82I766WMH 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: CURRENT file: CURRENT 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: IDENTITY file: IDENTITY 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 76499 ; 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.error_if_exists: 0 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.create_if_missing: 0 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.paranoid_checks: 1 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-18T04:52:36.610 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.env: 0x564921ca8100 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.fs: PosixFileSystem 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.info_log: 0x564928355b00 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_file_opening_threads: 16 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.statistics: (nil) 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.use_fsync: 0 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_log_file_size: 0 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.keep_log_file_num: 1000 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.recycle_log_file_num: 0 2026-02-18T04:52:36.611 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.allow_fallocate: 1 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.allow_mmap_reads: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.allow_mmap_writes: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.use_direct_reads: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.create_missing_column_families: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.db_log_dir: 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.wal_dir: 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-18T04:52:36.612 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.advise_random_on_open: 1 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.db_write_buffer_size: 0 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.write_buffer_manager: 0x564928358500 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.rate_limiter: (nil) 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.wal_recovery_mode: 2 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.enable_thread_tracking: 0 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.enable_pipelined_write: 0 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.unordered_write: 0 2026-02-18T04:52:36.613 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.row_cache: None 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.wal_filter: None 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.allow_ingest_behind: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.two_write_queues: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.manual_wal_flush: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.wal_compression: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.atomic_flush: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-18T04:52:36.614 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.log_readahead_size: 0 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.best_efforts_recovery: 0 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.allow_data_in_errors: 0 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.db_host_id: __hostname__ 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_background_jobs: 2 2026-02-18T04:52:36.615 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_background_compactions: -1 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_subcompactions: 1 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_total_wal_size: 0 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_open_files: -1 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bytes_per_sync: 0 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-18T04:52:36.616 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_readahead_size: 0 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_background_flushes: -1 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Compression algorithms supported: 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kZSTD supported: 0 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kXpressCompression supported: 0 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kBZip2Compression supported: 0 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kLZ4Compression supported: 1 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kZlibCompression supported: 1 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kLZ4HCCompression supported: 1 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: kSnappyCompression supported: 1 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-18T04:52:36.617 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.merge_operator: 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_filter: None 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_filter_factory: None 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.sst_partitioner_factory: None 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5649283543c0) 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout: cache_index_and_filter_blocks: 1 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-18T04:52:36.618 INFO:journalctl@ceph.mon.a.trial079.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: pin_top_level_index_and_filter: 1 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: index_type: 0 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: data_block_index_type: 0 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: index_shortening: 1 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: checksum: 4 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: no_block_cache: 0 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: block_cache: 0x564928375b90 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: block_cache_name: BinnedLRUCache 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: block_cache_options: 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: capacity : 536870912 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: num_shard_bits : 4 2026-02-18T04:52:36.619 INFO:journalctl@ceph.mon.a.trial079.stdout: strict_capacity_limit : 0 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: high_pri_pool_ratio: 0.000 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: block_cache_compressed: (nil) 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: persistent_cache: (nil) 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: block_size: 4096 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: block_size_deviation: 10 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: block_restart_interval: 16 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: index_block_restart_interval: 1 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: metadata_block_size: 4096 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: partition_filters: 0 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: use_delta_encoding: 1 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: filter_policy: bloomfilter 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: whole_key_filtering: 1 2026-02-18T04:52:36.620 INFO:journalctl@ceph.mon.a.trial079.stdout: verify_compression: 0 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: read_amp_bytes_per_bit: 0 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: format_version: 5 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: enable_index_compression: 1 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: block_align: 0 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: max_auto_readahead_size: 262144 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: prepopulate_block_cache: 0 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: initial_auto_readahead_size: 8192 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout: num_file_reads_for_auto_readahead: 2 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.write_buffer_size: 33554432 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_write_buffer_number: 2 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression: NoCompression 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression: Disabled 2026-02-18T04:52:36.621 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.prefix_extractor: nullptr 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.num_levels: 7 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-18T04:52:36.622 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.level: 32767 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.strategy: 0 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.enabled: false 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-18T04:52:36.623 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.target_file_size_base: 67108864 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-18T04:52:36.624 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.arena_block_size: 1048576 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.disable_auto_compactions: 0 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-18T04:52:36.625 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.inplace_update_support: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.bloom_locality: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.max_successive_merges: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.paranoid_file_checks: 0 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.force_consistency_checks: 1 2026-02-18T04:52:36.626 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.report_bg_io_stats: 0 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.ttl: 2592000 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.enable_blob_files: false 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.min_blob_size: 0 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.blob_file_size: 268435456 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-18T04:52:36.627 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.blob_file_starting_level: 0 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: 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-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 6f7c63d6-a2a4-46ad-95c9-5da13791ad5b 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771390356403618, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771390356404428, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73591, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 229, "table_properties": {"data_size": 71866, "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": 66280, "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": 1771390356, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "6f7c63d6-a2a4-46ad-95c9-5da13791ad5b", "db_session_id": "V7FRB2YWPON82I766WMH", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771390356404484, "job": 1, "event": "recovery_finished"} 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: 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-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x564928378700 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: DB pointer 0x56492838a000 2026-02-18T04:52:36.628 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: ** DB Stats ** 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.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-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.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-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: ** Compaction Stats [default] ** 2026-02-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.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-18T04:52:36.629 INFO:journalctl@ceph.mon.a.trial079.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: L0 2/0 73.73 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 131.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: Sum 2/0 73.73 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 131.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.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 131.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: ** Compaction Stats [default] ** 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.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-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.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 131.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-18T04:52:36.630 INFO:journalctl@ceph.mon.a.trial079.stdout: 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: Cumulative compaction: 0.00 GB write, 21.97 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: Interval compaction: 0.00 GB write, 21.97 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.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-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: Block cache BinnedLRUCache@0x564928375b90#2 capacity: 512.00 MB usage: 1.08 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.72 KB,0.000137091%) IndexBlock(2,0.36 KB,6.85453e-05%) Misc(1,0.00 KB,0%) 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: 2026-02-18T04:52:36.631 INFO:journalctl@ceph.mon.a.trial079.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: starting mon.a rank 0 at public addrs [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] at bind addrs [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???) e1 preinit fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).mds e1 new map 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).mds e1 print_map 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout: e1 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout: btime 2026-02-18T04:52:35:583304+0000 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.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-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout: legacy client fscid: -1 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout: 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout: No filesystems configured 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-18T04:52:36.632 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: monmap epoch 1 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: last_changed 2026-02-18T04:52:34.612790+0000 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: min_mon_release 20 (tentacle) 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: election_strategy: 1 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: fsmap 2026-02-18T04:52:36.633 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: osdmap e1: 0 total, 0 up, 0 in 2026-02-18T04:52:36.634 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:36 trial079 ceph-mon[20734]: mgrmap e1: no daemons active 2026-02-18T04:52:36.687 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a 2026-02-18T04:52:36.687 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Failed to reset failed state of unit ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a.service: Unit ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a.service not loaded. 2026-02-18T04:52:36.804 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460.target.wants/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a.service → /etc/systemd/system/ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@.service. 2026-02-18T04:52:36.946 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T04:52:36.946 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout disabled 2026-02-18T04:52:36.953 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T04:52:36.953 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:36.953 INFO:teuthology.orchestra.run.trial079.stdout:firewalld.service is not enabled 2026-02-18T04:52:36.954 INFO:teuthology.orchestra.run.trial079.stdout:Not possible to enable service . firewalld.service is not available 2026-02-18T04:52:36.961 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T04:52:36.961 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout disabled 2026-02-18T04:52:36.968 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T04:52:36.968 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:36.968 INFO:teuthology.orchestra.run.trial079.stdout:firewalld.service is not enabled 2026-02-18T04:52:36.968 INFO:teuthology.orchestra.run.trial079.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-02-18T04:52:36.968 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for mgr to start... 2026-02-18T04:52:36.968 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for mgr... 2026-02-18T04:52:36.994 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:36 trial079 systemd[1]: Started Ceph mgr.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "fsid": "9d405fe5-0c85-11f1-b595-d404e6e7d460", 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "health": { 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-18T04:52:37.154 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 0 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "a" 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-18T04:52:37.155 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-18T04:52:37.156 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "btime": "2026-02-18T04:52:35:583304+0000", 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "modified": "2026-02-18T04:52:35.583931+0000", 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:37.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-18T04:52:37.159 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:37.159 INFO:teuthology.orchestra.run.trial079.stdout:mgr not available, waiting (1/15)... 2026-02-18T04:52:37.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:37 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2189572386' entity='client.admin' 2026-02-18T04:52:37.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:37 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/267904231' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T04:52:38.327 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:37 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: /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-18T04:52:38.327 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:37 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 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-18T04:52:38.328 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:37 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: from numpy import show_config as show_numpy_config 2026-02-18T04:52:39.345 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "fsid": "9d405fe5-0c85-11f1-b595-d404e6e7d460", 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "health": { 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-18T04:52:39.346 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 0 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "a" 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:39.347 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-18T04:52:39.348 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "btime": "2026-02-18T04:52:35:583304+0000", 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-18T04:52:39.349 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "modified": "2026-02-18T04:52:35.583931+0000", 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:39.350 INFO:teuthology.orchestra.run.trial079.stdout:mgr not available, waiting (2/15)... 2026-02-18T04:52:39.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:39 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2357845411' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: Activating manager daemon a 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: mgrmap e2: a(active, starting, since 0.00310491s) 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: Manager daemon a is now available 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' 2026-02-18T04:52:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:40 trial079 ceph-mon[20734]: from='mgr.14100 10.20.193.79:0/794251412' entity='mgr.a' 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "fsid": "9d405fe5-0c85-11f1-b595-d404e6e7d460", 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "health": { 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-18T04:52:41.630 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 0 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "a" 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-18T04:52:41.631 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-18T04:52:41.632 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "btime": "2026-02-18T04:52:35:583304+0000", 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.633 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ], 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "modified": "2026-02-18T04:52:35.583931+0000", 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T04:52:41.634 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout }, 2026-02-18T04:52:41.635 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-18T04:52:41.635 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:41.635 INFO:teuthology.orchestra.run.trial079.stdout:mgr is available 2026-02-18T04:52:41.869 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:41.869 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout [global] 2026-02-18T04:52:41.869 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout fsid = 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:41.869 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-18T04:52:41.869 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.79:3300,v1:10.20.193.79:6789] 2026-02-18T04:52:41.869 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout [osd] 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-18T04:52:41.870 INFO:teuthology.orchestra.run.trial079.stdout:Enabling cephadm module... 2026-02-18T04:52:41.871 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:41 trial079 ceph-mon[20734]: mgrmap e3: a(active, since 1.00549s) 2026-02-18T04:52:41.871 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:41 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2614740116' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T04:52:42.985 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:42 trial079 ceph-mon[20734]: mgrmap e4: a(active, since 2s) 2026-02-18T04:52:42.986 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:42 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/4004254077' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-18T04:52:42.986 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:42 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/4004254077' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-02-18T04:52:42.986 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:42 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1316660020' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-18T04:52:42.986 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:42 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: ignoring --setuser ceph since I am not root 2026-02-18T04:52:42.986 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:42 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: ignoring --setgroup ceph since I am not root 2026-02-18T04:52:43.157 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for the mgr to restart... 2026-02-18T04:52:43.158 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for mgr epoch 5... 2026-02-18T04:52:44.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:43 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1316660020' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-18T04:52:44.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:43 trial079 ceph-mon[20734]: mgrmap e5: a(active, since 3s) 2026-02-18T04:52:44.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:43 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/422520166' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-18T04:52:44.328 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:43 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: /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-18T04:52:44.328 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:43 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 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-18T04:52:44.328 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:43 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: from numpy import show_config as show_numpy_config 2026-02-18T04:52:46.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: Active manager daemon a restarted 2026-02-18T04:52:46.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: Activating manager daemon a 2026-02-18T04:52:46.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: osdmap e2: 0 total, 0 up, 0 in 2026-02-18T04:52:46.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: mgrmap e6: a(active, starting, since 0.00359112s) 2026-02-18T04:52:46.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:52:46.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-18T04:52:46.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T04:52:46.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T04:52:46.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T04:52:46.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:45 trial079 ceph-mon[20734]: Manager daemon a is now available 2026-02-18T04:52:46.663 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:46.663 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-18T04:52:46.663 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-18T04:52:46.663 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:46.663 INFO:teuthology.orchestra.run.trial079.stdout:mgr epoch 5 is available 2026-02-18T04:52:46.663 INFO:teuthology.orchestra.run.trial079.stdout:Verifying orchestrator module is enabled... 2026-02-18T04:52:47.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:47.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: Found migration_current of "None". Setting to last migration. 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: mgrmap e7: a(active, since 1.00494s) 2026-02-18T04:52:47.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-18T04:52:47.579 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:47 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3695885789' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-18T04:52:47.658 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-18T04:52:47.658 INFO:teuthology.orchestra.run.trial079.stdout:Setting orchestrator backend to cephadm... 2026-02-18T04:52:48.147 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:47] ENGINE Bus STARTING 2026-02-18T04:52:48.147 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:47] ENGINE Serving on http://10.20.193.79:8765 2026-02-18T04:52:48.147 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:47] ENGINE Serving on https://10.20.193.79:7150 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:47] ENGINE Bus STARTED 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:47] ENGINE Client ('10.20.193.79', 57716) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3695885789' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: mgrmap e8: a(active, since 2s) 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:48.148 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:52:48.153 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-18T04:52:48.153 INFO:teuthology.orchestra.run.trial079.stdout:Generating ssh key... 2026-02-18T04:52:48.397 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: Generating public/private ed25519 key pair. 2026-02-18T04:52:48.397 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: Your identification has been saved in /tmp/tmpuxy3n5yx/key 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: Your public key has been saved in /tmp/tmpuxy3n5yx/key.pub 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: The key fingerprint is: 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: SHA256:f+bRfOELIUhnqCVQ2mM04vO74X/QoSR1eYjrblfZKvU ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: The key's randomart image is: 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: +--[ED25519 256]--+ 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | o.+ . o | 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | . * .o.+ . | 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | + =.+oo. | 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | +.*o+. | 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | oS.o...o. | 2026-02-18T04:52:48.398 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | .= ..*o..| 2026-02-18T04:52:48.399 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | o. o *.=..| 2026-02-18T04:52:48.399 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | . oo B o.E.| 2026-02-18T04:52:48.399 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: | oo.o o . | 2026-02-18T04:52:48.399 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: +----[SHA256]-----+ 2026-02-18T04:52:48.651 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:48.652 INFO:teuthology.orchestra.run.trial079.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-18T04:52:48.652 INFO:teuthology.orchestra.run.trial079.stdout:Adding key to root@localhost authorized_keys... 2026-02-18T04:52:48.652 INFO:teuthology.orchestra.run.trial079.stdout:Adding host trial079... 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: Generating ssh key... 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:49.494 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:49 trial079 ceph-mon[20734]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial079", "addr": "10.20.193.79", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:50.470 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout Added host 'trial079' with addr '10.20.193.79' 2026-02-18T04:52:50.470 INFO:teuthology.orchestra.run.trial079.stdout:Deploying unmanaged mon service... 2026-02-18T04:52:50.714 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:50 trial079 ceph-mon[20734]: Deploying cephadm binary to trial079 2026-02-18T04:52:50.736 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-18T04:52:50.737 INFO:teuthology.orchestra.run.trial079.stdout:Deploying unmanaged mgr service... 2026-02-18T04:52:50.996 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-18T04:52:51.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:51.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: Added host trial079 2026-02-18T04:52:51.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:52:51.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:51.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: Saving service mon spec with placement count:5 2026-02-18T04:52:51.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:51.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:51.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:51.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:51.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:51 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3590024408' entity='client.admin' 2026-02-18T04:52:51.615 INFO:teuthology.orchestra.run.trial079.stdout:Enabling the dashboard module... 2026-02-18T04:52:52.731 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-mon[20734]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:52.731 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-mon[20734]: Saving service mgr spec with placement count:2 2026-02-18T04:52:52.731 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:52.732 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3969954863' entity='client.admin' 2026-02-18T04:52:52.732 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3014848349' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-18T04:52:52.732 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-mon[20734]: from='mgr.14118 10.20.193.79:0/2011188854' entity='mgr.a' 2026-02-18T04:52:52.732 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: ignoring --setuser ceph since I am not root 2026-02-18T04:52:52.732 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:52 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: ignoring --setgroup ceph since I am not root 2026-02-18T04:52:52.904 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:52.904 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-18T04:52:52.904 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-18T04:52:52.904 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-18T04:52:52.904 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-18T04:52:52.904 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:52.905 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for the mgr to restart... 2026-02-18T04:52:52.905 INFO:teuthology.orchestra.run.trial079.stdout:Waiting for mgr epoch 9... 2026-02-18T04:52:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:53 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3014848349' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-18T04:52:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:53 trial079 ceph-mon[20734]: mgrmap e9: a(active, since 6s) 2026-02-18T04:52:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:53 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2140027581' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-18T04:52:54.078 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:53 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: /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-18T04:52:54.078 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:53 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 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-18T04:52:54.078 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:52:53 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: from numpy import show_config as show_numpy_config 2026-02-18T04:52:55.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: Active manager daemon a restarted 2026-02-18T04:52:55.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: Activating manager daemon a 2026-02-18T04:52:55.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: osdmap e3: 0 total, 0 up, 0 in 2026-02-18T04:52:55.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: mgrmap e10: a(active, starting, since 0.0029284s) 2026-02-18T04:52:55.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:52:55.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-18T04:52:55.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T04:52:55.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T04:52:55.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T04:52:55.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:55 trial079 ceph-mon[20734]: Manager daemon a is now available 2026-02-18T04:52:56.672 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:52:56.672 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-18T04:52:56.672 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-18T04:52:56.672 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:52:56.672 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:56 trial079 ceph-mon[20734]: mgrmap e11: a(active, since 1.00557s) 2026-02-18T04:52:56.672 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:52:56.692 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout { 2026-02-18T04:52:56.692 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-18T04:52:56.692 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-18T04:52:56.692 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout } 2026-02-18T04:52:56.692 INFO:teuthology.orchestra.run.trial079.stdout:mgr epoch 9 is available 2026-02-18T04:52:56.692 INFO:teuthology.orchestra.run.trial079.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-18T04:52:57.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:56] ENGINE Bus STARTING 2026-02-18T04:52:57.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:56] ENGINE Serving on http://10.20.193.79:8765 2026-02-18T04:52:57.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:56] ENGINE Serving on https://10.20.193.79:7150 2026-02-18T04:52:57.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:56] ENGINE Bus STARTED 2026-02-18T04:52:57.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: [18/Feb/2026:04:52:56] ENGINE Client ('10.20.193.79', 52340) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T04:52:57.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-18T04:52:57.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:57 trial079 ceph-mon[20734]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-18T04:52:57.654 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+jCCAuKgAwIBAgIUGcOJ5d5h1rXSUrISstuTSKygSCAwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI2MDIxODA0NTI1N1oXDTI5\nMDIxNzA0NTI1N1owFzEVMBMGA1UEAwwMMTAuMjAuMTkzLjc5MIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEArJ4FEYqHwmDgSMD9INHOghzq7uw8AqjstNIU\nyPkjCNFrWcgp0KpbLKtAmxn+coRWBnix2H/GnDa9gQJrAT5tiiv9mui8vYNpZbjt\nJ773ATGbyiW1NA/aBf051KGl8ApnzN0E8cM0xhoPQ+DajKpBlMFXPzKFvXPxorKL\nICfKns04MSFsBcfA7OLx1MnAoyCu0LNF5+NAuyeBxpPFERdEx4uDjz1SxIpdYiFX\nbEqP6V3+mnwfLjUZ50lEhj9KGp2wgkwXGb6XxfUu6ahPyHPFlSG2qmiTH1eGbOHr\nLiFPOXQsPYaQpUBTZslC8PaEfeCj1L5essiyHhxqQzWo6yXxyFvJadqQGzVAuQeX\nEOZ3QywQDFKcnu8lf83C8vFbeyBHyWzP739ELxA1hf6bTB76c2LTUVpKpuvS8YhH\nb+srP2hrmB6FKLnfqVQ82/iveFnHXuM5pI5ZsmX8p70JuAc1tJIiDrGGBMaB1Y2e\nADiummjEiyPuOIr8qLBZc8WfT8/h42arTQUsvybTdQ8adHj8e4+7DcFt7MlktDO2\nhlEjFNxt6ZBaSlLW12D4GGFYNDk4tpjD7Bz2xSFVJMBVXmry1K/mLJNucN06FLU4\nwIcAGWMrXPpToMCtjQIzrxpBMZJnLPpRC9M902Y1Vkai43a1nZesYHsshpaDHdvW\nPlNtsg0CAwEAAaM+MDwwLAYDVR0RBCUwI4IIdHJpYWwwNzmCEWRhc2hib2FyZF9z\nZXJ2ZXJzhwQKFMFPMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAEDX\nNBFguZJjc03sLAdy/HLY/m7HRc8tKLBmD3meZiMiav/mMFXvTwX7ReOskE3wK8VR\nIYDWvtc7Vxj2EeYmDwMKVcWFxXf0vTWq3vjMx5UigLB2fvajb3Cqp1Yc6tMeBmvP\ntGSyBO6GHoKHWkMv3FqnaZyE5w5NE4Z7F5TiiGXstcwpn6OvCyCUYT0710kcyPfH\n/63E5xFoMOZ3rJR0caSkErv2/hOLb0uRr2OOtGJHpF13jvluutjf4hixzDpVgBPM\ngQUhJgxZXcgtpChEeq+biRV9FT7zF43fBm5pvY+w0m4wa7wl29TP3CW6QQCjnvqs\nO9Rekj/xiOdDdsNGBZcM84RCPtaulIk7bvHDVXpJLpCx8mE3o1Yu6zNFD225xfsh\n0Wp//D/l580mzc3IM/Nb+Fai/0YzasoDFL8lju6taUVynZtJenVC0rlqHp4GwSwv\nnF+0CZI+yyr1rDYwNt8OrK90yJVuQSIjAX6FRuo991IsDVNCC8CWWmySVPo3LS9B\nPJoN5bFu4rMB2jV7cEdU8rvRwXQJQa4aApfzpO0Rwhc0PBF5lAf90zp5EUdgZno4\nQ/JN+CDIdT61gkI69/ndj38dYAqY25HmR6Wu+8pLnoqkhuZtMIEwoNi7WJIb2WIR\nQmkgCaKsfY1mPXkoOrWR0mG/Aseys0eF+Nh3v1XH\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEArJ4FEYqHwmDgSMD9INHOghzq7uw8AqjstNIUyPkjCNFrWcgp\n0KpbLKtAmxn+coRWBnix2H/GnDa9gQJrAT5tiiv9mui8vYNpZbjtJ773ATGbyiW1\nNA/aBf051KGl8ApnzN0E8cM0xhoPQ+DajKpBlMFXPzKFvXPxorKLICfKns04MSFs\nBcfA7OLx1MnAoyCu0LNF5+NAuyeBxpPFERdEx4uDjz1SxIpdYiFXbEqP6V3+mnwf\nLjUZ50lEhj9KGp2wgkwXGb6XxfUu6ahPyHPFlSG2qmiTH1eGbOHrLiFPOXQsPYaQ\npUBTZslC8PaEfeCj1L5essiyHhxqQzWo6yXxyFvJadqQGzVAuQeXEOZ3QywQDFKc\nnu8lf83C8vFbeyBHyWzP739ELxA1hf6bTB76c2LTUVpKpuvS8YhHb+srP2hrmB6F\nKLnfqVQ82/iveFnHXuM5pI5ZsmX8p70JuAc1tJIiDrGGBMaB1Y2eADiummjEiyPu\nOIr8qLBZc8WfT8/h42arTQUsvybTdQ8adHj8e4+7DcFt7MlktDO2hlEjFNxt6ZBa\nSlLW12D4GGFYNDk4tpjD7Bz2xSFVJMBVXmry1K/mLJNucN06FLU4wIcAGWMrXPpT\noMCtjQIzrxpBMZJnLPpRC9M902Y1Vkai43a1nZesYHsshpaDHdvWPlNtsg0CAwEA\nAQKCAgAMXKWCRxVH31/Qj6AEUxViwUCcUbPoGnVK0cy5Q9ZPEfUjkRXyVddOHW/0\n0gMkUl15L/jHx202AyZfidVkWZzHC2ipe/qgTwi9emV8tjL14lNrQhFDCp7Gu201\nan1gWAgGmafgyuXWb64hYoX937RVbq8zEG9ks1v3sELaz6uCfRhSgTej0yItSAEH\noYpqyrMAsTk6M4H12HN1Z2AlxDChyPHOahbcvaGVOH8/rlG2GPKPcubzJf+WTh7B\nLa3x6Z8aOOn8M83Zi6CLc6Ln34EKS0eYo2dkR2r4ezyeqU+e9R0bkhQW/lwhFuko\nKcKW45j4A5YmkzOzIlfRB/olgcPzdfiEFavy79tqtZeQdflUqK+JedGKRqUt6dTE\nTcbuxnuAWR9B8nH4O5lNMK5o+pClO8bYbFq0bQErSu8shendBF/bT2sGBIZB54zV\nD49jN9UX/crYhgOiPFtO3XjqmB76vxyMf4rsq8xTIkhyjZK9n7iEYEwkI7sisqSX\nLDXxJ2NKBKUsSKZPkyLccP+cr62oHpwiV85kiIaF/Pb62uxEF+j/UJc3a0acsX2+\nfACmlKSdPZJwuUxV6GeLsOpAvEw6iP544Y3e2JA9P6BdLDi8elOdoC1GvnKuzgBo\n55mjvSWFVDoBSPqLAdr1MM5dOuB0HCVsoOS6z8W9RdGoG3iBpQKCAQEA78fpHswI\nszBqSCjaZ7jSyHQn/5IiLp2ESPISrXLx0oKPALU5n6unYJa39SC1q7rAPqv+hVmP\nRNEi1Bo8P3YIvy9iIsF1+7DjPnjZAfvx72vxqit/oCmhH1jWLYilt1wLL9bSfb8h\nU3V1GK7+73QCwatUX9if2K/0fgi+UoLBy3xGlB09lLGLi4XaBVrYcSDy3GHJRXmi\n/3vwKZDPEsVlyxIKXOSVyPb5dwAKZthCLocsuD73m9JGa5fQNUksK98f+tgOqSi4\nWOpIU8pd85nTlTo9w3g/5JikzsZ8svbWUtjQqR9PrsFROAzvUeUNwRVOJwlWYP+W\nRvf2i2npaMgWXwKCAQEAuEsXbiALiXOaQkpD2dsVhxXExGqqjzsOED0YooI2jwYD\nxGlvu/jGesUmfNR2kJIbH7352P4vJ7jMrhXzpv72MrdsNSu+5faoGI/SmAfoKI8q\nm7PmM2V5k6j6MooLw7cp9m6Z9aY3KGuovSxxMx9MY3z1v3amuLArhQhs4iLtcQPN\ngHGf5O83f6LZaYETKYlbafjmiilD7JXtk3iDdtW8XfpxXA5BWJjcvbWZREfMUEVf\nNoKVJx5oTmV0HDzbuCsJzn6P4+d3sbAwZqqzW3PZT8ktDuGL1YjrsrNH7+rA/FqS\nX7IjTykcR6/HkUmIXOY3KukZGHnc4FcuUekff96XEwKCAQBFHABT0Qjc5KJtY+D3\nLi0Ke3gf0DWr69h50dOSTGPogZrH4HPYUngufaJNs3zJH01Tgu0b8CE7+28nZNxi\nihmhSP3m+I2R2nzUv64ERWKI2DrSCjGBrx3yU/9/JjhlLdFHm4oVliX70QnL8Hwn\n9e7pdQEfkucXZDd6r/hy/Z7vkEUjYX4jQjzvHMgm7PUfPhjhbgm9zX4uVsF0qXkV\ndvGM4wk7luKZBp4GL2vQEpqYoHtCK1vgfG2xixMGmK1zg57LBMTM+qCPeA8an2QO\n1xJFm4C7uwfnUhuGQW0lg8FoJXeWlyC3RJ6tIgVEPFmHgiWBWM6drGzazZMwwXj1\nq13PAoIBABxfo0nXMS+GVteh63RdIKFdnp/G9F987htd7K8IcTHv8SCKQyOjl5tL\nQzOw2lhDxl1KuG7KI6Rv9UNQKeUqF+mTB9vf0lJBeXvemMPDY+DqudqjBewf0WoE\neBDT5B/L0XAZcya44oEcoiwN7Ze7V91xXbyOnfiNVwXyWCEw03G07iy6Ua3Djr3d\n6q8tqi+Y8DQOmB/pXoXMR3mO8l6XZZrqdg2APFtRnZqvnNtAWpp5M8GGtUQCkHiR\nciDu1b0zEx1xquGhv3Hh+HG2EksgOPLpvEAwRYEoxXEL3SV49SFlKGgHWxxS7gGz\ndHxP3+i9oPzASpbUHEeF5KHDzI+5S3UCggEAQtR6p6qpuYwuRl/0dXiNf317GAKl\n+ro9WCMvEMNzgeUoqvDccO+g/DGog4/mvYYkZikSrEGyM/ECUBeMseJMh1d9kqNu\ngjczsQrDuURlj//H0CRU0SGYLjoSUUNBbvge6AeOIRVK82kKvOVzzwj934ysGKXt\ntVDNBupgrldWnLXGToh1kMzKO55W5/uWQYsOb1TfJKNsigWl28DoYJCouO/qHKE7\n/+iNCITKSmVBjYzaF7T9vI4StVwi6TY2zMoriOj5qOkFLDI/FS9e0s1QkRfzbBXW\nXHm2SwmeGesBN4mtHbHVHDhRn1y/mMtd9O5l/u/IBkatK9+TwvaT/iQYuA==\n-----END RSA PRIVATE KEY-----\n"} 2026-02-18T04:52:57.899 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-18T04:52:58.150 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-18T04:52:58.150 INFO:teuthology.orchestra.run.trial079.stdout:Creating initial admin user... 2026-02-18T04:52:58.619 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$S04lLSwTCbvUwR3Cg0uE9u8R/q/sl98BLtVI6sVYcleJOlPicyHO2", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771390378, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-18T04:52:58.619 INFO:teuthology.orchestra.run.trial079.stdout:Fetching dashboard port number... 2026-02-18T04:52:58.732 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:58 trial079 ceph-mon[20734]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:58.732 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:58 trial079 ceph-mon[20734]: mgrmap e12: a(active, since 2s) 2026-02-18T04:52:58.733 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:52:58.733 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:52:58.858 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stdout 8443 2026-02-18T04:52:58.867 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T04:52:58.867 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout disabled 2026-02-18T04:52:58.872 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T04:52:58.872 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:58.872 INFO:teuthology.orchestra.run.trial079.stdout:firewalld.service is not enabled 2026-02-18T04:52:58.872 INFO:teuthology.orchestra.run.trial079.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-18T04:52:58.873 INFO:teuthology.orchestra.run.trial079.stdout:Ceph Dashboard is now available at: 2026-02-18T04:52:58.873 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:58.873 INFO:teuthology.orchestra.run.trial079.stdout: URL: https://trial079:8443/ 2026-02-18T04:52:58.873 INFO:teuthology.orchestra.run.trial079.stdout: User: admin 2026-02-18T04:52:58.873 INFO:teuthology.orchestra.run.trial079.stdout: Password: kv409qhi33 2026-02-18T04:52:58.873 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:58.874 INFO:teuthology.orchestra.run.trial079.stdout:Saving cluster configuration to /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config directory 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout:Or, if you are only running a single cluster on this host: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: ceph telemetry on 2026-02-18T04:52:59.167 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.168 INFO:teuthology.orchestra.run.trial079.stdout:For more information see: 2026-02-18T04:52:59.168 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.168 INFO:teuthology.orchestra.run.trial079.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-18T04:52:59.168 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:52:59.168 INFO:teuthology.orchestra.run.trial079.stdout:Bootstrap complete. 2026-02-18T04:52:59.175 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout static 2026-02-18T04:52:59.181 INFO:teuthology.orchestra.run.trial079.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-18T04:52:59.181 INFO:teuthology.orchestra.run.trial079.stdout:systemctl: stdout inactive 2026-02-18T04:52:59.181 INFO:teuthology.orchestra.run.trial079.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-18T04:52:59.332 INFO:tasks.cephadm:Fetching config... 2026-02-18T04:52:59.332 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:59.332 DEBUG:teuthology.orchestra.run.trial079:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-18T04:52:59.349 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-18T04:52:59.349 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:59.349 DEBUG:teuthology.orchestra.run.trial079:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-18T04:52:59.406 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-18T04:52:59.406 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:59.406 DEBUG:teuthology.orchestra.run.trial079:> sudo dd if=/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/keyring of=/dev/stdout 2026-02-18T04:52:59.473 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-18T04:52:59.473 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:52:59.473 DEBUG:teuthology.orchestra.run.trial079:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-18T04:52:59.529 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-18T04:52:59.529 DEBUG:teuthology.orchestra.run.trial079:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-18T04:52:59.601 INFO:teuthology.orchestra.run.trial079.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:59.612 DEBUG:teuthology.orchestra.run.trial191:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-18T04:52:59.647 INFO:teuthology.orchestra.run.trial191.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:59.657 DEBUG:teuthology.orchestra.run.trial197:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-18T04:52:59.693 INFO:teuthology.orchestra.run.trial197.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBtJUyonPuB5ixEb7x5buG6ZFzx8K7v9oo1BVdw8D6Lj ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:52:59.703 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-18T04:52:59.819 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:52:59.841 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:59 trial079 ceph-mon[20734]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:59.841 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:59 trial079 ceph-mon[20734]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:52:59.841 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:59 trial079 ceph-mon[20734]: 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-18T04:52:59.841 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:52:59.841 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:59 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2257572612' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-18T04:52:59.841 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:52:59 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1417073947' entity='client.admin' 2026-02-18T04:53:00.092 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-18T04:53:00.092 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-18T04:53:00.210 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:00.486 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial191 2026-02-18T04:53:00.486 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:53:00.486 DEBUG:teuthology.orchestra.run.trial191:> dd of=/etc/ceph/ceph.conf 2026-02-18T04:53:00.504 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:53:00.504 DEBUG:teuthology.orchestra.run.trial191:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:00.560 INFO:tasks.cephadm:Adding host trial191 to orchestrator... 2026-02-18T04:53:00.560 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch host add trial191 2026-02-18T04:53:00.680 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:01.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/498183639' entity='client.admin' 2026-02-18T04:53:01.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial079", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:01.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: Updating trial079:/etc/ceph/ceph.conf 2026-02-18T04:53:01.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:01.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:01.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:02.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:02 trial079 ceph-mon[20734]: Updating trial079:/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:02.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:02 trial079 ceph-mon[20734]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T04:53:02.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:02 trial079 ceph-mon[20734]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial191", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:02.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:02 trial079 ceph-mon[20734]: Deploying cephadm binary to trial191 2026-02-18T04:53:02.496 INFO:teuthology.orchestra.run.trial079.stdout:Added host 'trial191' with addr '10.20.193.191' 2026-02-18T04:53:02.538 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-18T04:53:02.658 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:02.894 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:53:02.895 INFO:teuthology.orchestra.run.trial079.stdout:[{"addr": "10.20.193.79", "hostname": "trial079", "labels": [], "status": ""}, {"addr": "10.20.193.191", "hostname": "trial191", "labels": [], "status": ""}] 2026-02-18T04:53:02.933 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial197 2026-02-18T04:53:02.933 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:53:02.933 DEBUG:teuthology.orchestra.run.trial197:> dd of=/etc/ceph/ceph.conf 2026-02-18T04:53:02.952 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:53:02.952 DEBUG:teuthology.orchestra.run.trial197:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:03.008 INFO:tasks.cephadm:Adding host trial197 to orchestrator... 2026-02-18T04:53:03.009 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch host add trial197 2026-02-18T04:53:03.125 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:03.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:03 trial079 ceph-mon[20734]: mgrmap e13: a(active, since 6s) 2026-02-18T04:53:03.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:03.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:03 trial079 ceph-mon[20734]: Added host trial191 2026-02-18T04:53:03.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:03.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:03.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:04.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:04 trial079 ceph-mon[20734]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:53:04.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:04 trial079 ceph-mon[20734]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:04.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:04 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:04.899 INFO:teuthology.orchestra.run.trial079.stdout:Added host 'trial197' with addr '10.20.193.197' 2026-02-18T04:53:04.953 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-18T04:53:05.073 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:05.297 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:53:05.297 INFO:teuthology.orchestra.run.trial079.stdout:[{"addr": "10.20.193.79", "hostname": "trial079", "labels": [], "status": ""}, {"addr": "10.20.193.191", "hostname": "trial191", "labels": [], "status": ""}, {"addr": "10.20.193.197", "hostname": "trial197", "labels": [], "status": ""}] 2026-02-18T04:53:05.334 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-18T04:53:05.334 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd crush tunables default 2026-02-18T04:53:05.450 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:05.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: Deploying cephadm binary to trial197 2026-02-18T04:53:05.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial191", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: Updating trial191:/etc/ceph/ceph.conf 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:05.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:06.550 INFO:teuthology.orchestra.run.trial079.stderr:adjusted tunables profile to default 2026-02-18T04:53:06.593 INFO:tasks.cephadm:Adding mon.a on trial079 2026-02-18T04:53:06.593 INFO:tasks.cephadm:Adding mon.b on trial191 2026-02-18T04:53:06.594 INFO:tasks.cephadm:Adding mon.c on trial197 2026-02-18T04:53:06.594 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch apply mon '3;trial079:10.20.193.79=a;trial191:10.20.193.191=b;trial197:10.20.193.197=c' 2026-02-18T04:53:06.713 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T04:53:06.713 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T04:53:06.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:06.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: Updating trial191:/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:06.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: Added host trial197 2026-02-18T04:53:06.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T04:53:06.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:53:06.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/164456116' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-18T04:53:06.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:06.959 INFO:teuthology.orchestra.run.trial197.stdout:Scheduled mon update... 2026-02-18T04:53:07.000 DEBUG:teuthology.orchestra.run.trial191:mon.b> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.b.service 2026-02-18T04:53:07.003 DEBUG:teuthology.orchestra.run.trial197:mon.c> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.c.service 2026-02-18T04:53:07.005 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-18T04:53:07.006 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T04:53:07.165 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:07.456 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:53:07.456 INFO:teuthology.orchestra.run.trial197.stdout:{"epoch":1,"fsid":"9d405fe5-0c85-11f1-b595-d404e6e7d460","modified":"2026-02-18T04:52:34.612790Z","created":"2026-02-18T04:52:34.612790Z","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.79:3300","nonce":0},{"type":"v1","addr":"10.20.193.79:6789","nonce":0}]},"addr":"10.20.193.79:6789/0","public_addr":"10.20.193.79:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T04:53:07.456 INFO:teuthology.orchestra.run.trial197.stderr:dumped monmap epoch 1 2026-02-18T04:53:07.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/164456116' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial197", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:07.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:07.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:07.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:07 trial079 ceph-mon[20734]: from='client.? 10.20.193.197:0/3783021484' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T04:53:08.498 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-18T04:53:08.499 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T04:53:08.620 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.c/config 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: Updating trial197:/etc/ceph/ceph.conf 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: Updating trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;trial079:10.20.193.79=a;trial191:10.20.193.191=b;trial197:10.20.193.197=c", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: Saving service mon spec with placement trial079:10.20.193.79=a;trial191:10.20.193.191=b;trial197:10.20.193.197=c;count:3 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: Updating trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: Updating trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T04:53:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:08 trial079 ceph-mon[20734]: Deploying daemon mon.c on trial197 2026-02-18T04:53:10.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:09 trial191 ceph-mon[22977]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: Deploying daemon mon.b on trial191 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: mon.a calling monitor election 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:14.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: mon.c calling monitor election 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: monmap epoch 2 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: last_changed 2026-02-18T04:53:08.585849+0000 2026-02-18T04:53:14.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: min_mon_release 20 (tentacle) 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: election_strategy: 1 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: fsmap 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: mgrmap e13: a(active, since 18s) 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: overall HEALTH_OK 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:14.080 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:13 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:15.077 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:53:14 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 2026-02-18T04:53:14.585+0000 7f9d5dc2b640 -1 mgr.server handle_report got status from non-daemon mon.c 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: Deploying daemon mon.b on trial191 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.a calling monitor election 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.c calling monitor election 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: monmap epoch 2 2026-02-18T04:53:19.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: last_changed 2026-02-18T04:53:08.585849+0000 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: min_mon_release 20 (tentacle) 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: election_strategy: 1 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: fsmap 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mgrmap e13: a(active, since 18s) 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: overall HEALTH_OK 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.a calling monitor election 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.c calling monitor election 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.b calling monitor election 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-18T04:53:19.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: monmap epoch 3 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: last_changed 2026-02-18T04:53:13.771894+0000 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: min_mon_release 20 (tentacle) 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: election_strategy: 1 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: 2: [v2:10.20.193.191:3300/0,v1:10.20.193.191:6789/0] mon.b 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: fsmap 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: mgrmap e13: a(active, since 23s) 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: overall HEALTH_OK 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:19.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:19.266 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:19.266 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.266 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:19.266 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: mon.a calling monitor election 2026-02-18T04:53:19.266 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: mon.c calling monitor election 2026-02-18T04:53:19.266 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: mon.b calling monitor election 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: monmap epoch 3 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: last_changed 2026-02-18T04:53:13.771894+0000 2026-02-18T04:53:19.267 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: min_mon_release 20 (tentacle) 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: election_strategy: 1 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: 2: [v2:10.20.193.191:3300/0,v1:10.20.193.191:6789/0] mon.b 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: fsmap 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: mgrmap e13: a(active, since 23s) 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: overall HEALTH_OK 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.268 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.269 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.269 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:19.269 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:19.269 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:19.296 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:53:19.296 INFO:teuthology.orchestra.run.trial197.stdout:{"epoch":3,"fsid":"9d405fe5-0c85-11f1-b595-d404e6e7d460","modified":"2026-02-18T04:53:13.771894Z","created":"2026-02-18T04:52:34.612790Z","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.79:3300","nonce":0},{"type":"v1","addr":"10.20.193.79:6789","nonce":0}]},"addr":"10.20.193.79:6789/0","public_addr":"10.20.193.79:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:3300","nonce":0},{"type":"v1","addr":"10.20.193.197:6789","nonce":0}]},"addr":"10.20.193.197:6789/0","public_addr":"10.20.193.197:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:3300","nonce":0},{"type":"v1","addr":"10.20.193.191:6789","nonce":0}]},"addr":"10.20.193.191:6789/0","public_addr":"10.20.193.191:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2026-02-18T04:53:19.297 INFO:teuthology.orchestra.run.trial197.stderr:dumped monmap epoch 3 2026-02-18T04:53:19.297 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:18 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:19.335 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-18T04:53:19.335 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-18T04:53:19.454 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:19.678 INFO:teuthology.orchestra.run.trial079.stdout:# minimal ceph.conf for 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:53:19.679 INFO:teuthology.orchestra.run.trial079.stdout:[global] 2026-02-18T04:53:19.679 INFO:teuthology.orchestra.run.trial079.stdout: fsid = 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:53:19.679 INFO:teuthology.orchestra.run.trial079.stdout: mon_host = [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] [v2:10.20.193.191:3300/0,v1:10.20.193.191:6789/0] [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] 2026-02-18T04:53:19.717 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-18T04:53:19.717 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:53:19.717 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/etc/ceph/ceph.conf 2026-02-18T04:53:19.743 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:53:19.744 DEBUG:teuthology.orchestra.run.trial079:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:19.808 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:53:19.808 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/etc/ceph/ceph.conf 2026-02-18T04:53:19.836 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:53:19.836 DEBUG:teuthology.orchestra.run.trial191:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:19.900 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:53:19.900 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/ceph/ceph.conf 2026-02-18T04:53:19.926 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:53:19.926 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:53:19.989 INFO:tasks.cephadm:Adding mgr.a on trial079 2026-02-18T04:53:19.990 INFO:tasks.cephadm:Adding mgr.b on trial191 2026-02-18T04:53:19.990 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch apply mgr '2;trial079=a;trial191=b' 2026-02-18T04:53:20.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Updating trial079:/etc/ceph/ceph.conf 2026-02-18T04:53:20.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Updating trial191:/etc/ceph/ceph.conf 2026-02-18T04:53:20.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Updating trial197:/etc/ceph/ceph.conf 2026-02-18T04:53:20.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Updating trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Reconfiguring mon.a (unknown last config time)... 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Reconfiguring daemon mon.a on trial079 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='client.? 10.20.193.197:0/2831176773' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Reconfiguring mon.b (monmap changed)... 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Reconfiguring daemon mon.b on trial191 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Reconfiguring mon.c (monmap changed)... 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: Reconfiguring daemon mon.c on trial197 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/4123569580' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:20.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:20 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.145 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.c/config 2026-02-18T04:53:20.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Updating trial079:/etc/ceph/ceph.conf 2026-02-18T04:53:20.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Updating trial191:/etc/ceph/ceph.conf 2026-02-18T04:53:20.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Updating trial197:/etc/ceph/ceph.conf 2026-02-18T04:53:20.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Updating trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Reconfiguring mon.a (unknown last config time)... 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.329 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Reconfiguring daemon mon.a on trial079 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='client.? 10.20.193.197:0/2831176773' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Reconfiguring mon.b (monmap changed)... 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Reconfiguring daemon mon.b on trial191 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.330 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Reconfiguring mon.c (monmap changed)... 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: Reconfiguring daemon mon.c on trial197 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/4123569580' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:20.331 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:20 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.332 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Updating trial079:/etc/ceph/ceph.conf 2026-02-18T04:53:20.332 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Updating trial191:/etc/ceph/ceph.conf 2026-02-18T04:53:20.332 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Updating trial197:/etc/ceph/ceph.conf 2026-02-18T04:53:20.332 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Updating trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Reconfiguring mon.a (unknown last config time)... 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.333 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Reconfiguring daemon mon.a on trial079 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='client.? 10.20.193.197:0/2831176773' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Reconfiguring mon.b (monmap changed)... 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Reconfiguring daemon mon.b on trial191 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.334 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Reconfiguring mon.c (monmap changed)... 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: Reconfiguring daemon mon.c on trial197 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/4123569580' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:20.335 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:20 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:20.389 INFO:teuthology.orchestra.run.trial197.stdout:Scheduled mgr update... 2026-02-18T04:53:20.430 DEBUG:teuthology.orchestra.run.trial191:mgr.b> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.b.service 2026-02-18T04:53:20.433 DEBUG:tasks.cephadm:set 0 configs 2026-02-18T04:53:20.433 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph config dump 2026-02-18T04:53:20.550 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global dev auth_debug true 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c * 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global dev debug_asserts_on_shutdown true 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global basic log_to_file true 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global basic log_to_journald false 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global basic log_to_stderr false 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_allow_pool_delete true 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_cluster_log_to_file true 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_election_default_strategy 1 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-18T04:53:20.778 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global dev ms_die_on_bug true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global dev ms_die_on_old_message true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.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-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced debug_mon 20/20 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced debug_ms 1/1 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced debug_paxos 20/20 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_data_avail_warn 5 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced debug_mgr 20/20 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced debug_ms 1/1 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mgr/cephadm/migration_current 7 * 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mgr/cephadm/use_agent false * 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev bdev_debug_aio true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced debug_ms 1/1 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced debug_osd 20/20 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_misdirected_ops true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_op_order true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_shutdown true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-18T04:53:20.779 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_memory_target_autotune true 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_op_queue debug_random * 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_recover_clone_overlap true 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-18T04:53:20.780 INFO:teuthology.orchestra.run.trial079.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-18T04:53:20.838 INFO:tasks.cephadm:Deploying OSDs... 2026-02-18T04:53:20.838 DEBUG:teuthology.orchestra.run.trial079:> set -ex 2026-02-18T04:53:20.838 DEBUG:teuthology.orchestra.run.trial079:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T04:53:20.854 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-18T04:53:20.854 DEBUG:teuthology.orchestra.run.trial079:> stat /dev/vg_nvme/lv_1 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout:Device: 6h/6d Inode: 1317 Links: 1 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout:Access: 2026-02-18 04:53:00.140902427 +0000 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout:Modify: 2026-02-18 04:51:16.043490820 +0000 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout:Change: 2026-02-18 04:51:16.043490820 +0000 2026-02-18T04:53:20.910 INFO:teuthology.orchestra.run.trial079.stdout: Birth: 2026-02-18 04:51:16.043490820 +0000 2026-02-18T04:53:20.910 DEBUG:teuthology.orchestra.run.trial079:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-18T04:53:20.974 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records in 2026-02-18T04:53:20.975 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records out 2026-02-18T04:53:20.975 INFO:teuthology.orchestra.run.trial079.stderr:512 bytes copied, 0.000162822 s, 3.1 MB/s 2026-02-18T04:53:20.976 DEBUG:teuthology.orchestra.run.trial079:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-18T04:53:21.034 DEBUG:teuthology.orchestra.run.trial079:> stat /dev/vg_nvme/lv_2 2026-02-18T04:53:21.035 INFO:journalctl@ceph.mgr.b.trial191.stdout:Feb 18 04:53:21 trial191 systemd[1]: Started Ceph mgr.b for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout:Device: 6h/6d Inode: 1309 Links: 1 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout:Access: 2026-02-18 04:53:00.140902427 +0000 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout:Modify: 2026-02-18 04:51:16.043490820 +0000 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout:Change: 2026-02-18 04:51:16.043490820 +0000 2026-02-18T04:53:21.090 INFO:teuthology.orchestra.run.trial079.stdout: Birth: 2026-02-18 04:51:16.043490820 +0000 2026-02-18T04:53:21.090 DEBUG:teuthology.orchestra.run.trial079:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-18T04:53:21.153 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records in 2026-02-18T04:53:21.153 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records out 2026-02-18T04:53:21.153 INFO:teuthology.orchestra.run.trial079.stderr:512 bytes copied, 0.000168052 s, 3.0 MB/s 2026-02-18T04:53:21.154 DEBUG:teuthology.orchestra.run.trial079:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-18T04:53:21.211 DEBUG:teuthology.orchestra.run.trial079:> stat /dev/vg_nvme/lv_3 2026-02-18T04:53:21.267 INFO:teuthology.orchestra.run.trial079.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-18T04:53:21.267 INFO:teuthology.orchestra.run.trial079.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:21.267 INFO:teuthology.orchestra.run.trial079.stdout:Device: 6h/6d Inode: 1301 Links: 1 2026-02-18T04:53:21.267 INFO:teuthology.orchestra.run.trial079.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:21.268 INFO:teuthology.orchestra.run.trial079.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:21.268 INFO:teuthology.orchestra.run.trial079.stdout:Access: 2026-02-18 04:53:00.140902427 +0000 2026-02-18T04:53:21.268 INFO:teuthology.orchestra.run.trial079.stdout:Modify: 2026-02-18 04:51:16.042490844 +0000 2026-02-18T04:53:21.268 INFO:teuthology.orchestra.run.trial079.stdout:Change: 2026-02-18 04:51:16.042490844 +0000 2026-02-18T04:53:21.268 INFO:teuthology.orchestra.run.trial079.stdout: Birth: 2026-02-18 04:51:16.042490844 +0000 2026-02-18T04:53:21.268 DEBUG:teuthology.orchestra.run.trial079:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-18T04:53:21.329 INFO:journalctl@ceph.mgr.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mgr[24075]: -- 10.20.193.191:0/4029539034 <== mon.2 v2:10.20.193.191:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55921a752000 con 0x55921a731400 2026-02-18T04:53:21.330 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records in 2026-02-18T04:53:21.330 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records out 2026-02-18T04:53:21.330 INFO:teuthology.orchestra.run.trial079.stderr:512 bytes copied, 0.000179773 s, 2.8 MB/s 2026-02-18T04:53:21.332 DEBUG:teuthology.orchestra.run.trial079:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-18T04:53:21.389 DEBUG:teuthology.orchestra.run.trial079:> stat /dev/vg_nvme/lv_4 2026-02-18T04:53:21.445 INFO:teuthology.orchestra.run.trial079.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-18T04:53:21.445 INFO:teuthology.orchestra.run.trial079.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout:Device: 6h/6d Inode: 1304 Links: 1 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout:Access: 2026-02-18 04:53:00.140902427 +0000 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout:Modify: 2026-02-18 04:51:16.042490844 +0000 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout:Change: 2026-02-18 04:51:16.042490844 +0000 2026-02-18T04:53:21.446 INFO:teuthology.orchestra.run.trial079.stdout: Birth: 2026-02-18 04:51:16.042490844 +0000 2026-02-18T04:53:21.446 DEBUG:teuthology.orchestra.run.trial079:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-18T04:53:21.507 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial079=a;trial191=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:21.507 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: Saving service mgr spec with placement trial079=a;trial191=b;count:2 2026-02-18T04:53:21.507 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.507 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: Deploying daemon mgr.b on trial191 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1681151767' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.508 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.509 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.509 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.509 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:21 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:21.509 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records in 2026-02-18T04:53:21.509 INFO:teuthology.orchestra.run.trial079.stderr:1+0 records out 2026-02-18T04:53:21.509 INFO:teuthology.orchestra.run.trial079.stderr:512 bytes copied, 0.000149607 s, 3.4 MB/s 2026-02-18T04:53:21.510 DEBUG:teuthology.orchestra.run.trial079:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-18T04:53:21.567 DEBUG:teuthology.orchestra.run.trial191:> set -ex 2026-02-18T04:53:21.567 DEBUG:teuthology.orchestra.run.trial191:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial079=a;trial191=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: Saving service mgr spec with placement trial079=a;trial191=b;count:2 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-18T04:53:21.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: Deploying daemon mgr.b on trial191 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1681151767' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:21 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:21.586 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-18T04:53:21.586 DEBUG:teuthology.orchestra.run.trial191:> stat /dev/vg_nvme/lv_1 2026-02-18T04:53:21.643 INFO:teuthology.orchestra.run.trial191.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout:Device: 6h/6d Inode: 1288 Links: 1 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout:Access: 2026-02-18 04:53:20.848391021 +0000 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout:Modify: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout:Change: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:21.644 INFO:teuthology.orchestra.run.trial191.stdout: Birth: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:21.645 DEBUG:teuthology.orchestra.run.trial191:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-18T04:53:21.708 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records in 2026-02-18T04:53:21.709 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records out 2026-02-18T04:53:21.709 INFO:teuthology.orchestra.run.trial191.stderr:512 bytes copied, 0.000155629 s, 3.3 MB/s 2026-02-18T04:53:21.710 DEBUG:teuthology.orchestra.run.trial191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-18T04:53:21.767 DEBUG:teuthology.orchestra.run.trial191:> stat /dev/vg_nvme/lv_2 2026-02-18T04:53:21.823 INFO:teuthology.orchestra.run.trial191.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout:Device: 6h/6d Inode: 1291 Links: 1 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout:Access: 2026-02-18 04:53:20.848391021 +0000 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout:Modify: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout:Change: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:21.824 INFO:teuthology.orchestra.run.trial191.stdout: Birth: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:21.825 DEBUG:teuthology.orchestra.run.trial191:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial079=a;trial191=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: Saving service mgr spec with placement trial079=a;trial191=b;count:2 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: Deploying daemon mgr.b on trial191 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1681151767' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:21.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:21 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:21.888 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records in 2026-02-18T04:53:21.889 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records out 2026-02-18T04:53:21.889 INFO:teuthology.orchestra.run.trial191.stderr:512 bytes copied, 0.000150299 s, 3.4 MB/s 2026-02-18T04:53:21.890 DEBUG:teuthology.orchestra.run.trial191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-18T04:53:21.947 DEBUG:teuthology.orchestra.run.trial191:> stat /dev/vg_nvme/lv_3 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout:Device: 6h/6d Inode: 1313 Links: 1 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout:Access: 2026-02-18 04:53:20.849391000 +0000 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout:Modify: 2026-02-18 04:51:17.152112043 +0000 2026-02-18T04:53:22.003 INFO:teuthology.orchestra.run.trial191.stdout:Change: 2026-02-18 04:51:17.152112043 +0000 2026-02-18T04:53:22.004 INFO:teuthology.orchestra.run.trial191.stdout: Birth: 2026-02-18 04:51:17.152112043 +0000 2026-02-18T04:53:22.004 DEBUG:teuthology.orchestra.run.trial191:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-18T04:53:22.068 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records in 2026-02-18T04:53:22.068 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records out 2026-02-18T04:53:22.068 INFO:teuthology.orchestra.run.trial191.stderr:512 bytes copied, 0.000226821 s, 2.3 MB/s 2026-02-18T04:53:22.069 DEBUG:teuthology.orchestra.run.trial191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-18T04:53:22.126 DEBUG:teuthology.orchestra.run.trial191:> stat /dev/vg_nvme/lv_4 2026-02-18T04:53:22.182 INFO:teuthology.orchestra.run.trial191.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-18T04:53:22.182 INFO:teuthology.orchestra.run.trial191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:22.182 INFO:teuthology.orchestra.run.trial191.stdout:Device: 6h/6d Inode: 1299 Links: 1 2026-02-18T04:53:22.182 INFO:teuthology.orchestra.run.trial191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:22.182 INFO:teuthology.orchestra.run.trial191.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:22.183 INFO:teuthology.orchestra.run.trial191.stdout:Access: 2026-02-18 04:53:20.849391000 +0000 2026-02-18T04:53:22.183 INFO:teuthology.orchestra.run.trial191.stdout:Modify: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:22.183 INFO:teuthology.orchestra.run.trial191.stdout:Change: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:22.183 INFO:teuthology.orchestra.run.trial191.stdout: Birth: 2026-02-18 04:51:17.151112067 +0000 2026-02-18T04:53:22.183 DEBUG:teuthology.orchestra.run.trial191:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-18T04:53:22.245 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records in 2026-02-18T04:53:22.245 INFO:teuthology.orchestra.run.trial191.stderr:1+0 records out 2026-02-18T04:53:22.245 INFO:teuthology.orchestra.run.trial191.stderr:512 bytes copied, 0.000216241 s, 2.4 MB/s 2026-02-18T04:53:22.247 DEBUG:teuthology.orchestra.run.trial191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-18T04:53:22.305 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-18T04:53:22.305 DEBUG:teuthology.orchestra.run.trial197:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T04:53:22.323 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-18T04:53:22.324 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_1 2026-02-18T04:53:22.332 INFO:journalctl@ceph.mgr.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-b[24071]: /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-18T04:53:22.333 INFO:journalctl@ceph.mgr.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-b[24071]: 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-18T04:53:22.333 INFO:journalctl@ceph.mgr.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-b[24071]: from numpy import show_config as show_numpy_config 2026-02-18T04:53:22.380 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1312 Links: 1 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-18 04:53:08.347000550 +0000 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-18 04:51:16.773736090 +0000 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-18 04:51:16.773736090 +0000 2026-02-18T04:53:22.381 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-18 04:51:16.773736090 +0000 2026-02-18T04:53:22.381 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-18T04:53:22.445 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-18T04:53:22.446 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-18T04:53:22.446 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000169173 s, 3.0 MB/s 2026-02-18T04:53:22.447 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-18T04:53:22.504 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_2 2026-02-18T04:53:22.560 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-18T04:53:22.560 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1297 Links: 1 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-18 04:53:08.347000550 +0000 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-18 04:51:16.772736115 +0000 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-18 04:51:16.772736115 +0000 2026-02-18T04:53:22.561 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-18 04:51:16.772736115 +0000 2026-02-18T04:53:22.561 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-18T04:53:22.624 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-18T04:53:22.624 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-18T04:53:22.624 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000137955 s, 3.7 MB/s 2026-02-18T04:53:22.626 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-18T04:53:22.683 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_3 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1305 Links: 1 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-18 04:53:08.347000550 +0000 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-18 04:51:16.772736115 +0000 2026-02-18T04:53:22.739 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-18 04:51:16.772736115 +0000 2026-02-18T04:53:22.740 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-18 04:51:16.772736115 +0000 2026-02-18T04:53:22.740 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-18T04:53:22.799 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: Reconfiguring mgr.a (unknown last config time)... 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: Reconfiguring daemon mgr.a on trial079 2026-02-18T04:53:22.800 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.801 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.801 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:22.801 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.801 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:22.801 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:22 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.801 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-18T04:53:22.801 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-18T04:53:22.802 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000149217 s, 3.4 MB/s 2026-02-18T04:53:22.803 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-18T04:53:22.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: Reconfiguring mgr.a (unknown last config time)... 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: Reconfiguring daemon mgr.a on trial079 2026-02-18T04:53:22.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:22.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:22.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:22 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: Reconfiguring mgr.a (unknown last config time)... 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: Reconfiguring daemon mgr.a on trial079 2026-02-18T04:53:22.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:22.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:22.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:22.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:22 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:22.860 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_4 2026-02-18T04:53:22.919 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1284 Links: 1 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-18 04:53:08.348000526 +0000 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-18 04:51:16.771736139 +0000 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-18 04:51:16.771736139 +0000 2026-02-18T04:53:22.920 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-18 04:51:16.771736139 +0000 2026-02-18T04:53:22.921 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-18T04:53:22.983 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-18T04:53:22.983 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-18T04:53:22.983 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000136322 s, 3.8 MB/s 2026-02-18T04:53:22.984 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-18T04:53:23.042 INFO:tasks.cephadm:Deploying osd.0 on trial079 with /dev/vg_nvme/lv_4... 2026-02-18T04:53:23.042 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-18T04:53:23.160 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:23.611 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:53:23.629 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch daemon add osd trial079:vg_nvme/lv_4 --skip-validation 2026-02-18T04:53:23.746 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: Standby manager daemon b started 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-18T04:53:24.771 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.772 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:24.773 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:24.773 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:24 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:24.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: Standby manager daemon b started 2026-02-18T04:53:24.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:24.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:24 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: Standby manager daemon b started 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.? 10.20.193.191:0/3231014656' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:24.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:24.835 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:24 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:25.737 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial079:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:25.737 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: osd.default does not exist. Creating it now. 2026-02-18T04:53:25.737 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: Creating OSDs with service ID: default on trial079:['vg_nvme/lv_4'] 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: Marking host: trial079 for OSDSpec preview refresh. 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: Saving service osd.default spec with placement trial079 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3519065180' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be041e60-312c-4c68-a8a7-242221030b0f"} : dispatch 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3519065180' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be041e60-312c-4c68-a8a7-242221030b0f"}]': finished 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: osdmap e5: 1 total, 0 up, 1 in 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: mgrmap e14: a(active, since 29s), standbys: b 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-18T04:53:25.738 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:25 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1061994604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial079:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: osd.default does not exist. Creating it now. 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: Creating OSDs with service ID: default on trial079:['vg_nvme/lv_4'] 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: Marking host: trial079 for OSDSpec preview refresh. 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: Saving service osd.default spec with placement trial079 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3519065180' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be041e60-312c-4c68-a8a7-242221030b0f"} : dispatch 2026-02-18T04:53:25.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3519065180' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be041e60-312c-4c68-a8a7-242221030b0f"}]': finished 2026-02-18T04:53:25.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: osdmap e5: 1 total, 0 up, 1 in 2026-02-18T04:53:25.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:25.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: mgrmap e14: a(active, since 29s), standbys: b 2026-02-18T04:53:25.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-18T04:53:25.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:25 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1061994604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial079:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: osd.default does not exist. Creating it now. 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: Creating OSDs with service ID: default on trial079:['vg_nvme/lv_4'] 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: Marking host: trial079 for OSDSpec preview refresh. 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: Saving service osd.default spec with placement trial079 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3519065180' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be041e60-312c-4c68-a8a7-242221030b0f"} : dispatch 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3519065180' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be041e60-312c-4c68-a8a7-242221030b0f"}]': finished 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: osdmap e5: 1 total, 0 up, 1 in 2026-02-18T04:53:25.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:25.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: mgrmap e14: a(active, since 29s), standbys: b 2026-02-18T04:53:25.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-18T04:53:25.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:25 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1061994604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:26.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:26 trial079 ceph-mon[20734]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:26.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:26 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:53:26.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:26 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:26.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:26 trial197 ceph-mon[23300]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:26.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:26 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:53:26.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:26 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:26.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:26 trial191 ceph-mon[22977]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:26.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:26 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:53:26.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:26 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:27.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:27 trial197 ceph-mon[23300]: Deploying daemon osd.0 on trial079 2026-02-18T04:53:27.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:27 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:53:27.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:27 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:27.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:27 trial197 ceph-mon[23300]: Deploying daemon osd.0 on trial079 2026-02-18T04:53:27.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:27 trial079 ceph-mon[20734]: Deploying daemon osd.0 on trial079 2026-02-18T04:53:27.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:27 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:53:27.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:27 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:27.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:27 trial079 ceph-mon[20734]: Deploying daemon osd.0 on trial079 2026-02-18T04:53:27.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:27 trial191 ceph-mon[22977]: Deploying daemon osd.0 on trial079 2026-02-18T04:53:27.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:27 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:53:27.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:27 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:27.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:27 trial191 ceph-mon[22977]: Deploying daemon osd.0 on trial079 2026-02-18T04:53:28.549 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:28 trial079 ceph-mon[20734]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:28.549 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:28 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:28.549 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:28 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:28.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:28 trial197 ceph-mon[23300]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:28.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:28 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:28.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:28 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:28.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:28 trial191 ceph-mon[22977]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:28.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:28 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:28.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:28 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:30.686 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:30 trial079 ceph-mon[20734]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:30.686 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:30.686 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:30.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:30 trial197 ceph-mon[23300]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:30.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:30.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:30 trial191 ceph-mon[22977]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:30.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:30.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:31.259 INFO:teuthology.orchestra.run.trial079.stdout:Created osd(s) 0 on host 'trial079' 2026-02-18T04:53:31.300 DEBUG:teuthology.orchestra.run.trial079:osd.0> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.0.service 2026-02-18T04:53:31.303 INFO:tasks.cephadm:Deploying osd.1 on trial079 with /dev/vg_nvme/lv_3... 2026-02-18T04:53:31.303 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-18T04:53:31.461 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:31 trial079 ceph-mon[20734]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T04:53:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:31 trial197 ceph-mon[23300]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T04:53:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:31 trial191 ceph-mon[22977]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T04:53:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.374 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:53:32.394 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch daemon add osd trial079:vg_nvme/lv_3 --skip-validation 2026-02-18T04:53:32.513 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:53:32.780 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: osdmap e6: 1 total, 0 up, 1 in 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial079", "root=default"]} : dispatch 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.782 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:32 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0[34274]: 2026-02-18T04:53:32.497+0000 7fe8f792b640 -1 osd.0 0 waiting for initial osdmap 2026-02-18T04:53:32.782 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:32 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0[34274]: 2026-02-18T04:53:32.499+0000 7fe8f2f13640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-18T04:53:32.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: osdmap e6: 1 total, 0 up, 1 in 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial079", "root=default"]} : dispatch 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:32.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: osdmap e6: 1 total, 0 up, 1 in 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial079", "root=default"]} : dispatch 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial079", "root=default"]}]': finished 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: osdmap e7: 1 total, 0 up, 1 in 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:33.769 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:33.770 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial079", "root=default"]}]': finished 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: osdmap e7: 1 total, 0 up, 1 in 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:33.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial079", "root=default"]}]': finished 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: osdmap e7: 1 total, 0 up, 1 in 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:33.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: purged_snaps scrub starts 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial079:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: osd.default does not exist. Creating it now. 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: Creating OSDs with service ID: default on trial079:['vg_nvme/lv_3'] 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: Marking host: trial079 for OSDSpec preview refresh. 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: Saving service osd.default spec with placement trial079 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: Detected new or changed devices on trial079 2026-02-18T04:53:34.774 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: Adjusting osd_memory_target on trial079 to 84047M 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125] boot 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: osdmap e8: 1 total, 1 up, 1 in 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3107573900' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef7a2da1-6258-451a-92af-04305a774f1a"} : dispatch 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3107573900' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef7a2da1-6258-451a-92af-04305a774f1a"}]': finished 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: osdmap e9: 2 total, 1 up, 2 in 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:34.775 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:34 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2051030128' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:34.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: purged_snaps scrub starts 2026-02-18T04:53:34.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: purged_snaps scrub ok 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial079:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: osd.default does not exist. Creating it now. 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: Creating OSDs with service ID: default on trial079:['vg_nvme/lv_3'] 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: Marking host: trial079 for OSDSpec preview refresh. 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: Saving service osd.default spec with placement trial079 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: Detected new or changed devices on trial079 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: Adjusting osd_memory_target on trial079 to 84047M 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125] boot 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: osdmap e8: 1 total, 1 up, 1 in 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:34.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3107573900' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef7a2da1-6258-451a-92af-04305a774f1a"} : dispatch 2026-02-18T04:53:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3107573900' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef7a2da1-6258-451a-92af-04305a774f1a"}]': finished 2026-02-18T04:53:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: osdmap e9: 2 total, 1 up, 2 in 2026-02-18T04:53:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:34 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2051030128' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:34.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: purged_snaps scrub starts 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial079:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: osd.default does not exist. Creating it now. 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: Creating OSDs with service ID: default on trial079:['vg_nvme/lv_3'] 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: Marking host: trial079 for OSDSpec preview refresh. 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: Saving service osd.default spec with placement trial079 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: Detected new or changed devices on trial079 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: Adjusting osd_memory_target on trial079 to 84047M 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: osd.0 [v2:10.20.193.79:6802/1665825125,v1:10.20.193.79:6803/1665825125] boot 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: osdmap e8: 1 total, 1 up, 1 in 2026-02-18T04:53:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T04:53:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3107573900' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ef7a2da1-6258-451a-92af-04305a774f1a"} : dispatch 2026-02-18T04:53:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3107573900' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef7a2da1-6258-451a-92af-04305a774f1a"}]': finished 2026-02-18T04:53:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: osdmap e9: 2 total, 1 up, 2 in 2026-02-18T04:53:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:34 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2051030128' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:35.697 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:35 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:53:35.697 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:35 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:35.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:35 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:53:35.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:35 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:35.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:35 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:53:35.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:35 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:36.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:36 trial079 ceph-mon[20734]: Deploying daemon osd.1 on trial079 2026-02-18T04:53:36.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:36 trial079 ceph-mon[20734]: pgmap v19: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:36.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:36 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:53:36.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:36 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:36.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:36 trial079 ceph-mon[20734]: Deploying daemon osd.1 on trial079 2026-02-18T04:53:36.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:36 trial197 ceph-mon[23300]: Deploying daemon osd.1 on trial079 2026-02-18T04:53:36.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:36 trial197 ceph-mon[23300]: pgmap v19: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:36.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:36 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:53:36.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:36 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:36.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:36 trial197 ceph-mon[23300]: Deploying daemon osd.1 on trial079 2026-02-18T04:53:36.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:36 trial191 ceph-mon[22977]: Deploying daemon osd.1 on trial079 2026-02-18T04:53:36.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:36 trial191 ceph-mon[22977]: pgmap v19: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:36.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:36 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:53:36.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:36 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:36.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:36 trial191 ceph-mon[22977]: Deploying daemon osd.1 on trial079 2026-02-18T04:53:38.428 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:38.428 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:38.428 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:38 trial079 ceph-mon[20734]: pgmap v20: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:38.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:38 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:38.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:38 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:38.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:38 trial197 ceph-mon[23300]: pgmap v20: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:38.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:38.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:38.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:38 trial191 ceph-mon[22977]: pgmap v20: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:40.203 INFO:teuthology.orchestra.run.trial079.stdout:Created osd(s) 1 on host 'trial079' 2026-02-18T04:53:40.243 DEBUG:teuthology.orchestra.run.trial079:osd.1> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.1.service 2026-02-18T04:53:40.244 INFO:tasks.cephadm:Deploying osd.2 on trial191 with /dev/vg_nvme/lv_4... 2026-02-18T04:53:40.245 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-18T04:53:40.361 INFO:teuthology.orchestra.run.trial191.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.b/config 2026-02-18T04:53:40.520 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:40 trial191 ceph-mon[22977]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:40.520 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.520 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.520 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:40 trial191 ceph-mon[22977]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-18T04:53:40.520 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.520 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.818 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:53:40.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:40 trial079 ceph-mon[20734]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:40.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:40 trial079 ceph-mon[20734]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-18T04:53:40.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:40 trial197 ceph-mon[23300]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:40 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:40 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:40 trial197 ceph-mon[23300]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:40 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:40 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:40.834 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch daemon add osd trial191:vg_nvme/lv_4 --skip-validation 2026-02-18T04:53:40.952 INFO:teuthology.orchestra.run.trial191.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.b/config 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: osdmap e10: 2 total, 1 up, 2 in 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial079", "root=default"]} : dispatch 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:41.698 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:41.699 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.699 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: osdmap e10: 2 total, 1 up, 2 in 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial079", "root=default"]} : dispatch 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.745 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:41 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1[40764]: 2026-02-18T04:53:41.465+0000 7fd515c25640 -1 osd.1 0 waiting for initial osdmap 2026-02-18T04:53:41.745 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:41 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1[40764]: 2026-02-18T04:53:41.468+0000 7fd51120d640 -1 osd.1 11 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-18T04:53:41.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-18T04:53:41.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: osdmap e10: 2 total, 1 up, 2 in 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial079", "root=default"]} : dispatch 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:41.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:41 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial191:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:42.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: osd.default does not exist. Creating it now. 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: Creating OSDs with service ID: default on trial191:['vg_nvme/lv_4'] 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: Marking host: trial191 for OSDSpec preview refresh. 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: Saving service osd.default spec with placement trial191 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial079", "root=default"]}]': finished 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: osdmap e11: 2 total, 1 up, 2 in 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='client.? 10.20.193.191:0/819370870' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"} : dispatch 2026-02-18T04:53:42.583 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"}]': finished 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152] boot 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: osdmap e12: 3 total, 2 up, 3 in 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:42.584 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.585 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:42.585 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:42.585 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:42.585 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:42 trial191 ceph-mon[22977]: from='client.? 10.20.193.191:0/2785034392' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial191:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: osd.default does not exist. Creating it now. 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: Creating OSDs with service ID: default on trial191:['vg_nvme/lv_4'] 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: Marking host: trial191 for OSDSpec preview refresh. 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: Saving service osd.default spec with placement trial191 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:42.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial079", "root=default"]}]': finished 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: osdmap e11: 2 total, 1 up, 2 in 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='client.? 10.20.193.191:0/819370870' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"} : dispatch 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"} : dispatch 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"}]': finished 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152] boot 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: osdmap e12: 3 total, 2 up, 3 in 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:42.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:42.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:42 trial079 ceph-mon[20734]: from='client.? 10.20.193.191:0/2785034392' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial191:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: osd.default does not exist. Creating it now. 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: Creating OSDs with service ID: default on trial191:['vg_nvme/lv_4'] 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: Marking host: trial191 for OSDSpec preview refresh. 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: Saving service osd.default spec with placement trial191 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-18T04:53:42.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial079", "root=default"]}]': finished 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: osdmap e11: 2 total, 1 up, 2 in 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='client.? 10.20.193.191:0/819370870' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"} : dispatch 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"} : dispatch 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b469e968-2e54-46e8-a4de-f608f31441a8"}]': finished 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: osd.1 [v2:10.20.193.79:6810/2001466152,v1:10.20.193.79:6811/2001466152] boot 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: osdmap e12: 3 total, 2 up, 3 in 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:42.832 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:42 trial197 ceph-mon[23300]: from='client.? 10.20.193.191:0/2785034392' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:43.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:43 trial191 ceph-mon[22977]: purged_snaps scrub starts 2026-02-18T04:53:43.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:43 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:53:43.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:43 trial191 ceph-mon[22977]: Detected new or changed devices on trial079 2026-02-18T04:53:43.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:43 trial191 ceph-mon[22977]: Adjusting osd_memory_target on trial079 to 42023M 2026-02-18T04:53:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:43 trial079 ceph-mon[20734]: purged_snaps scrub starts 2026-02-18T04:53:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:43 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:53:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:43 trial079 ceph-mon[20734]: Detected new or changed devices on trial079 2026-02-18T04:53:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:43 trial079 ceph-mon[20734]: Adjusting osd_memory_target on trial079 to 42023M 2026-02-18T04:53:43.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:43 trial197 ceph-mon[23300]: purged_snaps scrub starts 2026-02-18T04:53:43.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:43 trial197 ceph-mon[23300]: purged_snaps scrub ok 2026-02-18T04:53:43.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:43 trial197 ceph-mon[23300]: Detected new or changed devices on trial079 2026-02-18T04:53:43.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:43 trial197 ceph-mon[23300]: Adjusting osd_memory_target on trial079 to 42023M 2026-02-18T04:53:44.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:44 trial079 ceph-mon[20734]: pgmap v26: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:44.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:44 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:53:44.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:44 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:44.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:44 trial079 ceph-mon[20734]: Deploying daemon osd.2 on trial191 2026-02-18T04:53:44.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:44 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:53:44.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:44 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:44.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:44 trial197 ceph-mon[23300]: pgmap v26: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:44.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:44 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:53:44.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:44 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:44.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:44 trial197 ceph-mon[23300]: Deploying daemon osd.2 on trial191 2026-02-18T04:53:44.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:44 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:53:44.831 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:44 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:44.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:44 trial191 ceph-mon[22977]: pgmap v26: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:44.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:44 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:53:44.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:44 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:44.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:44 trial191 ceph-mon[22977]: Deploying daemon osd.2 on trial191 2026-02-18T04:53:44.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:44 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:53:44.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:44 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:45.713 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:45 trial191 ceph-mon[22977]: Deploying daemon osd.2 on trial191 2026-02-18T04:53:45.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:45 trial079 ceph-mon[20734]: Deploying daemon osd.2 on trial191 2026-02-18T04:53:45.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:45 trial197 ceph-mon[23300]: Deploying daemon osd.2 on trial191 2026-02-18T04:53:46.763 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:46 trial191 ceph-mon[22977]: pgmap v27: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:46.763 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:46 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:46.763 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:46 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:46.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:46 trial079 ceph-mon[20734]: pgmap v27: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:46.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:46 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:46.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:46 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:46.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:46 trial197 ceph-mon[23300]: pgmap v27: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:46.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:46 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:46.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:46 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:48.392 INFO:teuthology.orchestra.run.trial191.stdout:Created osd(s) 2 on host 'trial191' 2026-02-18T04:53:48.432 DEBUG:teuthology.orchestra.run.trial191:osd.2> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.2.service 2026-02-18T04:53:48.435 INFO:tasks.cephadm:Deploying osd.3 on trial191 with /dev/vg_nvme/lv_3... 2026-02-18T04:53:48.435 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-18T04:53:48.591 INFO:teuthology.orchestra.run.trial191.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.b/config 2026-02-18T04:53:49.044 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:49.044 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.045 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.045 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: from='osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T04:53:49.045 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T04:53:49.045 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.045 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:48 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.076 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: from='osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:48 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:49.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: from='osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T04:53:49.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T04:53:49.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:48 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.537 INFO:teuthology.orchestra.run.trial191.stdout: 2026-02-18T04:53:49.554 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch daemon add osd trial191:vg_nvme/lv_3 --skip-validation 2026-02-18T04:53:49.672 INFO:teuthology.orchestra.run.trial191.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.b/config 2026-02-18T04:53:49.895 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-18T04:53:49.895 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: osdmap e13: 3 total, 2 up, 3 in 2026-02-18T04:53:49.895 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:49.895 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.896 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.896 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:49 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2[28532]: 2026-02-18T04:53:49.635+0000 7f68e1f86640 -1 osd.2 0 waiting for initial osdmap 2026-02-18T04:53:49.897 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:49 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2[28532]: 2026-02-18T04:53:49.637+0000 7f68dd56e640 -1 osd.2 14 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: osdmap e13: 3 total, 2 up, 3 in 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.900 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.901 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:49.901 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.901 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.901 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:49.901 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-18T04:53:50.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: osdmap e13: 3 total, 2 up, 3 in 2026-02-18T04:53:50.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:50.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:49 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]}]': finished 2026-02-18T04:53:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: osdmap e14: 3 total, 2 up, 3 in 2026-02-18T04:53:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:50.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:51.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]}]': finished 2026-02-18T04:53:51.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: osdmap e14: 3 total, 2 up, 3 in 2026-02-18T04:53:51.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:51.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:51.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial191", "root=default"]}]': finished 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: osdmap e14: 3 total, 2 up, 3 in 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:51.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:50 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: purged_snaps scrub starts 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='client.24203 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial191:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: osd.default does not exist. Creating it now. 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: Creating OSDs with service ID: default on trial191:['vg_nvme/lv_3'] 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: Marking host: trial191 for OSDSpec preview refresh. 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: Saving service osd.default spec with placement trial191 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: Detected new or changed devices on trial191 2026-02-18T04:53:51.903 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: Adjusting osd_memory_target on trial191 to 84047M 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480] boot 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: osdmap e15: 3 total, 3 up, 3 in 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='client.? 10.20.193.191:0/224885270' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"} : dispatch 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"} : dispatch 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"}]': finished 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: osdmap e16: 4 total, 3 up, 4 in 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='client.? 10.20.193.191:0/3654184114' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:51.904 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' 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-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: purged_snaps scrub starts 2026-02-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='client.24203 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial191:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: osd.default does not exist. Creating it now. 2026-02-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: Creating OSDs with service ID: default on trial191:['vg_nvme/lv_3'] 2026-02-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: Marking host: trial191 for OSDSpec preview refresh. 2026-02-18T04:53:52.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: Saving service osd.default spec with placement trial191 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: Detected new or changed devices on trial191 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: Adjusting osd_memory_target on trial191 to 84047M 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480] boot 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: osdmap e15: 3 total, 3 up, 3 in 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='client.? 10.20.193.191:0/224885270' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"} : dispatch 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"} : dispatch 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"}]': finished 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: osdmap e16: 4 total, 3 up, 4 in 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:52.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='client.? 10.20.193.191:0/3654184114' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:52.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' 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-18T04:53:52.079 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: purged_snaps scrub starts 2026-02-18T04:53:52.079 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: purged_snaps scrub ok 2026-02-18T04:53:52.079 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='client.24203 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial191:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: osd.default does not exist. Creating it now. 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: Creating OSDs with service ID: default on trial191:['vg_nvme/lv_3'] 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: Marking host: trial191 for OSDSpec preview refresh. 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: Saving service osd.default spec with placement trial191 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: Detected new or changed devices on trial191 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: Adjusting osd_memory_target on trial191 to 84047M 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: osd.2 [v2:10.20.193.191:6800/887352480,v1:10.20.193.191:6801/887352480] boot 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: osdmap e15: 3 total, 3 up, 3 in 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='client.? 10.20.193.191:0/224885270' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"} : dispatch 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"} : dispatch 2026-02-18T04:53:52.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "23b091a7-496f-445c-bc33-6acbc292459b"}]': finished 2026-02-18T04:53:52.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: osdmap e16: 4 total, 3 up, 4 in 2026-02-18T04:53:52.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:52.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='client.? 10.20.193.191:0/3654184114' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:53:52.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:51 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' 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-18T04:53:52.743 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: pgmap v34: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:52.743 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' 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-18T04:53:52.744 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: osdmap e17: 4 total, 3 up, 4 in 2026-02-18T04:53:52.744 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:52.744 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:53:52.744 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:53:52.744 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: pgmap v34: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' 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-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: osdmap e17: 4 total, 3 up, 4 in 2026-02-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:53:53.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: pgmap v34: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' 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-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: osdmap e17: 4 total, 3 up, 4 in 2026-02-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:53:53.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:52 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:53.261 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33513]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33513]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33513]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33513]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33521]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33521]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33521]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.262 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33521]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45330]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2026-02-18T04:53:53.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45330]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45330]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45330]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45334]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme0n1 2026-02-18T04:53:53.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45334]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45334]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45334]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.578 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45314]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-18T04:53:53.578 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45314]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.578 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45314]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45314]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45318]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45318]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45318]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45318]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45322]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45322]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45322]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.579 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45322]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.580 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45326]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-18T04:53:53.580 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45326]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.580 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45326]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.580 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:53:53 trial079 sudo[45326]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.580 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24733]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-18T04:53:53.580 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24733]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.580 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24733]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.580 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24733]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.581 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24737]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-18T04:53:53.581 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24737]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.581 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24737]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.581 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 sudo[24737]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33557]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33557]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33557]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33557]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33564]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33564]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33564]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T04:53:53.637 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 sudo[33564]: pam_unix(sudo:session): session closed for user root 2026-02-18T04:53:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: Deploying daemon osd.3 on trial191 2026-02-18T04:53:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:53:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-18T04:53:54.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: osdmap e18: 4 total, 3 up, 4 in 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.078 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.079 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: Deploying daemon osd.3 on trial191 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: osdmap e18: 4 total, 3 up, 4 in 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.080 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.081 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:53 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: Deploying daemon osd.3 on trial191 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:53:54.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: osdmap e18: 4 total, 3 up, 4 in 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T04:53:54.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.911 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: Deploying daemon osd.3 on trial191 2026-02-18T04:53:54.912 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:54.912 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: osdmap e19: 4 total, 3 up, 4 in 2026-02-18T04:53:54.912 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:54.912 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.912 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:54.912 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:54 trial191 ceph-mon[22977]: mgrmap e15: a(active, since 59s), standbys: b 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: Deploying daemon osd.3 on trial191 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: osdmap e19: 4 total, 3 up, 4 in 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:55.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:54 trial079 ceph-mon[20734]: mgrmap e15: a(active, since 59s), standbys: b 2026-02-18T04:53:55.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: Deploying daemon osd.3 on trial191 2026-02-18T04:53:55.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:55.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: osdmap e19: 4 total, 3 up, 4 in 2026-02-18T04:53:55.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:55.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:55.079 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:55.079 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:54 trial197 ceph-mon[23300]: mgrmap e15: a(active, since 59s), standbys: b 2026-02-18T04:53:56.718 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:56 trial191 ceph-mon[22977]: pgmap v39: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:56.718 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:56 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:56.719 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:56 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:57.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:56 trial079 ceph-mon[20734]: pgmap v39: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:57.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:57.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:56 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:57.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:56 trial197 ceph-mon[23300]: pgmap v39: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:57.077 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:56 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:57.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:56 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:57.252 INFO:teuthology.orchestra.run.trial191.stdout:Created osd(s) 3 on host 'trial191' 2026-02-18T04:53:57.296 DEBUG:teuthology.orchestra.run.trial191:osd.3> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.3.service 2026-02-18T04:53:57.298 INFO:tasks.cephadm:Deploying osd.4 on trial197 with /dev/vg_nvme/lv_4... 2026-02-18T04:53:57.299 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-18T04:53:57.418 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.c/config 2026-02-18T04:53:57.879 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:53:57.897 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch daemon add osd trial197:vg_nvme/lv_4 --skip-validation 2026-02-18T04:53:58.015 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.c/config 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.410 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:58 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.544 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:58 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:58.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:58 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:53:59.254 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:53:58 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3[34984]: 2026-02-18T04:53:58.965+0000 7f937de4b640 -1 osd.3 0 waiting for initial osdmap 2026-02-18T04:53:59.254 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:53:58 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3[34984]: 2026-02-18T04:53:58.968+0000 7f9379433640 -1 osd.3 21 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-18T04:53:59.298 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: osdmap e20: 4 total, 3 up, 4 in 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='client.24235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: osd.default does not exist. Creating it now. 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_4'] 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: Saving service osd.default spec with placement trial197 2026-02-18T04:53:59.299 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='client.? 10.20.193.197:0/4201532160' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"} : dispatch 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"} : dispatch 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]}]': finished 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"}]': finished 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: osdmap e21: 5 total, 3 up, 5 in 2026-02-18T04:53:59.300 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:59.301 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:53:59 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: osdmap e20: 4 total, 3 up, 4 in 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='client.24235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: osd.default does not exist. Creating it now. 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_4'] 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: Saving service osd.default spec with placement trial197 2026-02-18T04:53:59.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='client.? 10.20.193.197:0/4201532160' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]}]': finished 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"}]': finished 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: osdmap e21: 5 total, 3 up, 5 in 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:59.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:53:59 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-18T04:53:59.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: osdmap e20: 4 total, 3 up, 4 in 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='client.24235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: osd.default does not exist. Creating it now. 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_4'] 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: Saving service osd.default spec with placement trial197 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='client.? 10.20.193.197:0/4201532160' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial191", "root=default"]}]': finished 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05402cfb-e0e9-4915-ab29-6e12253761c5"}]': finished 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: osdmap e21: 5 total, 3 up, 5 in 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-18T04:53:59.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:53:59 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.389 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: purged_snaps scrub starts 2026-02-18T04:54:00.389 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: purged_snaps scrub ok 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: Detected new or changed devices on trial191 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: Adjusting osd_memory_target on trial191 to 42023M 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='client.? 10.20.193.197:0/3204983998' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151] boot 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: osdmap e22: 5 total, 4 up, 5 in 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:54:00.390 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:00 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:00.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: purged_snaps scrub starts 2026-02-18T04:54:00.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:54:00.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: Detected new or changed devices on trial191 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: Adjusting osd_memory_target on trial191 to 42023M 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='client.? 10.20.193.197:0/3204983998' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151] boot 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: osdmap e22: 5 total, 4 up, 5 in 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:54:00.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:00 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: purged_snaps scrub starts 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: Detected new or changed devices on trial191 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: Adjusting osd_memory_target on trial191 to 42023M 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='client.? 10.20.193.197:0/3204983998' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:00.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: osd.3 [v2:10.20.193.191:6808/1389111151,v1:10.20.193.191:6809/1389111151] boot 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: osdmap e22: 5 total, 4 up, 5 in 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T04:54:00.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:00 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:01.489 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T04:54:01.490 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:01.490 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: Deploying daemon osd.4 on trial197 2026-02-18T04:54:01.490 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T04:54:01.490 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:01.490 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: osdmap e23: 5 total, 4 up, 5 in 2026-02-18T04:54:01.490 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:01 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:01.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T04:54:01.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:01.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: Deploying daemon osd.4 on trial197 2026-02-18T04:54:01.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T04:54:01.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:01.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: osdmap e23: 5 total, 4 up, 5 in 2026-02-18T04:54:01.578 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: Deploying daemon osd.4 on trial197 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: osdmap e23: 5 total, 4 up, 5 in 2026-02-18T04:54:01.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:01 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:02.559 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:02 trial197 ceph-mon[23300]: Deploying daemon osd.4 on trial197 2026-02-18T04:54:02.559 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:02 trial197 ceph-mon[23300]: pgmap v46: 1 pgs: 1 unknown; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:02.560 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:02 trial197 ceph-mon[23300]: osdmap e24: 5 total, 4 up, 5 in 2026-02-18T04:54:02.560 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:02 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:02.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:02 trial079 ceph-mon[20734]: Deploying daemon osd.4 on trial197 2026-02-18T04:54:02.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:02 trial079 ceph-mon[20734]: pgmap v46: 1 pgs: 1 unknown; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:02.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:02 trial079 ceph-mon[20734]: osdmap e24: 5 total, 4 up, 5 in 2026-02-18T04:54:02.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:02.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:02 trial191 ceph-mon[22977]: Deploying daemon osd.4 on trial197 2026-02-18T04:54:02.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:02 trial191 ceph-mon[22977]: pgmap v46: 1 pgs: 1 unknown; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:02.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:02 trial191 ceph-mon[22977]: osdmap e24: 5 total, 4 up, 5 in 2026-02-18T04:54:02.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:03.704 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:03 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:03.704 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:03 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:03.704 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:03 trial197 ceph-mon[23300]: osdmap e25: 5 total, 4 up, 5 in 2026-02-18T04:54:03.704 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:03 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:04.076 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:04.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:04.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:03 trial079 ceph-mon[20734]: osdmap e25: 5 total, 4 up, 5 in 2026-02-18T04:54:04.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:03 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:04.081 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:03 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:04.081 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:03 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:04.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:03 trial191 ceph-mon[22977]: osdmap e25: 5 total, 4 up, 5 in 2026-02-18T04:54:04.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:03 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:04.803 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:04 trial197 ceph-mon[23300]: pgmap v49: 1 pgs: 1 unknown; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:04.804 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:04 trial197 ceph-mon[23300]: osdmap e26: 5 total, 4 up, 5 in 2026-02-18T04:54:04.804 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:04 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:05.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:04 trial079 ceph-mon[20734]: pgmap v49: 1 pgs: 1 unknown; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:05.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:04 trial079 ceph-mon[20734]: osdmap e26: 5 total, 4 up, 5 in 2026-02-18T04:54:05.077 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:04 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:05.081 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:04 trial191 ceph-mon[22977]: pgmap v49: 1 pgs: 1 unknown; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:05.081 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:04 trial191 ceph-mon[22977]: osdmap e26: 5 total, 4 up, 5 in 2026-02-18T04:54:05.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:04 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:05.616 INFO:teuthology.orchestra.run.trial197.stdout:Created osd(s) 4 on host 'trial197' 2026-02-18T04:54:05.657 DEBUG:teuthology.orchestra.run.trial197:osd.4> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.4.service 2026-02-18T04:54:05.659 INFO:tasks.cephadm:Deploying osd.5 on trial197 with /dev/vg_nvme/lv_3... 2026-02-18T04:54:05.660 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-18T04:54:05.819 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.c/config 2026-02-18T04:54:06.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 130 KiB/s, 0 objects/s recovering 2026-02-18T04:54:06.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: from='osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T04:54:06.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T04:54:06.078 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.079 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:05 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 130 KiB/s, 0 objects/s recovering 2026-02-18T04:54:06.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: from='osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T04:54:06.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T04:54:06.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:05 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 130 KiB/s, 0 objects/s recovering 2026-02-18T04:54:06.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: from='osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T04:54:06.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T04:54:06.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:05 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:06.784 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-18T04:54:06.800 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph orch daemon add osd trial197:vg_nvme/lv_3 --skip-validation 2026-02-18T04:54:06.917 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.c/config 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: osdmap e27: 5 total, 4 up, 5 in 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:07.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:06 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.135 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:06 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4[28538]: 2026-02-18T04:54:06.884+0000 7f650b3af640 -1 osd.4 0 waiting for initial osdmap 2026-02-18T04:54:07.135 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:06 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4[28538]: 2026-02-18T04:54:06.887+0000 7f650298f640 -1 osd.4 28 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: osdmap e27: 5 total, 4 up, 5 in 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.184 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:07.185 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.185 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.185 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.185 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:06 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.326 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-18T04:54:07.326 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: osdmap e27: 5 total, 4 up, 5 in 2026-02-18T04:54:07.326 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:07.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:06 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-18T04:54:08.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: osdmap e28: 5 total, 4 up, 5 in 2026-02-18T04:54:08.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:08.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='client.24265 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: osd.default does not exist. Creating it now. 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_3'] 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: Saving service osd.default spec with placement trial197 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 140 KiB/s, 0 objects/s recovering 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: Detected new or changed devices on trial197 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:08.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:08.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:08.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:07 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: osdmap e28: 5 total, 4 up, 5 in 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='client.24265 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: osd.default does not exist. Creating it now. 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_3'] 2026-02-18T04:54:08.272 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: Saving service osd.default spec with placement trial197 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 140 KiB/s, 0 objects/s recovering 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: Detected new or changed devices on trial197 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:08.273 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:08.274 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:07 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: osdmap e28: 5 total, 4 up, 5 in 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='client.24265 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: osd.default does not exist. Creating it now. 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_3'] 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: Saving service osd.default spec with placement trial197 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 140 KiB/s, 0 objects/s recovering 2026-02-18T04:54:08.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: Detected new or changed devices on trial197 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:08.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:07 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: purged_snaps scrub starts 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: purged_snaps scrub ok 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: Adjusting osd_memory_target on trial197 to 88143M 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043] boot 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: osdmap e29: 5 total, 5 up, 5 in 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:09.177 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: from='client.? 10.20.193.197:0/3728364245' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"} : dispatch 2026-02-18T04:54:09.178 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"} : dispatch 2026-02-18T04:54:09.178 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"}]': finished 2026-02-18T04:54:09.178 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: osdmap e30: 6 total, 5 up, 6 in 2026-02-18T04:54:09.178 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:09.178 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:08 trial197 ceph-mon[23300]: from='client.? 10.20.193.197:0/3281865156' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: purged_snaps scrub starts 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: Adjusting osd_memory_target on trial197 to 88143M 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043] boot 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: osdmap e29: 5 total, 5 up, 5 in 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: from='client.? 10.20.193.197:0/3728364245' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"} : dispatch 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"} : dispatch 2026-02-18T04:54:09.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"}]': finished 2026-02-18T04:54:09.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: osdmap e30: 6 total, 5 up, 6 in 2026-02-18T04:54:09.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:09.328 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:08 trial079 ceph-mon[20734]: from='client.? 10.20.193.197:0/3281865156' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:54:09.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: purged_snaps scrub starts 2026-02-18T04:54:09.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: Adjusting osd_memory_target on trial197 to 88143M 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: osd.4 [v2:10.20.193.197:6800/713032043,v1:10.20.193.197:6801/713032043] boot 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: osdmap e29: 5 total, 5 up, 5 in 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: from='client.? 10.20.193.197:0/3728364245' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"} : dispatch 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"} : dispatch 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c218070c-ddfa-4573-a2c8-7fef84c79e31"}]': finished 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: osdmap e30: 6 total, 5 up, 6 in 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:09.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:08 trial191 ceph-mon[22977]: from='client.? 10.20.193.197:0/3281865156' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T04:54:10.211 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: osdmap e31: 6 total, 5 up, 6 in 2026-02-18T04:54:10.212 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:10.212 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: pgmap v58: 1 pgs: 1 active+clean; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:10.212 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:10.212 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:10.212 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:10.212 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:10 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: osdmap e31: 6 total, 5 up, 6 in 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: pgmap v58: 1 pgs: 1 active+clean; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:10.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:10 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:10.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: osdmap e31: 6 total, 5 up, 6 in 2026-02-18T04:54:10.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:10.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: pgmap v58: 1 pgs: 1 active+clean; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:10.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:10.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:10.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:10.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:10 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:11.506 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:11 trial197 ceph-mon[23300]: Deploying daemon osd.5 on trial197 2026-02-18T04:54:11.506 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:11 trial197 ceph-mon[23300]: Deploying daemon osd.5 on trial197 2026-02-18T04:54:11.507 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:11 trial197 ceph-mon[23300]: osdmap e32: 6 total, 5 up, 6 in 2026-02-18T04:54:11.507 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:11 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:11.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:11 trial079 ceph-mon[20734]: Deploying daemon osd.5 on trial197 2026-02-18T04:54:11.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:11 trial079 ceph-mon[20734]: Deploying daemon osd.5 on trial197 2026-02-18T04:54:11.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:11 trial079 ceph-mon[20734]: osdmap e32: 6 total, 5 up, 6 in 2026-02-18T04:54:11.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:11 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:11.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:11 trial191 ceph-mon[22977]: Deploying daemon osd.5 on trial197 2026-02-18T04:54:11.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:11 trial191 ceph-mon[22977]: Deploying daemon osd.5 on trial197 2026-02-18T04:54:11.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:11 trial191 ceph-mon[22977]: osdmap e32: 6 total, 5 up, 6 in 2026-02-18T04:54:11.582 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:11 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:12.302 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:12 trial197 ceph-mon[23300]: osdmap e33: 6 total, 5 up, 6 in 2026-02-18T04:54:12.302 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:12 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:12.302 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:12 trial197 ceph-mon[23300]: pgmap v61: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 163 KiB/s, 0 objects/s recovering 2026-02-18T04:54:12.303 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:12 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:12.303 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:12 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:12.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:12 trial079 ceph-mon[20734]: osdmap e33: 6 total, 5 up, 6 in 2026-02-18T04:54:12.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:12 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:12.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:12 trial079 ceph-mon[20734]: pgmap v61: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 163 KiB/s, 0 objects/s recovering 2026-02-18T04:54:12.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:12 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:12.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:12 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:12.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:12 trial191 ceph-mon[22977]: osdmap e33: 6 total, 5 up, 6 in 2026-02-18T04:54:12.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:12 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:12.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:12 trial191 ceph-mon[22977]: pgmap v61: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 163 KiB/s, 0 objects/s recovering 2026-02-18T04:54:12.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:12 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:12.581 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:12 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.713 INFO:teuthology.orchestra.run.trial197.stdout:Created osd(s) 5 on host 'trial197' 2026-02-18T04:54:14.724 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:14 trial197 ceph-mon[23300]: pgmap v62: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 110 KiB/s, 0 objects/s recovering 2026-02-18T04:54:14.724 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:14 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.725 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:14 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.754 DEBUG:teuthology.orchestra.run.trial197:osd.5> sudo journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.5.service 2026-02-18T04:54:14.756 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2026-02-18T04:54:14.757 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T04:54:14.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:14 trial079 ceph-mon[20734]: pgmap v62: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 110 KiB/s, 0 objects/s recovering 2026-02-18T04:54:14.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:14 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.781 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:14 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:14 trial191 ceph-mon[22977]: pgmap v62: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 110 KiB/s, 0 objects/s recovering 2026-02-18T04:54:14.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:14 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:14 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:14.877 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:15.110 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:15.171 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":33,"num_osds":6,"num_up_osds":5,"osd_up_since":1771390447,"num_in_osds":6,"osd_in_since":1771390448,"num_remapped_pgs":0} 2026-02-18T04:54:15.577 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3555275970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:15 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3555275970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:15 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:15.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3555275970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:15.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:15 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:16.172 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T04:54:16.294 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:16.520 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:16.561 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":35,"num_osds":6,"num_up_osds":5,"osd_up_since":1771390447,"num_in_osds":6,"osd_in_since":1771390448,"num_remapped_pgs":0} 2026-02-18T04:54:16.712 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: pgmap v63: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 92 KiB/s, 0 objects/s recovering 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: osdmap e34: 6 total, 5 up, 6 in 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.713 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:16 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.714 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:16 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5[34983]: 2026-02-18T04:54:16.473+0000 7fd9efb25640 -1 osd.5 0 waiting for initial osdmap 2026-02-18T04:54:16.714 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:16 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5[34983]: 2026-02-18T04:54:16.477+0000 7fd9eb10d640 -1 osd.5 35 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: pgmap v63: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 92 KiB/s, 0 objects/s recovering 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: osdmap e34: 6 total, 5 up, 6 in 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:16 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: pgmap v63: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 92 KiB/s, 0 objects/s recovering 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: osdmap e34: 6 total, 5 up, 6 in 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:16.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:16 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.562 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: osdmap e35: 6 total, 5 up, 6 in 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: Detected new or changed devices on trial197 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/4076527353' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: Adjusting osd_memory_target on trial197 to 44071M 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:17.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:17 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:17.680 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:17.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-18T04:54:17.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: osdmap e35: 6 total, 5 up, 6 in 2026-02-18T04:54:17.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:17.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:17.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: Detected new or changed devices on trial197 2026-02-18T04:54:17.727 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/4076527353' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: Adjusting osd_memory_target on trial197 to 44071M 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:17.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:17.729 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.729 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:17.729 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:17.729 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:17 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:17.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-18T04:54:17.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: osdmap e35: 6 total, 5 up, 6 in 2026-02-18T04:54:17.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:17.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:17.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: Detected new or changed devices on trial197 2026-02-18T04:54:17.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/4076527353' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: Adjusting osd_memory_target on trial197 to 44071M 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:17.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:17.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:17.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:17.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T04:54:17.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:17 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:17.908 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:17.946 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":36,"num_osds":6,"num_up_osds":6,"osd_up_since":1771390457,"num_in_osds":6,"osd_in_since":1771390448,"num_remapped_pgs":1} 2026-02-18T04:54:17.946 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd dump --format=json 2026-02-18T04:54:18.063 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:18.290 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:18.290 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":36,"fsid":"9d405fe5-0c85-11f1-b595-d404e6e7d460","created":"2026-02-18T04:52:35.583507+0000","modified":"2026-02-18T04:54:17.474141+0000","last_up_change":"2026-02-18T04:54:17.474141+0000","last_in_change":"2026-02-18T04:54:08.174828+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-18T04:53:51.608403+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"19","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"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":"be041e60-312c-4c68-a8a7-242221030b0f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6802","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6803","nonce":1665825125}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6804","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6805","nonce":1665825125}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6808","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6809","nonce":1665825125}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6806","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6807","nonce":1665825125}]},"public_addr":"10.20.193.79:6803/1665825125","cluster_addr":"10.20.193.79:6805/1665825125","heartbeat_back_addr":"10.20.193.79:6809/1665825125","heartbeat_front_addr":"10.20.193.79:6807/1665825125","state":["exists","up"]},{"osd":1,"uuid":"ef7a2da1-6258-451a-92af-04305a774f1a","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.79:6810","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6811","nonce":2001466152}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6812","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6813","nonce":2001466152}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6816","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6817","nonce":2001466152}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6814","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6815","nonce":2001466152}]},"public_addr":"10.20.193.79:6811/2001466152","cluster_addr":"10.20.193.79:6813/2001466152","heartbeat_back_addr":"10.20.193.79:6817/2001466152","heartbeat_front_addr":"10.20.193.79:6815/2001466152","state":["exists","up"]},{"osd":2,"uuid":"b469e968-2e54-46e8-a4de-f608f31441a8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":17,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6800","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6801","nonce":887352480}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6802","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6803","nonce":887352480}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6806","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6807","nonce":887352480}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6804","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6805","nonce":887352480}]},"public_addr":"10.20.193.191:6801/887352480","cluster_addr":"10.20.193.191:6803/887352480","heartbeat_back_addr":"10.20.193.191:6807/887352480","heartbeat_front_addr":"10.20.193.191:6805/887352480","state":["exists","up"]},{"osd":3,"uuid":"23b091a7-496f-445c-bc33-6acbc292459b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6808","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6809","nonce":1389111151}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6810","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6811","nonce":1389111151}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6814","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6815","nonce":1389111151}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6812","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6813","nonce":1389111151}]},"public_addr":"10.20.193.191:6809/1389111151","cluster_addr":"10.20.193.191:6811/1389111151","heartbeat_back_addr":"10.20.193.191:6815/1389111151","heartbeat_front_addr":"10.20.193.191:6813/1389111151","state":["exists","up"]},{"osd":4,"uuid":"05402cfb-e0e9-4915-ab29-6e12253761c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6800","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6801","nonce":713032043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6802","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6803","nonce":713032043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6806","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6807","nonce":713032043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6804","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6805","nonce":713032043}]},"public_addr":"10.20.193.197:6801/713032043","cluster_addr":"10.20.193.197:6803/713032043","heartbeat_back_addr":"10.20.193.197:6807/713032043","heartbeat_front_addr":"10.20.193.197:6805/713032043","state":["exists","up"]},{"osd":5,"uuid":"c218070c-ddfa-4573-a2c8-7fef84c79e31","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6808","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6809","nonce":2238298932}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6810","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6811","nonce":2238298932}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6814","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6815","nonce":2238298932}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6812","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6813","nonce":2238298932}]},"public_addr":"10.20.193.197:6809/2238298932","cluster_addr":"10.20.193.197:6811/2238298932","heartbeat_back_addr":"10.20.193.197:6815/2238298932","heartbeat_front_addr":"10.20.193.197:6813/2238298932","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":"0.000000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","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-18T04:54:06.566274+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.79:0/3089211374":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/673896908":"2026-02-19T04:52:55.400119+0000","10.20.193.79:6801/2009503623":"2026-02-19T04:52:55.400119+0000","10.20.193.79:6800/2009503623":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/2905721124":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/2169650406":"2026-02-19T04:52:45.632186+0000","10.20.193.79:0/2898486157":"2026-02-19T04:52:45.632186+0000","10.20.193.79:0/3219582567":"2026-02-19T04:52:45.632186+0000","10.20.193.79:6801/1610082575":"2026-02-19T04:52:45.632186+0000","10.20.193.79:6800/1610082575":"2026-02-19T04:52:45.632186+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-18T04:54:18.330 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-18T04:53:51.608403+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '19', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, '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-18T04:54:18.331 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-18T04:54:18.447 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:18.577 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: purged_snaps scrub starts 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: purged_snaps scrub ok 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: pgmap v66: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932] boot 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: osdmap e36: 6 total, 6 up, 6 in 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2071145008' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2946139530' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:18.578 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:18.579 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:18 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:18.678 INFO:teuthology.orchestra.run.trial079.stdout:pg_num: 1 2026-02-18T04:54:18.678 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: purged_snaps scrub starts 2026-02-18T04:54:18.678 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:54:18.678 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: pgmap v66: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932] boot 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: osdmap e36: 6 total, 6 up, 6 in 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2071145008' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2946139530' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:18.679 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:18 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:18.716 INFO:tasks.cephadm:Setting up client nodes... 2026-02-18T04:54:18.717 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-18T04:54:18.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: purged_snaps scrub starts 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: pgmap v66: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: osd.5 [v2:10.20.193.197:6808/2238298932,v1:10.20.193.197:6809/2238298932] boot 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: osdmap e36: 6 total, 6 up, 6 in 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2071145008' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2946139530' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:18.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:18.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:18 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:18.834 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:19.064 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:19.101 INFO:teuthology.orchestra.run.trial079.stdout:[{"version":16,"timestamp":"2026-02-18T04:54:16.520324+0000","name":"","changes":[{"name":"osd/host:trial197/osd_memory_target","previous_value":"92424884633","new_value":"46212442316"}]}] 2026-02-18T04:54:19.102 INFO:tasks.ceph_manager:config epoch is 16 2026-02-18T04:54:19.102 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-18T04:54:19.102 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-18T04:54:19.102 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-18T04:54:19.218 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:19.481 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:19.496 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:19 trial079 ceph-mon[20734]: osdmap e37: 6 total, 6 up, 6 in 2026-02-18T04:54:19.496 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:19 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2858834926' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-18T04:54:19.497 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:19 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/519090842' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-18T04:54:19.497 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:19 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1314388962' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-18T04:54:19.541 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6800","nonce":4186406964},{"type":"v1","addr":"10.20.193.79:6801","nonce":4186406964}]},"active_addr":"10.20.193.79:6801/4186406964","active_change":"2026-02-18T04:52:55.400235+0000","active_mgr_features":4544132024016699391,"available":true,"standbys":[{"gid":24110,"name":"b","mgr_features":4544132024016699391,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://10.20.193.79: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.79:0","nonce":1799382338}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.79:0","nonce":4172510747}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.79:0","nonce":1299196404}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.79:0","nonce":363248911}]}]} 2026-02-18T04:54:19.589 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-18T04:54:19.589 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-18T04:54:19.589 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd dump --format=json 2026-02-18T04:54:19.708 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:19.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:19 trial197 ceph-mon[23300]: osdmap e37: 6 total, 6 up, 6 in 2026-02-18T04:54:19.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:19 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2858834926' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-18T04:54:19.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:19 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/519090842' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-18T04:54:19.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:19 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1314388962' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-18T04:54:19.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:19 trial191 ceph-mon[22977]: osdmap e37: 6 total, 6 up, 6 in 2026-02-18T04:54:19.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:19 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2858834926' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-18T04:54:19.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:19 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/519090842' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-18T04:54:19.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:19 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1314388962' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-18T04:54:19.930 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:19.931 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":38,"fsid":"9d405fe5-0c85-11f1-b595-d404e6e7d460","created":"2026-02-18T04:52:35.583507+0000","modified":"2026-02-18T04:54:19.480878+0000","last_up_change":"2026-02-18T04:54:17.474141+0000","last_in_change":"2026-02-18T04:54:08.174828+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-18T04:53:51.608403+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"19","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"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":"be041e60-312c-4c68-a8a7-242221030b0f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6802","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6803","nonce":1665825125}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6804","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6805","nonce":1665825125}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6808","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6809","nonce":1665825125}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6806","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6807","nonce":1665825125}]},"public_addr":"10.20.193.79:6803/1665825125","cluster_addr":"10.20.193.79:6805/1665825125","heartbeat_back_addr":"10.20.193.79:6809/1665825125","heartbeat_front_addr":"10.20.193.79:6807/1665825125","state":["exists","up"]},{"osd":1,"uuid":"ef7a2da1-6258-451a-92af-04305a774f1a","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.79:6810","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6811","nonce":2001466152}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6812","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6813","nonce":2001466152}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6816","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6817","nonce":2001466152}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6814","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6815","nonce":2001466152}]},"public_addr":"10.20.193.79:6811/2001466152","cluster_addr":"10.20.193.79:6813/2001466152","heartbeat_back_addr":"10.20.193.79:6817/2001466152","heartbeat_front_addr":"10.20.193.79:6815/2001466152","state":["exists","up"]},{"osd":2,"uuid":"b469e968-2e54-46e8-a4de-f608f31441a8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":17,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6800","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6801","nonce":887352480}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6802","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6803","nonce":887352480}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6806","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6807","nonce":887352480}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6804","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6805","nonce":887352480}]},"public_addr":"10.20.193.191:6801/887352480","cluster_addr":"10.20.193.191:6803/887352480","heartbeat_back_addr":"10.20.193.191:6807/887352480","heartbeat_front_addr":"10.20.193.191:6805/887352480","state":["exists","up"]},{"osd":3,"uuid":"23b091a7-496f-445c-bc33-6acbc292459b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6808","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6809","nonce":1389111151}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6810","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6811","nonce":1389111151}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6814","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6815","nonce":1389111151}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6812","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6813","nonce":1389111151}]},"public_addr":"10.20.193.191:6809/1389111151","cluster_addr":"10.20.193.191:6811/1389111151","heartbeat_back_addr":"10.20.193.191:6815/1389111151","heartbeat_front_addr":"10.20.193.191:6813/1389111151","state":["exists","up"]},{"osd":4,"uuid":"05402cfb-e0e9-4915-ab29-6e12253761c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6800","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6801","nonce":713032043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6802","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6803","nonce":713032043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6806","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6807","nonce":713032043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6804","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6805","nonce":713032043}]},"public_addr":"10.20.193.197:6801/713032043","cluster_addr":"10.20.193.197:6803/713032043","heartbeat_back_addr":"10.20.193.197:6807/713032043","heartbeat_front_addr":"10.20.193.197:6805/713032043","state":["exists","up"]},{"osd":5,"uuid":"c218070c-ddfa-4573-a2c8-7fef84c79e31","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6808","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6809","nonce":2238298932}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6810","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6811","nonce":2238298932}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6814","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6815","nonce":2238298932}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6812","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6813","nonce":2238298932}]},"public_addr":"10.20.193.197:6809/2238298932","cluster_addr":"10.20.193.197:6811/2238298932","heartbeat_back_addr":"10.20.193.197:6815/2238298932","heartbeat_front_addr":"10.20.193.197:6813/2238298932","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":"0.000000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","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-18T04:54:06.566274+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-18T04:54:15.698726+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.79:0/3089211374":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/673896908":"2026-02-19T04:52:55.400119+0000","10.20.193.79:6801/2009503623":"2026-02-19T04:52:55.400119+0000","10.20.193.79:6800/2009503623":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/2905721124":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/2169650406":"2026-02-19T04:52:45.632186+0000","10.20.193.79:0/2898486157":"2026-02-19T04:52:45.632186+0000","10.20.193.79:0/3219582567":"2026-02-19T04:52:45.632186+0000","10.20.193.79:6801/1610082575":"2026-02-19T04:52:45.632186+0000","10.20.193.79:6800/1610082575":"2026-02-19T04:52:45.632186+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-18T04:54:19.969 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-18T04:54:19.969 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd dump --format=json 2026-02-18T04:54:20.086 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.307 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:20.308 INFO:teuthology.orchestra.run.trial079.stdout:{"epoch":38,"fsid":"9d405fe5-0c85-11f1-b595-d404e6e7d460","created":"2026-02-18T04:52:35.583507+0000","modified":"2026-02-18T04:54:19.480878+0000","last_up_change":"2026-02-18T04:54:17.474141+0000","last_in_change":"2026-02-18T04:54:08.174828+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-18T04:53:51.608403+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"19","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"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":"be041e60-312c-4c68-a8a7-242221030b0f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6802","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6803","nonce":1665825125}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6804","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6805","nonce":1665825125}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6808","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6809","nonce":1665825125}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6806","nonce":1665825125},{"type":"v1","addr":"10.20.193.79:6807","nonce":1665825125}]},"public_addr":"10.20.193.79:6803/1665825125","cluster_addr":"10.20.193.79:6805/1665825125","heartbeat_back_addr":"10.20.193.79:6809/1665825125","heartbeat_front_addr":"10.20.193.79:6807/1665825125","state":["exists","up"]},{"osd":1,"uuid":"ef7a2da1-6258-451a-92af-04305a774f1a","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.79:6810","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6811","nonce":2001466152}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6812","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6813","nonce":2001466152}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6816","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6817","nonce":2001466152}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.79:6814","nonce":2001466152},{"type":"v1","addr":"10.20.193.79:6815","nonce":2001466152}]},"public_addr":"10.20.193.79:6811/2001466152","cluster_addr":"10.20.193.79:6813/2001466152","heartbeat_back_addr":"10.20.193.79:6817/2001466152","heartbeat_front_addr":"10.20.193.79:6815/2001466152","state":["exists","up"]},{"osd":2,"uuid":"b469e968-2e54-46e8-a4de-f608f31441a8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":17,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6800","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6801","nonce":887352480}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6802","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6803","nonce":887352480}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6806","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6807","nonce":887352480}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6804","nonce":887352480},{"type":"v1","addr":"10.20.193.191:6805","nonce":887352480}]},"public_addr":"10.20.193.191:6801/887352480","cluster_addr":"10.20.193.191:6803/887352480","heartbeat_back_addr":"10.20.193.191:6807/887352480","heartbeat_front_addr":"10.20.193.191:6805/887352480","state":["exists","up"]},{"osd":3,"uuid":"23b091a7-496f-445c-bc33-6acbc292459b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6808","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6809","nonce":1389111151}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6810","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6811","nonce":1389111151}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6814","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6815","nonce":1389111151}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.191:6812","nonce":1389111151},{"type":"v1","addr":"10.20.193.191:6813","nonce":1389111151}]},"public_addr":"10.20.193.191:6809/1389111151","cluster_addr":"10.20.193.191:6811/1389111151","heartbeat_back_addr":"10.20.193.191:6815/1389111151","heartbeat_front_addr":"10.20.193.191:6813/1389111151","state":["exists","up"]},{"osd":4,"uuid":"05402cfb-e0e9-4915-ab29-6e12253761c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6800","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6801","nonce":713032043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6802","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6803","nonce":713032043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6806","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6807","nonce":713032043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6804","nonce":713032043},{"type":"v1","addr":"10.20.193.197:6805","nonce":713032043}]},"public_addr":"10.20.193.197:6801/713032043","cluster_addr":"10.20.193.197:6803/713032043","heartbeat_back_addr":"10.20.193.197:6807/713032043","heartbeat_front_addr":"10.20.193.197:6805/713032043","state":["exists","up"]},{"osd":5,"uuid":"c218070c-ddfa-4573-a2c8-7fef84c79e31","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6808","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6809","nonce":2238298932}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6810","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6811","nonce":2238298932}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6814","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6815","nonce":2238298932}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6812","nonce":2238298932},{"type":"v1","addr":"10.20.193.197:6813","nonce":2238298932}]},"public_addr":"10.20.193.197:6809/2238298932","cluster_addr":"10.20.193.197:6811/2238298932","heartbeat_back_addr":"10.20.193.197:6815/2238298932","heartbeat_front_addr":"10.20.193.197:6813/2238298932","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":"0.000000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","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-18T04:54:06.566274+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-18T04:54:15.698726+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.79:0/3089211374":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/673896908":"2026-02-19T04:52:55.400119+0000","10.20.193.79:6801/2009503623":"2026-02-19T04:52:55.400119+0000","10.20.193.79:6800/2009503623":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/2905721124":"2026-02-19T04:52:55.400119+0000","10.20.193.79:0/2169650406":"2026-02-19T04:52:45.632186+0000","10.20.193.79:0/2898486157":"2026-02-19T04:52:45.632186+0000","10.20.193.79:0/3219582567":"2026-02-19T04:52:45.632186+0000","10.20.193.79:6801/1610082575":"2026-02-19T04:52:45.632186+0000","10.20.193.79:6800/1610082575":"2026-02-19T04:52:45.632186+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-18T04:54:20.345 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-18T04:54:20.346 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-18T04:54:20.347 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-18T04:54:20.347 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph tell osd.3 flush_pg_stats 2026-02-18T04:54:20.347 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph tell osd.4 flush_pg_stats 2026-02-18T04:54:20.348 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph tell osd.5 flush_pg_stats 2026-02-18T04:54:20.471 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.471 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.472 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.473 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.475 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.479 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.587 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:20 trial079 ceph-mon[20734]: pgmap v69: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:20.587 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:20 trial079 ceph-mon[20734]: osdmap e38: 6 total, 6 up, 6 in 2026-02-18T04:54:20.587 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:20 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1516058463' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:20.587 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:20 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1338139531' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:20.663 INFO:teuthology.orchestra.run.trial079.stdout:34359738381 2026-02-18T04:54:20.664 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-18T04:54:20.671 INFO:teuthology.orchestra.run.trial079.stdout:51539607562 2026-02-18T04:54:20.672 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-18T04:54:20.675 INFO:teuthology.orchestra.run.trial079.stdout:154618822660 2026-02-18T04:54:20.676 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-18T04:54:20.701 INFO:teuthology.orchestra.run.trial079.stdout:124554051588 2026-02-18T04:54:20.701 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-18T04:54:20.711 INFO:teuthology.orchestra.run.trial079.stdout:94489280518 2026-02-18T04:54:20.712 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-18T04:54:20.719 INFO:teuthology.orchestra.run.trial079.stdout:64424509448 2026-02-18T04:54:20.719 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-18T04:54:20.783 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.816 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:20 trial197 ceph-mon[23300]: pgmap v69: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:20.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:20 trial197 ceph-mon[23300]: osdmap e38: 6 total, 6 up, 6 in 2026-02-18T04:54:20.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:20 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1516058463' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:20.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:20 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1338139531' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:20.828 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:20 trial191 ceph-mon[22977]: pgmap v69: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:20.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:20 trial191 ceph-mon[22977]: osdmap e38: 6 total, 6 up, 6 in 2026-02-18T04:54:20.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:20 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1516058463' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:20.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:20 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1338139531' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T04:54:20.842 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.878 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:20.881 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:21.033 INFO:teuthology.orchestra.run.trial079.stdout:34359738379 2026-02-18T04:54:21.072 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738381 got 34359738379 for osd.0 2026-02-18T04:54:21.076 INFO:teuthology.orchestra.run.trial079.stdout:51539607561 2026-02-18T04:54:21.087 INFO:teuthology.orchestra.run.trial079.stdout:154618822659 2026-02-18T04:54:21.090 INFO:teuthology.orchestra.run.trial079.stdout:124554051587 2026-02-18T04:54:21.116 INFO:tasks.cephadm.ceph_manager.ceph:need seq 51539607562 got 51539607561 for osd.1 2026-02-18T04:54:21.127 INFO:teuthology.orchestra.run.trial079.stdout:64424509447 2026-02-18T04:54:21.130 INFO:teuthology.orchestra.run.trial079.stdout:94489280516 2026-02-18T04:54:21.131 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051588 got 124554051587 for osd.4 2026-02-18T04:54:21.143 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822660 got 154618822659 for osd.5 2026-02-18T04:54:21.168 INFO:tasks.cephadm.ceph_manager.ceph:need seq 64424509448 got 64424509447 for osd.2 2026-02-18T04:54:21.174 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280518 got 94489280516 for osd.3 2026-02-18T04:54:21.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: osdmap e39: 6 total, 6 up, 6 in 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1616665268' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3966826638' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2698485153' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/614477476' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/667611154' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:21 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/903759355' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: osdmap e39: 6 total, 6 up, 6 in 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1616665268' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3966826638' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2698485153' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/614477476' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/667611154' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T04:54:21.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:21 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/903759355' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: osdmap e39: 6 total, 6 up, 6 in 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1616665268' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3966826638' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2698485153' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/614477476' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/667611154' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T04:54:21.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:21 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/903759355' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T04:54:22.072 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-18T04:54:22.116 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-18T04:54:22.132 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-18T04:54:22.144 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-18T04:54:22.168 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-18T04:54:22.175 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-18T04:54:22.193 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.230 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.276 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.276 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.315 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.320 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.434 INFO:teuthology.orchestra.run.trial079.stdout:34359738381 2026-02-18T04:54:22.466 INFO:teuthology.orchestra.run.trial079.stdout:51539607562 2026-02-18T04:54:22.477 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738381 got 34359738381 for osd.0 2026-02-18T04:54:22.478 DEBUG:teuthology.parallel:result is None 2026-02-18T04:54:22.507 INFO:tasks.cephadm.ceph_manager.ceph:need seq 51539607562 got 51539607562 for osd.1 2026-02-18T04:54:22.508 DEBUG:teuthology.parallel:result is None 2026-02-18T04:54:22.520 INFO:teuthology.orchestra.run.trial079.stdout:154618822660 2026-02-18T04:54:22.533 INFO:teuthology.orchestra.run.trial079.stdout:124554051588 2026-02-18T04:54:22.565 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822660 got 154618822660 for osd.5 2026-02-18T04:54:22.565 DEBUG:teuthology.parallel:result is None 2026-02-18T04:54:22.574 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051588 got 124554051588 for osd.4 2026-02-18T04:54:22.575 DEBUG:teuthology.parallel:result is None 2026-02-18T04:54:22.578 INFO:teuthology.orchestra.run.trial079.stdout:64424509448 2026-02-18T04:54:22.578 INFO:teuthology.orchestra.run.trial079.stdout:94489280518 2026-02-18T04:54:22.619 INFO:tasks.cephadm.ceph_manager.ceph:need seq 64424509448 got 64424509448 for osd.2 2026-02-18T04:54:22.619 DEBUG:teuthology.parallel:result is None 2026-02-18T04:54:22.621 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280518 got 94489280518 for osd.3 2026-02-18T04:54:22.621 DEBUG:teuthology.parallel:result is None 2026-02-18T04:54:22.621 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-18T04:54:22.621 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T04:54:22.682 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:22 trial079 ceph-mon[20734]: pgmap v72: 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-18T04:54:22.682 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:22 trial079 ceph-mon[20734]: osdmap e40: 6 total, 6 up, 6 in 2026-02-18T04:54:22.682 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:22 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1858302280' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T04:54:22.682 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:22 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3238926526' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T04:54:22.777 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:22.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:22 trial197 ceph-mon[23300]: pgmap v72: 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-18T04:54:22.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:22 trial197 ceph-mon[23300]: osdmap e40: 6 total, 6 up, 6 in 2026-02-18T04:54:22.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:22 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1858302280' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T04:54:22.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:22 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3238926526' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T04:54:22.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:22 trial191 ceph-mon[22977]: pgmap v72: 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-18T04:54:22.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:22 trial191 ceph-mon[22977]: osdmap e40: 6 total, 6 up, 6 in 2026-02-18T04:54:22.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:22 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1858302280' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T04:54:22.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:22 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3238926526' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T04:54:23.008 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:23.009 INFO:teuthology.orchestra.run.trial079.stderr:dumped all 2026-02-18T04:54:23.045 INFO:teuthology.orchestra.run.trial079.stdout:{"pg_ready":true,"pg_map":{"version":73,"stamp":"2026-02-18T04:54:21.495528+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":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":4404019200,"kb_used":165588,"kb_used_data":3804,"kb_used_omap":87,"kb_used_meta":161576,"kb_avail":4403853612,"statfs":{"total":4509715660800,"available":4509546098688,"internally_reserved":0,"allocated":3895296,"data_stored":2579254,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":89795,"internal_metadata":165454141},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"4.015308"},"pg_stats":[{"pgid":"1.0","version":"18'132","reported_seq":233,"reported_epoch":38,"state":"peering","last_fresh":"2026-02-18T04:54:19.668128+0000","last_change":"2026-02-18T04:54:20.492031+0000","last_active":"2026-02-18T04:54:20.492031+0000","last_peered":"2026-02-18T04:54:19.668128+0000","last_clean":"2026-02-18T04:54:15.469294+0000","last_became_active":"2026-02-18T04:54:19.664325+0000","last_became_peered":"2026-02-18T04:54:19.664325+0000","last_unstale":"2026-02-18T04:54:19.668128+0000","last_undegraded":"2026-02-18T04:54:19.668128+0000","last_fullsized":"2026-02-18T04:54:19.483295+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":33,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_clean_scrub_stamp":"2026-02-18T04:53:51.781853+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":36,"seq":154618822660,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27300,"kb_used_data":336,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4217,"internal_metadata":27586439},"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":29,"seq":124554051588,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":22,"seq":94489280518,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":13,"kb_used_meta":26930,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13992,"internal_metadata":27576664},"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":64424509448,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":18,"kb_used_meta":26925,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19202,"internal_metadata":27571454},"hb_peers":[0,1,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":1,"up_from":12,"seq":51539607562,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27312,"kb_used_data":348,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975888,"statfs":{"total":751619276800,"available":751591309312,"internally_reserved":0,"allocated":356352,"data_stored":136279,"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":27300,"kb_used_data":336,"kb_used_omap":21,"kb_used_meta":26922,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":22456,"internal_metadata":27568200},"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-18T04:54:23.046 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T04:54:23.202 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:23.433 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:23.433 INFO:teuthology.orchestra.run.trial079.stderr:dumped all 2026-02-18T04:54:23.472 INFO:teuthology.orchestra.run.trial079.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-18T04:54:23.413995+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":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":4404019200,"kb_used":165612,"kb_used_data":3828,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853588,"statfs":{"total":4509715660800,"available":4509546074112,"internally_reserved":0,"allocated":3919872,"data_stored":2588962,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90446,"internal_metadata":165453490},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"4.932864"},"pg_stats":[{"pgid":"1.0","version":"18'132","reported_seq":233,"reported_epoch":38,"state":"peering","last_fresh":"2026-02-18T04:54:19.668128+0000","last_change":"2026-02-18T04:54:20.492031+0000","last_active":"2026-02-18T04:54:20.492031+0000","last_peered":"2026-02-18T04:54:19.668128+0000","last_clean":"2026-02-18T04:54:15.469294+0000","last_became_active":"2026-02-18T04:54:19.664325+0000","last_became_peered":"2026-02-18T04:54:19.664325+0000","last_unstale":"2026-02-18T04:54:19.668128+0000","last_undegraded":"2026-02-18T04:54:19.668128+0000","last_fullsized":"2026-02-18T04:54:19.483295+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":33,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_clean_scrub_stamp":"2026-02-18T04:53:51.781853+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":36,"seq":154618822660,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27300,"kb_used_data":336,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4217,"internal_metadata":27586439},"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":29,"seq":124554051588,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":22,"seq":94489280518,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":13,"kb_used_meta":26930,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13992,"internal_metadata":27576664},"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":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27904,"kb_used_data":940,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975296,"statfs":{"total":751619276800,"available":751590703104,"internally_reserved":0,"allocated":962560,"data_stored":731501,"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":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27324,"kb_used_data":360,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975876,"statfs":{"total":751619276800,"available":751591297024,"internally_reserved":0,"allocated":368640,"data_stored":141133,"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":27300,"kb_used_data":336,"kb_used_omap":21,"kb_used_meta":26922,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":22456,"internal_metadata":27568200},"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-18T04:54:23.473 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T04:54:23.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:23 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2307053955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T04:54:23.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:23 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3608540754' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T04:54:23.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:23 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1881854490' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T04:54:23.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:23 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/3403480441' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T04:54:23.590 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:23.809 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:23.809 INFO:teuthology.orchestra.run.trial079.stderr:dumped all 2026-02-18T04:54:23.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:23 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2307053955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T04:54:23.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:23 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3608540754' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T04:54:23.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:23 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/1881854490' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T04:54:23.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:23 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/3403480441' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T04:54:23.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:23 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2307053955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T04:54:23.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:23 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3608540754' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T04:54:23.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:23 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1881854490' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T04:54:23.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:23 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/3403480441' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T04:54:23.846 INFO:teuthology.orchestra.run.trial079.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-18T04:54:23.413995+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":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":4404019200,"kb_used":165612,"kb_used_data":3828,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853588,"statfs":{"total":4509715660800,"available":4509546074112,"internally_reserved":0,"allocated":3919872,"data_stored":2588962,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90446,"internal_metadata":165453490},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"4.932864"},"pg_stats":[{"pgid":"1.0","version":"18'132","reported_seq":233,"reported_epoch":38,"state":"peering","last_fresh":"2026-02-18T04:54:19.668128+0000","last_change":"2026-02-18T04:54:20.492031+0000","last_active":"2026-02-18T04:54:20.492031+0000","last_peered":"2026-02-18T04:54:19.668128+0000","last_clean":"2026-02-18T04:54:15.469294+0000","last_became_active":"2026-02-18T04:54:19.664325+0000","last_became_peered":"2026-02-18T04:54:19.664325+0000","last_unstale":"2026-02-18T04:54:19.668128+0000","last_undegraded":"2026-02-18T04:54:19.668128+0000","last_fullsized":"2026-02-18T04:54:19.483295+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":33,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_clean_scrub_stamp":"2026-02-18T04:53:51.781853+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":36,"seq":154618822660,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27300,"kb_used_data":336,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4217,"internal_metadata":27586439},"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":29,"seq":124554051588,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":22,"seq":94489280518,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":13,"kb_used_meta":26930,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13992,"internal_metadata":27576664},"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":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27904,"kb_used_data":940,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975296,"statfs":{"total":751619276800,"available":751590703104,"internally_reserved":0,"allocated":962560,"data_stored":731501,"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":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27324,"kb_used_data":360,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975876,"statfs":{"total":751619276800,"available":751591297024,"internally_reserved":0,"allocated":368640,"data_stored":141133,"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":27300,"kb_used_data":336,"kb_used_omap":21,"kb_used_meta":26922,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":22456,"internal_metadata":27568200},"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-18T04:54:23.847 INFO:tasks.cephadm.ceph_manager.ceph:PG 1.0 is not active+clean 2026-02-18T04:54:23.847 INFO:tasks.cephadm.ceph_manager.ceph:{'pgid': '1.0', 'version': "18'132", 'reported_seq': 233, 'reported_epoch': 38, 'state': 'peering', 'last_fresh': '2026-02-18T04:54:19.668128+0000', 'last_change': '2026-02-18T04:54:20.492031+0000', 'last_active': '2026-02-18T04:54:20.492031+0000', 'last_peered': '2026-02-18T04:54:19.668128+0000', 'last_clean': '2026-02-18T04:54:15.469294+0000', 'last_became_active': '2026-02-18T04:54:19.664325+0000', 'last_became_peered': '2026-02-18T04:54:19.664325+0000', 'last_unstale': '2026-02-18T04:54:19.668128+0000', 'last_undegraded': '2026-02-18T04:54:19.668128+0000', 'last_fullsized': '2026-02-18T04:54:19.483295+0000', 'mapping_epoch': 39, 'log_start': "0'0", 'ondisk_log_start': "0'0", 'created': 17, 'last_epoch_clean': 33, 'parent': '0.0', 'parent_split_bits': 0, 'last_scrub': "0'0", 'last_scrub_stamp': '2026-02-18T04:53:51.781853+0000', 'last_deep_scrub': "0'0", 'last_deep_scrub_stamp': '2026-02-18T04:53:51.781853+0000', 'last_clean_scrub_stamp': '2026-02-18T04:53:51.781853+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-18T04:54:23.848 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph status --format=json 2026-02-18T04:54:23.965 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:24.233 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:24.233 INFO:teuthology.orchestra.run.trial079.stdout:{"fsid":"9d405fe5-0c85-11f1-b595-d404e6e7d460","health":{"status":"HEALTH_OK","checks":{},"mutes":[]},"election_epoch":14,"quorum":[0,1,2],"quorum_names":["a","c","b"],"quorum_age":65,"monmap":{"epoch":3,"min_mon_release_name":"tentacle","num_mons":3},"osdmap":{"epoch":40,"num_osds":6,"num_up_osds":6,"osd_up_since":1771390457,"num_in_osds":6,"osd_in_since":1771390448,"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":169586688,"bytes_avail":4509546074112,"bytes_total":4509715660800,"inactive_pgs_ratio":1,"recovering_objects_per_sec":0,"recovering_bytes_per_sec":119680,"recovering_keys_per_sec":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0},"fsmap":{"epoch":1,"btime":"2026-02-18T04:52:35:583304+0000","by_rank":[],"up:standby":0},"mgrmap":{"available":true,"num_standbys":1,"modules":["cephadm","dashboard","iostat","nfs"],"services":{"dashboard":"https://10.20.193.79:8443/"}},"servicemap":{"epoch":4,"modified":"2026-02-18T04:54:21.413666+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-18T04:54:24.272 INFO:tasks.cephadm.ceph_manager.ceph:making progress, resetting timeout 2026-02-18T04:54:24.272 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T04:54:24.390 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:24.614 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:24.615 INFO:teuthology.orchestra.run.trial079.stderr:dumped all 2026-02-18T04:54:24.651 INFO:teuthology.orchestra.run.trial079.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-18T04:54:23.413995+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":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":4404019200,"kb_used":165612,"kb_used_data":3828,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853588,"statfs":{"total":4509715660800,"available":4509546074112,"internally_reserved":0,"allocated":3919872,"data_stored":2588962,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90446,"internal_metadata":165453490},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"4.932864"},"pg_stats":[{"pgid":"1.0","version":"18'132","reported_seq":233,"reported_epoch":38,"state":"peering","last_fresh":"2026-02-18T04:54:19.668128+0000","last_change":"2026-02-18T04:54:20.492031+0000","last_active":"2026-02-18T04:54:20.492031+0000","last_peered":"2026-02-18T04:54:19.668128+0000","last_clean":"2026-02-18T04:54:15.469294+0000","last_became_active":"2026-02-18T04:54:19.664325+0000","last_became_peered":"2026-02-18T04:54:19.664325+0000","last_unstale":"2026-02-18T04:54:19.668128+0000","last_undegraded":"2026-02-18T04:54:19.668128+0000","last_fullsized":"2026-02-18T04:54:19.483295+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":33,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_clean_scrub_stamp":"2026-02-18T04:53:51.781853+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":36,"seq":154618822660,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27300,"kb_used_data":336,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4217,"internal_metadata":27586439},"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":29,"seq":124554051588,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":22,"seq":94489280518,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27892,"kb_used_data":928,"kb_used_omap":13,"kb_used_meta":26930,"kb_avail":733975308,"statfs":{"total":751619276800,"available":751590715392,"internally_reserved":0,"allocated":950272,"data_stored":726647,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13992,"internal_metadata":27576664},"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":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27904,"kb_used_data":940,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975296,"statfs":{"total":751619276800,"available":751590703104,"internally_reserved":0,"allocated":962560,"data_stored":731501,"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":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27324,"kb_used_data":360,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975876,"statfs":{"total":751619276800,"available":751591297024,"internally_reserved":0,"allocated":368640,"data_stored":141133,"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":27300,"kb_used_data":336,"kb_used_omap":21,"kb_used_meta":26922,"kb_avail":733975900,"statfs":{"total":751619276800,"available":751591321600,"internally_reserved":0,"allocated":344064,"data_stored":131517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":22456,"internal_metadata":27568200},"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-18T04:54:24.734 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:24 trial079 ceph-mon[20734]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:24.734 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:24 trial079 ceph-mon[20734]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 117 KiB/s, 0 objects/s recovering 2026-02-18T04:54:24.734 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:24 trial079 ceph-mon[20734]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:24.734 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:24 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/673029818' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-18T04:54:24.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:24 trial197 ceph-mon[23300]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:24.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:24 trial197 ceph-mon[23300]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 117 KiB/s, 0 objects/s recovering 2026-02-18T04:54:24.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:24 trial197 ceph-mon[23300]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:24.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:24 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/673029818' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-18T04:54:24.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:24 trial191 ceph-mon[22977]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:24.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:24 trial191 ceph-mon[22977]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 117 KiB/s, 0 objects/s recovering 2026-02-18T04:54:24.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:24 trial191 ceph-mon[22977]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:24.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:24 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/673029818' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-18T04:54:25.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:25 trial079 ceph-mon[20734]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:25.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:25 trial079 ceph-mon[20734]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:25.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:25 trial197 ceph-mon[23300]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:25.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:25 trial197 ceph-mon[23300]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:25.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:25 trial191 ceph-mon[22977]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:25.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:25 trial191 ceph-mon[22977]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:26.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:26 trial079 ceph-mon[20734]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:26.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:26 trial079 ceph-mon[20734]: osdmap e41: 6 total, 6 up, 6 in 2026-02-18T04:54:26.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:26 trial197 ceph-mon[23300]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:26.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:26 trial197 ceph-mon[23300]: osdmap e41: 6 total, 6 up, 6 in 2026-02-18T04:54:26.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:26 trial191 ceph-mon[22977]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:26.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:26 trial191 ceph-mon[22977]: osdmap e41: 6 total, 6 up, 6 in 2026-02-18T04:54:27.653 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T04:54:27.770 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:27.997 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:27.997 INFO:teuthology.orchestra.run.trial079.stderr:dumped all 2026-02-18T04:54:28.037 INFO:teuthology.orchestra.run.trial079.stdout:{"pg_ready":true,"pg_map":{"version":77,"stamp":"2026-02-18T04:54:27.414690+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":165756,"kb_used_data":3972,"kb_used_omap":96,"kb_used_meta":161567,"kb_avail":4403853444,"statfs":{"total":4509715660800,"available":4509545926656,"internally_reserved":0,"allocated":4067328,"data_stored":2646392,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":98911,"internal_metadata":165445025},"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":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"6.923381"},"pg_stats":[{"pgid":"1.0","version":"18'132","reported_seq":243,"reported_epoch":40,"state":"active+clean","last_fresh":"2026-02-18T04:54:21.497871+0000","last_change":"2026-02-18T04:54:21.497802+0000","last_active":"2026-02-18T04:54:21.497871+0000","last_peered":"2026-02-18T04:54:21.497871+0000","last_clean":"2026-02-18T04:54:21.497871+0000","last_became_active":"2026-02-18T04:54:21.497544+0000","last_became_peered":"2026-02-18T04:54:21.497544+0000","last_unstale":"2026-02-18T04:54:21.497871+0000","last_undegraded":"2026-02-18T04:54:21.497871+0000","last_fullsized":"2026-02-18T04:54:21.497871+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T04:53:51.781853+0000","last_clean_scrub_stamp":"2026-02-18T04:53:51.781853+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-19T07:40:18.609262+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":36,"seq":154618822661,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27916,"kb_used_data":952,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733975284,"statfs":{"total":751619276800,"available":751590690816,"internally_reserved":0,"allocated":974848,"data_stored":736234,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":29,"seq":124554051589,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27336,"kb_used_data":372,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975864,"statfs":{"total":751619276800,"available":751591284736,"internally_reserved":0,"allocated":380928,"data_stored":145866,"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":22,"seq":94489280519,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27916,"kb_used_data":952,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975284,"statfs":{"total":751619276800,"available":751590690816,"internally_reserved":0,"allocated":974848,"data_stored":736234,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":15294,"internal_metadata":27575362},"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":27928,"kb_used_data":964,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975272,"statfs":{"total":751619276800,"available":751590678528,"internally_reserved":0,"allocated":987136,"data_stored":741059,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":21155,"internal_metadata":27569501},"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":27324,"kb_used_data":360,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975876,"statfs":{"total":751619276800,"available":751591297024,"internally_reserved":0,"allocated":368640,"data_stored":141133,"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":34359738382,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27336,"kb_used_data":372,"kb_used_omap":23,"kb_used_meta":26920,"kb_avail":733975864,"statfs":{"total":751619276800,"available":751591284736,"internally_reserved":0,"allocated":380928,"data_stored":145866,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":24409,"internal_metadata":27566247},"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-18T04:54:28.038 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-18T04:54:28.038 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-18T04:54:28.038 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-18T04:54:28.038 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph health --format=json 2026-02-18T04:54:28.154 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:28.410 INFO:teuthology.orchestra.run.trial079.stdout: 2026-02-18T04:54:28.410 INFO:teuthology.orchestra.run.trial079.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-18T04:54:28.449 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-18T04:54:28.449 INFO:tasks.cephadm:Setup complete, yielding 2026-02-18T04:54:28.449 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T04:54:28.465 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial079.front.sepia.ceph.com 2026-02-18T04:54:28.465 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- bash -c 'set -ex 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> for host in $HOSTNAMES; do 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> # find the hostname for "host.c" which will have no mgr 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> if [ "$HAS_MGRS" == "false" ]; then 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> HOST_C="${host}" 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> fi 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> done 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> # One last thing to worry about before draining the host 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> # is that the teuthology test tends to put the explicit 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> # hostnames in the placement for the mon service. 2026-02-18T04:54:28.466 DEBUG:teuthology.orchestra.run.trial079:> # We want to make sure we can drain without providing 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> # --force and there is a check for the host being removed 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> # being listed explicitly in the placements. Therefore, 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> # we should remove it from the mon placement. 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> ceph orch ls mon --export > mon.yaml 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> ceph orch apply -i mon_adjusted.yaml 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> # now drain that host 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> ceph orch host drain $HOST_C --zap-osd-devices 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> # wait for drain to complete 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> sleep 15 2026-02-18T04:54:28.467 DEBUG:teuthology.orchestra.run.trial079:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> done 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> # we want to check the ability to remove the host from 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> # the CRUSH map, so we should first verify the host is in 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> # the CRUSH map. 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> ceph osd getcrushmap -o compiled-crushmap 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> crushtool -d compiled-crushmap -o crushmap.txt 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> CRUSH_MAP=$(cat crushmap.txt) 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> exit 1 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> fi 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> # If the drain was successful, we should be able to remove the 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> # host without force with no issues. If there are still daemons 2026-02-18T04:54:28.468 DEBUG:teuthology.orchestra.run.trial079:> # we will get a response telling us to drain the host and a 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> # non-zero return code 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> ceph orch host rm $HOST_C --rm-crush-entry 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> sleep 30 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> ceph osd getcrushmap -o compiled-crushmap 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> crushtool -d compiled-crushmap -o crushmap.txt 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> CRUSH_MAP=$(cat crushmap.txt) 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> exit 1 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> fi 2026-02-18T04:54:28.469 DEBUG:teuthology.orchestra.run.trial079:> ' 2026-02-18T04:54:28.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:28 trial079 ceph-mon[20734]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:28.577 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:28 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/2557277028' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-18T04:54:28.587 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:54:28.644 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch host ls --format json 2026-02-18T04:54:28.644 INFO:teuthology.orchestra.run.trial079.stderr:++ jq -r '.[] | .hostname' 2026-02-18T04:54:28.827 INFO:teuthology.orchestra.run.trial079.stderr:+ HOSTNAMES='trial079 2026-02-18T04:54:28.828 INFO:teuthology.orchestra.run.trial079.stderr:trial191 2026-02-18T04:54:28.828 INFO:teuthology.orchestra.run.trial079.stderr:trial197' 2026-02-18T04:54:28.828 INFO:teuthology.orchestra.run.trial079.stderr:+ for host in $HOSTNAMES 2026-02-18T04:54:28.828 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch ps --hostname trial079 --format json 2026-02-18T04:54:28.828 INFO:teuthology.orchestra.run.trial079.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-18T04:54:28.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:28 trial197 ceph-mon[23300]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:28.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:28 trial197 ceph-mon[23300]: from='client.? 10.20.193.79:0/2557277028' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-18T04:54:28.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:28 trial191 ceph-mon[22977]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:28.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:28 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/2557277028' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-18T04:54:29.005 INFO:teuthology.orchestra.run.trial079.stderr:+ HAS_MGRS=true 2026-02-18T04:54:29.006 INFO:teuthology.orchestra.run.trial079.stderr:+ '[' true == false ']' 2026-02-18T04:54:29.006 INFO:teuthology.orchestra.run.trial079.stderr:+ for host in $HOSTNAMES 2026-02-18T04:54:29.006 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch ps --hostname trial191 --format json 2026-02-18T04:54:29.006 INFO:teuthology.orchestra.run.trial079.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-18T04:54:29.185 INFO:teuthology.orchestra.run.trial079.stderr:+ HAS_MGRS=true 2026-02-18T04:54:29.186 INFO:teuthology.orchestra.run.trial079.stderr:+ '[' true == false ']' 2026-02-18T04:54:29.186 INFO:teuthology.orchestra.run.trial079.stderr:+ for host in $HOSTNAMES 2026-02-18T04:54:29.186 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch ps --hostname trial197 --format json 2026-02-18T04:54:29.186 INFO:teuthology.orchestra.run.trial079.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-18T04:54:29.366 INFO:teuthology.orchestra.run.trial079.stderr:+ HAS_MGRS=false 2026-02-18T04:54:29.366 INFO:teuthology.orchestra.run.trial079.stderr:+ '[' false == false ']' 2026-02-18T04:54:29.366 INFO:teuthology.orchestra.run.trial079.stderr:+ HOST_C=trial197 2026-02-18T04:54:29.366 INFO:teuthology.orchestra.run.trial079.stderr:+ ceph orch ls mon --export 2026-02-18T04:54:29.547 INFO:teuthology.orchestra.run.trial079.stderr:+ sed /trial197/d mon.yaml 2026-02-18T04:54:29.548 INFO:teuthology.orchestra.run.trial079.stderr:+ ceph orch apply -i mon_adjusted.yaml 2026-02-18T04:54:29.723 INFO:teuthology.orchestra.run.trial079.stdout:Scheduled mon update... 2026-02-18T04:54:29.723 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:29 trial079 ceph-mon[20734]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:29.732 INFO:teuthology.orchestra.run.trial079.stderr:+ ceph orch host drain trial197 --zap-osd-devices 2026-02-18T04:54:29.827 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:29 trial197 ceph-mon[23300]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:29.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:29 trial191 ceph-mon[22977]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:29.904 INFO:teuthology.orchestra.run.trial079.stdout:Scheduled to remove the following daemons from host 'trial197' 2026-02-18T04:54:29.904 INFO:teuthology.orchestra.run.trial079.stdout:type id 2026-02-18T04:54:29.904 INFO:teuthology.orchestra.run.trial079.stdout:-------------------- --------------- 2026-02-18T04:54:29.904 INFO:teuthology.orchestra.run.trial079.stdout:mon c 2026-02-18T04:54:29.904 INFO:teuthology.orchestra.run.trial079.stdout:osd 4 2026-02-18T04:54:29.904 INFO:teuthology.orchestra.run.trial079.stdout:osd 5 2026-02-18T04:54:29.913 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch ps --hostname trial197 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:mon.c trial197 running (81s) 14s ago 81s 110M 2048M 20.2.0-670-gadc19233 c2bc6184fe25 1208090f05af 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:osd.4 trial197 running (25s) 14s ago 27s 102M 43.0G 20.2.0-670-gadc19233 c2bc6184fe25 fc17686a7685 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:osd.5 trial197 running (16s) 14s ago 18s 98.6M 43.0G 20.2.0-670-gadc19233 c2bc6184fe25 6a81fbb23f09 ' 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:mon.c trial197 running (81s) 14s ago 81s 110M 2048M 20.2.0-670-gadc19233 c2bc6184fe25 1208090f05af 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:osd.4 trial197 running (25s) 14s ago 27s 102M 43.0G 20.2.0-670-gadc19233 c2bc6184fe25 fc17686a7685 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:osd.5 trial197 running (16s) 14s ago 18s 98.6M 43.0G 20.2.0-670-gadc19233 c2bc6184fe25 6a81fbb23f09 ' '!=' 'No daemons reported' ']' 2026-02-18T04:54:30.094 INFO:teuthology.orchestra.run.trial079.stderr:+ sleep 15 2026-02-18T04:54:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='client.14598 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial079", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:30 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='client.14598 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial079", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:30.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-18T04:54:30.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-18T04:54:30.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:30 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='client.14598 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial079", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-18T04:54:30.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:30.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:30 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: Saving service mon spec with placement trial079:10.20.193.79=a;trial191:10.20.193.191=b;count:3 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial197", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: Added label _no_schedule to host trial197 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: Added label _no_conf_keyring to host trial197 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: osd.4 crush weight is 0.68359375 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: osd.5 crush weight is 0.68359375 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: Saving service mon spec with placement trial079:10.20.193.79=a;trial191:10.20.193.191=b;count:3 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial197", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: Added label _no_schedule to host trial197 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: Added label _no_conf_keyring to host trial197 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: osd.4 crush weight is 0.68359375 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: osd.5 crush weight is 0.68359375 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-18T04:54:31.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:31 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-18T04:54:31.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: Saving service mon spec with placement trial079:10.20.193.79=a;trial191:10.20.193.191=b;count:3 2026-02-18T04:54:31.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial197", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: Added label _no_schedule to host trial197 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: Added label _no_conf_keyring to host trial197 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: osd.4 crush weight is 0.68359375 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: osd.5 crush weight is 0.68359375 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-18T04:54:31.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:31 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-18T04:54:32.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:31 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a[20730]: 2026-02-18T04:54:31.828+0000 7f9edee1e640 -1 mon.a@0(leader).osd e42 definitely_dead 0 2026-02-18T04:54:32.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: Removing trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:32.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: Removing trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:54:32.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: Removing trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T04:54:32.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: osdmap e42: 6 total, 6 up, 6 in 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-18T04:54:32.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:32 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-18T04:54:32.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: Removing trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:32.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: Removing trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:54:32.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: Removing trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T04:54:32.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:32.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:32.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-18T04:54:32.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:32.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-18T04:54:32.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: osdmap e42: 6 total, 6 up, 6 in 2026-02-18T04:54:32.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:32.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-18T04:54:32.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:32 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-18T04:54:32.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: Removing trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: Removing trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: Removing trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: osdmap e42: 6 total, 6 up, 6 in 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-18T04:54:32.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:32 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-18T04:54:33.249 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:32 trial197 systemd[1]: Stopping Ceph osd.4 for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:54:33.249 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4[28538]: 2026-02-18T04:54:33.041+0000 7f650c3c4640 -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-18T04:54:33.249 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4[28538]: 2026-02-18T04:54:33.041+0000 7f650c3c4640 -1 osd.4 43 *** Got signal Terminated *** 2026-02-18T04:54:33.249 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4[28538]: 2026-02-18T04:54:33.041+0000 7f650c3c4640 -1 osd.4 43 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-18T04:54:33.250 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40289]: 2026-02-18 04:54:33.113417026 +0000 UTC m=+0.084390402 container died fc17686a7685f65b861d2120cc09d3462e2c2f599f4ea74053074ff9330f38f0 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=debug, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=20.2.1_2.17.26-baseline_2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed) 2026-02-18T04:54:33.250 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40289]: 2026-02-18 04:54:33.122750092 +0000 UTC m=+0.093723468 container remove fc17686a7685f65b861d2120cc09d3462e2c2f599f4ea74053074ff9330f38f0 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4, OSD_FLAVOR=debug, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-18T04:54:33.250 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 bash[40289]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.248136926 +0000 UTC m=+0.015788434 container create eda6c7a6d7fc540f08aea4301de4c0f4a6171d6aeef694575eee99d8b40f39f1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.build-date=20260216, 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/, io.buildah.version=1.33.7) 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.285079865 +0000 UTC m=+0.052731373 container init eda6c7a6d7fc540f08aea4301de4c0f4a6171d6aeef694575eee99d8b40f39f1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4-deactivate, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug, org.label-schema.schema-version=1.0) 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.287833523 +0000 UTC m=+0.055485041 container start eda6c7a6d7fc540f08aea4301de4c0f4a6171d6aeef694575eee99d8b40f39f1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, OSD_FLAVOR=debug) 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.288393564 +0000 UTC m=+0.056045082 container attach eda6c7a6d7fc540f08aea4301de4c0f4a6171d6aeef694575eee99d8b40f39f1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4-deactivate, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, OSD_FLAVOR=debug) 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.242162522 +0000 UTC m=+0.009814040 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.410064662 +0000 UTC m=+0.177716190 container died eda6c7a6d7fc540f08aea4301de4c0f4a6171d6aeef694575eee99d8b40f39f1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4-deactivate, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, io.buildah.version=1.33.7, OSD_FLAVOR=debug) 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 podman[40417]: 2026-02-18 04:54:33.420452097 +0000 UTC m=+0.188103605 container remove eda6c7a6d7fc540f08aea4301de4c0f4a6171d6aeef694575eee99d8b40f39f1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-4-deactivate, CEPH_REF=20.2.1_2.17.26-baseline_2, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=debug, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0) 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 systemd[1]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.4.service: Deactivated successfully. 2026-02-18T04:54:33.507 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 18 04:54:33 trial197 systemd[1]: Stopped Ceph osd.4 for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:54:33.788 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: osd.5 weight is now 0.0 2026-02-18T04:54:33.788 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:33.788 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-18T04:54:33.788 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-18T04:54:33.789 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-18T04:54:33.789 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: osdmap e43: 6 total, 5 up, 6 in 2026-02-18T04:54:33.789 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:33 trial197 ceph-mon[23300]: osd.4 marked itself dead as of e43 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: osd.5 weight is now 0.0 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: osdmap e43: 6 total, 5 up, 6 in 2026-02-18T04:54:33.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:33 trial079 ceph-mon[20734]: osd.4 marked itself dead as of e43 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: osd.5 weight is now 0.0 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: osdmap e43: 6 total, 5 up, 6 in 2026-02-18T04:54:33.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:33 trial191 ceph-mon[22977]: osd.4 marked itself dead as of e43 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: osd.4 now down 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Removing daemon osd.4 from trial197 -- ports [] 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Removing key for osd.4 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-18T04:54:34.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Successfully removed osd.4 on trial197 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Cluster is now healthy 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: osdmap e44: 5 total, 5 up, 5 in 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Successfully purged osd.4 on trial197 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: Zapping devices for osd.4 on trial197 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:34.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:34 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: osd.4 now down 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Removing daemon osd.4 from trial197 -- ports [] 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Removing key for osd.4 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Successfully removed osd.4 on trial197 2026-02-18T04:54:34.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Cluster is now healthy 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: osdmap e44: 5 total, 5 up, 5 in 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Successfully purged osd.4 on trial197 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: Zapping devices for osd.4 on trial197 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:34.830 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:34 trial197 ceph-mon[23300]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:34.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: osd.4 now down 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Removing daemon osd.4 from trial197 -- ports [] 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Removing key for osd.4 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Successfully removed osd.4 on trial197 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Cluster is now healthy 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: osdmap e44: 5 total, 5 up, 5 in 2026-02-18T04:54:34.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Successfully purged osd.4 on trial197 2026-02-18T04:54:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: Zapping devices for osd.4 on trial197 2026-02-18T04:54:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:34.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:34 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:35.827 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:54:35 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 2026-02-18T04:54:35.431+0000 7f9d5dc2b640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2026-02-18T04:54:35.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:35 trial197 podman[42605]: 2026-02-18 04:54:35.461935562 +0000 UTC m=+0.010643504 container died 1208090f05af9006c89b9432b45e9681b8ceaf9b05bc059663da8d22cc71649b (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-c, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=debug) 2026-02-18T04:54:35.828 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:35 trial197 podman[42605]: 2026-02-18 04:54:35.470387002 +0000 UTC m=+0.019094934 container remove 1208090f05af9006c89b9432b45e9681b8ceaf9b05bc059663da8d22cc71649b (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-c, ceph=True, CEPH_REF=20.2.1_2.17.26-baseline_2, OSD_FLAVOR=debug, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , 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, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-18T04:54:35.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:35 trial197 systemd[1]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.c.service: Deactivated successfully. 2026-02-18T04:54:35.829 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 18 04:54:35 trial197 systemd[1]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.c.service: Consumed 1.426s CPU time. 2026-02-18T04:54:37.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:54:37.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:54:37.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: purged_snaps scrub ok 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: pgmap v85: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: Detected new or changed devices on trial197 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: Removing monitor c from monmap... 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-02-18T04:54:37.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: mon.b calling monitor election 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: mon.a calling monitor election 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: monmap epoch 4 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: last_changed 2026-02-18T04:54:35.437192+0000 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: min_mon_release 20 (tentacle) 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: election_strategy: 1 2026-02-18T04:54:37.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:54:37.831 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: 1: [v2:10.20.193.191:3300/0,v1:10.20.193.191:6789/0] mon.b 2026-02-18T04:54:37.831 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: fsmap 2026-02-18T04:54:37.831 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: osdmap e45: 5 total, 5 up, 5 in 2026-02-18T04:54:37.831 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: mgrmap e15: a(active, since 102s), standbys: b 2026-02-18T04:54:37.831 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:37 trial079 ceph-mon[20734]: overall HEALTH_OK 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: purged_snaps scrub ok 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: pgmap v85: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: Detected new or changed devices on trial197 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:37.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: Removing monitor c from monmap... 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: mon.b calling monitor election 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: mon.a calling monitor election 2026-02-18T04:54:37.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: monmap epoch 4 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: last_changed 2026-02-18T04:54:35.437192+0000 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: created 2026-02-18T04:52:34.612790+0000 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: min_mon_release 20 (tentacle) 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: election_strategy: 1 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: 0: [v2:10.20.193.79:3300/0,v1:10.20.193.79:6789/0] mon.a 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: 1: [v2:10.20.193.191:3300/0,v1:10.20.193.191:6789/0] mon.b 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: fsmap 2026-02-18T04:54:37.834 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: osdmap e45: 5 total, 5 up, 5 in 2026-02-18T04:54:37.835 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: mgrmap e15: a(active, since 102s), standbys: b 2026-02-18T04:54:37.835 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:37 trial191 ceph-mon[22977]: overall HEALTH_OK 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: Removing daemon mon.c from trial197 -- ports [] 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:38 trial079 ceph-mon[20734]: osdmap e46: 5 total, 5 up, 5 in 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: Removing daemon mon.c from trial197 -- ports [] 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:38.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:38 trial191 ceph-mon[22977]: osdmap e46: 5 total, 5 up, 5 in 2026-02-18T04:54:39.311 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 2026-02-18T04:54:39.058+0000 7f9d5dc2b640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2026-02-18T04:54:39.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Updating trial079:/etc/ceph/ceph.conf 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Updating trial191:/etc/ceph/ceph.conf 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:39.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Reconfiguring mon.a (monmap changed)... 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Reconfiguring daemon mon.a on trial079 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.829 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Reconfiguring mgr.a (monmap changed)... 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Reconfiguring daemon mgr.a on trial079 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: osdmap e47: 5 total, 5 up, 5 in 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Reconfiguring osd.0 (monmap changed)... 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:39.830 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:39 trial079 ceph-mon[20734]: Reconfiguring daemon osd.0 on trial079 2026-02-18T04:54:40.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.082 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Updating trial079:/etc/ceph/ceph.conf 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Updating trial191:/etc/ceph/ceph.conf 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Updating trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Updating trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/config/ceph.conf 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.083 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Reconfiguring mon.a (monmap changed)... 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Reconfiguring daemon mon.a on trial079 2026-02-18T04:54:40.084 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Reconfiguring mgr.a (monmap changed)... 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Reconfiguring daemon mgr.a on trial079 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: osdmap e47: 5 total, 5 up, 5 in 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Reconfiguring osd.0 (monmap changed)... 2026-02-18T04:54:40.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T04:54:40.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:39 trial191 ceph-mon[22977]: Reconfiguring daemon osd.0 on trial079 2026-02-18T04:54:40.879 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring osd.1 (monmap changed)... 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring daemon osd.1 on trial079 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.880 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring mon.b (monmap changed)... 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring daemon mon.b on trial191 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring mgr.b (monmap changed)... 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring daemon mgr.b on trial191 2026-02-18T04:54:40.881 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: osdmap e48: 5 total, 5 up, 5 in 2026-02-18T04:54:40.882 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.882 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:40.882 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring osd.2 (monmap changed)... 2026-02-18T04:54:40.882 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:54:40.882 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:40.882 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:40 trial079 ceph-mon[20734]: Reconfiguring daemon osd.2 on trial191 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring osd.1 (monmap changed)... 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring daemon osd.1 on trial079 2026-02-18T04:54:41.085 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring mon.b (monmap changed)... 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring daemon mon.b on trial191 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring mgr.b (monmap changed)... 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T04:54:41.086 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring daemon mgr.b on trial191 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: osdmap e48: 5 total, 5 up, 5 in 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring osd.2 (monmap changed)... 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:41.087 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:40 trial191 ceph-mon[22977]: Reconfiguring daemon osd.2 on trial191 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: Reconfiguring osd.3 (monmap changed)... 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: Reconfiguring daemon osd.3 on trial191 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: Reconfiguring osd.5 (monmap changed)... 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: Reconfiguring daemon osd.5 on trial197 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: pgmap v91: 1 pgs: 1 peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.327 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:41 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: Reconfiguring osd.3 (monmap changed)... 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: Reconfiguring daemon osd.3 on trial191 2026-02-18T04:54:42.331 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: Reconfiguring osd.5 (monmap changed)... 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: Reconfiguring daemon osd.5 on trial197 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: pgmap v91: 1 pgs: 1 peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.332 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:41 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:42.827 INFO:journalctl@ceph.mgr.a.trial079.stdout:Feb 18 04:54:42 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mgr-a[20988]: 2026-02-18T04:54:42.468+0000 7f9d5dc2b640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2026-02-18T04:54:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:43.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:43.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:43.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:43.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-18T04:54:43.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:43.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:43.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:43 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:43.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:43.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:43 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:44.728 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:44 trial079 ceph-mon[20734]: pgmap v92: 1 pgs: 1 peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:44.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:44 trial191 ceph-mon[22977]: pgmap v92: 1 pgs: 1 peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-18T04:54:45.095 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch ps --hostname trial197 2026-02-18T04:54:45.276 INFO:teuthology.orchestra.run.trial079.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-18T04:54:45.276 INFO:teuthology.orchestra.run.trial079.stderr:osd.5 trial197 running (31s) 3s ago 33s 110M 43.0G 20.2.0-670-gadc19233 c2bc6184fe25 6a81fbb23f09 ' 2026-02-18T04:54:45.277 INFO:teuthology.orchestra.run.trial079.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-18T04:54:45.277 INFO:teuthology.orchestra.run.trial079.stderr:osd.5 trial197 running (31s) 3s ago 33s 110M 43.0G 20.2.0-670-gadc19233 c2bc6184fe25 6a81fbb23f09 ' '!=' 'No daemons reported' ']' 2026-02-18T04:54:45.277 INFO:teuthology.orchestra.run.trial079.stderr:+ sleep 15 2026-02-18T04:54:46.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:46 trial079 ceph-mon[20734]: from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:46.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:46 trial079 ceph-mon[20734]: pgmap v93: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 83 KiB/s, 0 objects/s recovering 2026-02-18T04:54:46.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:46 trial191 ceph-mon[22977]: from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:54:46.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:46 trial191 ceph-mon[22977]: pgmap v93: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 83 KiB/s, 0 objects/s recovering 2026-02-18T04:54:48.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:48 trial079 ceph-mon[20734]: pgmap v94: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-18T04:54:48.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:48 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a[20730]: 2026-02-18T04:54:48.623+0000 7f9edee1e640 -1 mon.a@0(leader).osd e48 definitely_dead 0 2026-02-18T04:54:48.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:48 trial191 ceph-mon[22977]: pgmap v94: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:49.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-18T04:54:49.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:49.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:49 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-02-18T04:54:49.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:49.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-18T04:54:49.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:49 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-02-18T04:54:49.906 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 systemd[1]: Stopping Ceph osd.5 for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:54:49.906 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5[34983]: 2026-02-18T04:54:49.687+0000 7fd9f0b3a640 -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-18T04:54:49.906 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5[34983]: 2026-02-18T04:54:49.687+0000 7fd9f0b3a640 -1 osd.5 49 *** Got signal Terminated *** 2026-02-18T04:54:49.906 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5[34983]: 2026-02-18T04:54:49.687+0000 7fd9f0b3a640 -1 osd.5 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-18T04:54:49.906 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46686]: 2026-02-18 04:54:49.760055245 +0000 UTC m=+0.083881455 container died 6a81fbb23f09b566652f2b79111b83f7115c2ef0ee2772a4af2ee43d9dd73740 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.vendor=CentOS, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, OSD_FLAVOR=debug, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-18T04:54:49.906 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46686]: 2026-02-18 04:54:49.76896545 +0000 UTC m=+0.092791670 container remove 6a81fbb23f09b566652f2b79111b83f7115c2ef0ee2772a4af2ee43d9dd73740 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, OSD_FLAVOR=debug, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2026-02-18T04:54:49.907 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 bash[46686]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5 2026-02-18T04:54:50.211 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46811]: 2026-02-18 04:54:49.904583109 +0000 UTC m=+0.015126954 container create 883b264d67b68cc5be60bfdbfea1a4bc0f895ec729e8bc3bc73d821704754542 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5-deactivate, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, OSD_FLAVOR=debug, CEPH_REF=20.2.1_2.17.26-baseline_2, ceph=True, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed) 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46811]: 2026-02-18 04:54:49.9359136 +0000 UTC m=+0.046457455 container init 883b264d67b68cc5be60bfdbfea1a4bc0f895ec729e8bc3bc73d821704754542 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5-deactivate, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, OSD_FLAVOR=debug, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.vendor=CentOS, CEPH_REF=20.2.1_2.17.26-baseline_2, ceph=True, 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.license=GPLv2, org.label-schema.schema-version=1.0) 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46811]: 2026-02-18 04:54:49.938393689 +0000 UTC m=+0.048937524 container start 883b264d67b68cc5be60bfdbfea1a4bc0f895ec729e8bc3bc73d821704754542 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, 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.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_REF=20.2.1_2.17.26-baseline_2, ceph=True, org.label-schema.build-date=20260216, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed) 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46811]: 2026-02-18 04:54:49.938917154 +0000 UTC m=+0.049460999 container attach 883b264d67b68cc5be60bfdbfea1a4bc0f895ec729e8bc3bc73d821704754542 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5-deactivate, OSD_FLAVOR=debug, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , 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=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, CEPH_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:49 trial197 podman[46811]: 2026-02-18 04:54:49.898675596 +0000 UTC m=+0.009219441 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:50 trial197 podman[46811]: 2026-02-18 04:54:50.065618677 +0000 UTC m=+0.176162532 container died 883b264d67b68cc5be60bfdbfea1a4bc0f895ec729e8bc3bc73d821704754542 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5-deactivate, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=debug, org.label-schema.vendor=CentOS, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed) 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:50 trial197 podman[46811]: 2026-02-18 04:54:50.075369127 +0000 UTC m=+0.185912972 container remove 883b264d67b68cc5be60bfdbfea1a4bc0f895ec729e8bc3bc73d821704754542 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-5-deactivate, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=20.2.1_2.17.26-baseline_2, ceph=True, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=debug, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2) 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:50 trial197 systemd[1]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.5.service: Deactivated successfully. 2026-02-18T04:54:50.212 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 18 04:54:50 trial197 systemd[1]: Stopped Ceph osd.5 for 9d405fe5-0c85-11f1-b595-d404e6e7d460. 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: pgmap v95: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 58 KiB/s, 0 objects/s recovering 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Monitor daemon marked osd.5 down, but it is still running 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: map e49 wrongly marked me down at e49 2026-02-18T04:54:50.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: osdmap e49: 5 total, 4 up, 5 in 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: osd.5 marked itself dead as of e49 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: osd.5 now down 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Removing daemon osd.5 from trial197 -- ports [] 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: Cluster is now healthy 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-02-18T04:54:50.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:50 trial079 ceph-mon[20734]: osdmap e50: 4 total, 4 up, 4 in 2026-02-18T04:54:50.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: pgmap v95: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 58 KiB/s, 0 objects/s recovering 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Monitor daemon marked osd.5 down, but it is still running 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: map e49 wrongly marked me down at e49 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: osdmap e49: 5 total, 4 up, 5 in 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: osd.5 marked itself dead as of e49 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: osd.5 now down 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Removing daemon osd.5 from trial197 -- ports [] 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-02-18T04:54:50.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-02-18T04:54:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-02-18T04:54:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-18T04:54:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-02-18T04:54:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: Cluster is now healthy 2026-02-18T04:54:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-02-18T04:54:50.833 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:50 trial191 ceph-mon[22977]: osdmap e50: 4 total, 4 up, 4 in 2026-02-18T04:54:51.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: Removing key for osd.5 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: Successfully removed osd.5 on trial197 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: Successfully purged osd.5 on trial197 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: Zapping devices for osd.5 on trial197 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:51.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:51 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:51.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: Removing key for osd.5 2026-02-18T04:54:51.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: Successfully removed osd.5 on trial197 2026-02-18T04:54:51.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: Successfully purged osd.5 on trial197 2026-02-18T04:54:51.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: Zapping devices for osd.5 on trial197 2026-02-18T04:54:51.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:51.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:51.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:51.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:51 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: Successfully zapped devices for osd.5 on trial197 2026-02-18T04:54:52.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:52.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:52.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:52.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:52.828 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:52 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:52.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: Successfully zapped devices for osd.5 on trial197 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:52.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:52 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: Detected new or changed devices on trial197 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:53.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:53 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:53.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: Detected new or changed devices on trial197 2026-02-18T04:54:53.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:53.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:53.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:54:53.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:54:53.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:54:53.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:53 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:54:54.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:54 trial079 ceph-mon[20734]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:54.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:54 trial191 ceph-mon[22977]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:56.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:56 trial079 ceph-mon[20734]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:56.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:56 trial191 ceph-mon[22977]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:58.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:54:58 trial079 ceph-mon[20734]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:54:58.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:54:58 trial191 ceph-mon[22977]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:00.278 INFO:teuthology.orchestra.run.trial079.stderr:++ ceph orch ps --hostname trial197 2026-02-18T04:55:00.462 INFO:teuthology.orchestra.run.trial079.stderr:+ HOST_C_DAEMONS='No daemons reported' 2026-02-18T04:55:00.463 INFO:teuthology.orchestra.run.trial079.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2026-02-18T04:55:00.463 INFO:teuthology.orchestra.run.trial079.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-02-18T04:55:00.576 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:00 trial079 ceph-mon[20734]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:00.627 INFO:teuthology.orchestra.run.trial079.stderr:17 2026-02-18T04:55:00.635 INFO:teuthology.orchestra.run.trial079.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-02-18T04:55:00.654 INFO:teuthology.orchestra.run.trial079.stderr:++ cat crushmap.txt 2026-02-18T04:55:00.656 INFO:teuthology.orchestra.run.trial079.stderr:+ CRUSH_MAP='# begin crush map 2026-02-18T04:55:00.656 INFO:teuthology.orchestra.run.trial079.stderr:tunable choose_local_tries 0 2026-02-18T04:55:00.656 INFO:teuthology.orchestra.run.trial079.stderr:tunable choose_local_fallback_tries 0 2026-02-18T04:55:00.656 INFO:teuthology.orchestra.run.trial079.stderr:tunable choose_total_tries 50 2026-02-18T04:55:00.656 INFO:teuthology.orchestra.run.trial079.stderr:tunable chooseleaf_descend_once 1 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:tunable chooseleaf_vary_r 1 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:tunable chooseleaf_stable 1 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:tunable straw_calc_version 1 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:tunable allowed_bucket_algs 54 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:# devices 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:device 0 osd.0 class ssd 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:device 1 osd.1 class ssd 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:device 2 osd.2 class ssd 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr:device 3 osd.3 class ssd 2026-02-18T04:55:00.657 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:# types 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 0 osd 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 1 host 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 2 chassis 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 3 rack 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 4 row 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 5 pdu 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 6 pod 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 7 room 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 8 datacenter 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 9 zone 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 10 region 2026-02-18T04:55:00.658 INFO:teuthology.orchestra.run.trial079.stderr:type 11 root 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr:# buckets 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr:host trial079 { 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: id -3 # do not change unnecessarily 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: id -4 class ssd # do not change unnecessarily 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: # weight 1.36719 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: item osd.0 weight 0.68359 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr: item osd.1 weight 0.68359 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:00.659 INFO:teuthology.orchestra.run.trial079.stderr:host trial191 { 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: id -5 # do not change unnecessarily 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: id -6 class ssd # do not change unnecessarily 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: # weight 1.36719 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: item osd.2 weight 0.68359 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: item osd.3 weight 0.68359 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr:host trial197 { 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: id -7 # do not change unnecessarily 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: id -8 class ssd # do not change unnecessarily 2026-02-18T04:55:00.660 INFO:teuthology.orchestra.run.trial079.stderr: # weight 0.00000 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr:root default { 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: id -1 # do not change unnecessarily 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: id -2 class ssd # do not change unnecessarily 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: # weight 2.73438 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: item trial079 weight 1.36719 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: item trial191 weight 1.36719 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr: item trial197 weight 0.00000 2026-02-18T04:55:00.661 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr:# rules 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr:rule replicated_rule { 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: id 0 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: type replicated 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: step take default 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: step choose firstn 0 type osd 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: step emit 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr:# end crush map' 2026-02-18T04:55:00.662 INFO:teuthology.orchestra.run.trial079.stderr:+ grep -q trial197 2026-02-18T04:55:00.663 INFO:teuthology.orchestra.run.trial079.stderr:+ ceph orch host rm trial197 --rm-crush-entry 2026-02-18T04:55:00.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:00 trial191 ceph-mon[22977]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:01.498 INFO:teuthology.orchestra.run.trial079.stdout:Removed host 'trial197' 2026-02-18T04:55:01.510 INFO:teuthology.orchestra.run.trial079.stderr:+ sleep 30 2026-02-18T04:55:01.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:01 trial079 ceph-mon[20734]: from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:55:01.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:01 trial079 ceph-mon[20734]: from='client.? 10.20.193.79:0/1026571362' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-02-18T04:55:01.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:01 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "trial197"} : dispatch 2026-02-18T04:55:01.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:01 trial191 ceph-mon[22977]: from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:55:01.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:01 trial191 ceph-mon[22977]: from='client.? 10.20.193.79:0/1026571362' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-02-18T04:55:01.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:01 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "trial197"} : dispatch 2026-02-18T04:55:02.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "trial197", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "trial197"}]': finished 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: osdmap e51: 4 total, 4 up, 4 in 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.trial197"} : dispatch 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.trial197"}]': finished 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: Removed host trial197 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:55:02.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:02 trial079 ceph-mon[20734]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:55:02.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "trial197", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T04:55:02.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:02.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "trial197"}]': finished 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: osdmap e51: 4 total, 4 up, 4 in 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.trial197"} : dispatch 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.trial197"}]': finished 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: Removed host trial197 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' 2026-02-18T04:55:02.832 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:02 trial191 ceph-mon[22977]: from='mgr.14152 10.20.193.79:0/3869669180' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T04:55:04.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:04 trial079 ceph-mon[20734]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:04.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:04 trial191 ceph-mon[22977]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:06.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:06 trial079 ceph-mon[20734]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:06.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:06 trial191 ceph-mon[22977]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:08.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:08 trial079 ceph-mon[20734]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:08.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:08 trial191 ceph-mon[22977]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:10.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:10 trial079 ceph-mon[20734]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:10.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:10 trial191 ceph-mon[22977]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:12.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:12 trial079 ceph-mon[20734]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:12.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:12 trial191 ceph-mon[22977]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:14.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:14 trial079 ceph-mon[20734]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:14.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:14 trial191 ceph-mon[22977]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:16.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:16 trial079 ceph-mon[20734]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:16.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:16 trial191 ceph-mon[22977]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:18.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:18 trial079 ceph-mon[20734]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:18.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:18 trial191 ceph-mon[22977]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:20.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:20 trial079 ceph-mon[20734]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:20.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:20 trial191 ceph-mon[22977]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:22.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:22 trial079 ceph-mon[20734]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:22.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:22 trial191 ceph-mon[22977]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:24.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:24 trial079 ceph-mon[20734]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:24.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:24 trial191 ceph-mon[22977]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:26.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:26 trial079 ceph-mon[20734]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:26.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:26 trial191 ceph-mon[22977]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:28.826 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:28 trial079 ceph-mon[20734]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:28.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:28 trial191 ceph-mon[22977]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:30.827 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:30 trial079 ceph-mon[20734]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:30.831 INFO:journalctl@ceph.mon.b.trial191.stdout:Feb 18 04:55:30 trial191 ceph-mon[22977]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-18T04:55:31.512 INFO:teuthology.orchestra.run.trial079.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-02-18T04:55:31.680 INFO:teuthology.orchestra.run.trial079.stderr:18 2026-02-18T04:55:31.687 INFO:teuthology.orchestra.run.trial079.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-02-18T04:55:31.706 INFO:teuthology.orchestra.run.trial079.stderr:++ cat crushmap.txt 2026-02-18T04:55:31.707 INFO:teuthology.orchestra.run.trial079.stderr:+ CRUSH_MAP='# begin crush map 2026-02-18T04:55:31.707 INFO:teuthology.orchestra.run.trial079.stderr:tunable choose_local_tries 0 2026-02-18T04:55:31.707 INFO:teuthology.orchestra.run.trial079.stderr:tunable choose_local_fallback_tries 0 2026-02-18T04:55:31.707 INFO:teuthology.orchestra.run.trial079.stderr:tunable choose_total_tries 50 2026-02-18T04:55:31.707 INFO:teuthology.orchestra.run.trial079.stderr:tunable chooseleaf_descend_once 1 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:tunable chooseleaf_vary_r 1 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:tunable chooseleaf_stable 1 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:tunable straw_calc_version 1 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:tunable allowed_bucket_algs 54 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:# devices 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:device 0 osd.0 class ssd 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:device 1 osd.1 class ssd 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:device 2 osd.2 class ssd 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:device 3 osd.3 class ssd 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:31.708 INFO:teuthology.orchestra.run.trial079.stderr:# types 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 0 osd 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 1 host 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 2 chassis 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 3 rack 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 4 row 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 5 pdu 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 6 pod 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 7 room 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 8 datacenter 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 9 zone 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 10 region 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr:type 11 root 2026-02-18T04:55:31.709 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr:# buckets 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr:host trial079 { 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: id -3 # do not change unnecessarily 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: id -4 class ssd # do not change unnecessarily 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: # weight 1.36719 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: item osd.0 weight 0.68359 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr: item osd.1 weight 0.68359 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:31.710 INFO:teuthology.orchestra.run.trial079.stderr:host trial191 { 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: id -5 # do not change unnecessarily 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: id -6 class ssd # do not change unnecessarily 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: # weight 1.36719 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: item osd.2 weight 0.68359 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: item osd.3 weight 0.68359 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr:root default { 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: id -1 # do not change unnecessarily 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: id -2 class ssd # do not change unnecessarily 2026-02-18T04:55:31.711 INFO:teuthology.orchestra.run.trial079.stderr: # weight 2.73438 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: alg straw2 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: hash 0 # rjenkins1 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: item trial079 weight 1.36719 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: item trial191 weight 1.36719 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr:# rules 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr:rule replicated_rule { 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: id 0 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: type replicated 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: step take default 2026-02-18T04:55:31.712 INFO:teuthology.orchestra.run.trial079.stderr: step choose firstn 0 type osd 2026-02-18T04:55:31.713 INFO:teuthology.orchestra.run.trial079.stderr: step emit 2026-02-18T04:55:31.713 INFO:teuthology.orchestra.run.trial079.stderr:} 2026-02-18T04:55:31.713 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:31.713 INFO:teuthology.orchestra.run.trial079.stderr:# end crush map' 2026-02-18T04:55:31.713 INFO:teuthology.orchestra.run.trial079.stderr:+ grep -q trial197 2026-02-18T04:55:31.740 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-18T04:55:31.755 INFO:tasks.cephadm:Teardown begin 2026-02-18T04:55:31.756 DEBUG:teuthology.orchestra.run.trial079:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:55:31.783 DEBUG:teuthology.orchestra.run.trial191:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:55:31.812 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:55:31.851 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-18T04:55:31.851 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-18T04:55:31.966 INFO:teuthology.orchestra.run.trial079.stderr:Inferring config /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/mon.a/config 2026-02-18T04:55:31.985 INFO:teuthology.orchestra.run.trial079.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-18T04:55:32.001 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-18T04:55:32.001 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-18T04:55:32.002 DEBUG:teuthology.orchestra.run.trial079:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-18T04:55:32.019 DEBUG:teuthology.orchestra.run.trial191:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-18T04:55:32.036 DEBUG:teuthology.orchestra.run.trial197:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-18T04:55:32.053 INFO:tasks.cephadm:Stopping all daemons... 2026-02-18T04:55:32.053 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2026-02-18T04:55:32.054 DEBUG:teuthology.orchestra.run.trial079:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a 2026-02-18T04:55:32.382 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:32 trial079 systemd[1]: Stopping Ceph mon.a for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:55:32.382 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:32 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a[20730]: 2026-02-18T04:55:32.158+0000 7f9ee4629640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-18T04:55:32.383 INFO:journalctl@ceph.mon.a.trial079.stdout:Feb 18 04:55:32 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-mon-a[20730]: 2026-02-18T04:55:32.158+0000 7f9ee4629640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2026-02-18T04:55:32.460 DEBUG:teuthology.orchestra.run.trial079:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.a.service' 2026-02-18T04:55:32.508 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:32.508 INFO:tasks.cephadm.mon.a:Stopped mon.a 2026-02-18T04:55:32.508 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2026-02-18T04:55:32.508 DEBUG:teuthology.orchestra.run.trial191:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.b 2026-02-18T04:55:32.718 DEBUG:teuthology.orchestra.run.trial191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.b.service' 2026-02-18T04:55:32.767 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:32.768 INFO:tasks.cephadm.mon.c:Stopped mon.b 2026-02-18T04:55:32.768 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2026-02-18T04:55:32.768 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.c 2026-02-18T04:55:32.803 DEBUG:teuthology.orchestra.run.trial197:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mon.c.service' 2026-02-18T04:55:32.893 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:32.893 INFO:tasks.cephadm.mon.c:Stopped mon.c 2026-02-18T04:55:32.893 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2026-02-18T04:55:32.893 DEBUG:teuthology.orchestra.run.trial079:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a 2026-02-18T04:55:33.138 DEBUG:teuthology.orchestra.run.trial079:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.a.service' 2026-02-18T04:55:33.181 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:33.181 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2026-02-18T04:55:33.182 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2026-02-18T04:55:33.182 DEBUG:teuthology.orchestra.run.trial191:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.b 2026-02-18T04:55:33.312 INFO:journalctl@ceph.mgr.b.trial191.stdout:Feb 18 04:55:33 trial191 systemd[1]: Stopping Ceph mgr.b for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:55:33.395 DEBUG:teuthology.orchestra.run.trial191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@mgr.b.service' 2026-02-18T04:55:33.439 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:33.439 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2026-02-18T04:55:33.440 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2026-02-18T04:55:33.440 DEBUG:teuthology.orchestra.run.trial079:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.0 2026-02-18T04:55:33.827 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:33 trial079 systemd[1]: Stopping Ceph osd.0 for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:55:33.827 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:33 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0[34274]: 2026-02-18T04:55:33.539+0000 7fe8f8940640 -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-18T04:55:33.827 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:33 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0[34274]: 2026-02-18T04:55:33.539+0000 7fe8f8940640 -1 osd.0 51 *** Got signal Terminated *** 2026-02-18T04:55:33.827 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:33 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0[34274]: 2026-02-18T04:55:33.539+0000 7fe8f8940640 -1 osd.0 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52711]: 2026-02-18 04:55:38.600057011 +0000 UTC m=+5.072119217 container died fe1ccac18baf3fd5b109adfd5d8ab663b7cf54af701cee96be383b05f771601b (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.schema-version=1.0, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=debug) 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52711]: 2026-02-18 04:55:38.608732653 +0000 UTC m=+5.080794859 container remove fe1ccac18baf3fd5b109adfd5d8ab663b7cf54af701cee96be383b05f771601b (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=debug, org.label-schema.schema-version=1.0) 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 bash[52711]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52838]: 2026-02-18 04:55:38.732932766 +0000 UTC m=+0.016539308 container create b4efd7c6f9e7d10a80eed04b3bdff8c3ff3c8021dc22fd5b5f7deefc991f8988 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.license=GPLv2) 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52838]: 2026-02-18 04:55:38.761193864 +0000 UTC m=+0.044800406 container init b4efd7c6f9e7d10a80eed04b3bdff8c3ff3c8021dc22fd5b5f7deefc991f8988 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0-deactivate, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52838]: 2026-02-18 04:55:38.763599316 +0000 UTC m=+0.047205848 container start b4efd7c6f9e7d10a80eed04b3bdff8c3ff3c8021dc22fd5b5f7deefc991f8988 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0-deactivate, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=debug, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7) 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52838]: 2026-02-18 04:55:38.764030121 +0000 UTC m=+0.047636673 container attach b4efd7c6f9e7d10a80eed04b3bdff8c3ff3c8021dc22fd5b5f7deefc991f8988 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-0-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.build-date=20260216, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, OSD_FLAVOR=debug, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-18T04:55:38.890 INFO:journalctl@ceph.osd.0.trial079.stdout:Feb 18 04:55:38 trial079 podman[52838]: 2026-02-18 04:55:38.725905332 +0000 UTC m=+0.009511874 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T04:55:38.920 DEBUG:teuthology.orchestra.run.trial079:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.0.service' 2026-02-18T04:55:38.966 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:38.966 INFO:tasks.cephadm.osd.0:Stopped osd.0 2026-02-18T04:55:38.966 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2026-02-18T04:55:38.967 DEBUG:teuthology.orchestra.run.trial079:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.1 2026-02-18T04:55:39.327 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:39 trial079 systemd[1]: Stopping Ceph osd.1 for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:55:39.327 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:39 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1[40764]: 2026-02-18T04:55:39.064+0000 7fd516c3a640 -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-18T04:55:39.327 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:39 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1[40764]: 2026-02-18T04:55:39.064+0000 7fd516c3a640 -1 osd.1 51 *** Got signal Terminated *** 2026-02-18T04:55:39.327 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:39 trial079 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1[40764]: 2026-02-18T04:55:39.064+0000 7fd516c3a640 -1 osd.1 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-18T04:55:44.427 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[52971]: 2026-02-18 04:55:44.1337747 +0000 UTC m=+5.080951561 container died 70a0e0a106d8a41977ee97c00f585ba41eca95f24036fc2f8b9e84b090813f3f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, 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=debug, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-18T04:55:44.427 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[52971]: 2026-02-18 04:55:44.142886548 +0000 UTC m=+5.090063409 container remove 70a0e0a106d8a41977ee97c00f585ba41eca95f24036fc2f8b9e84b090813f3f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, CEPH_REF=20.2.1_2.17.26-baseline_2, OSD_FLAVOR=debug, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7) 2026-02-18T04:55:44.428 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 bash[52971]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1 2026-02-18T04:55:44.428 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[53103]: 2026-02-18 04:55:44.270901799 +0000 UTC m=+0.014947939 container create 84a471aeacd6a072f419e0a39e83b132a73e051348e6065ff51d7007fd6aa667 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1-deactivate, OSD_FLAVOR=debug, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216) 2026-02-18T04:55:44.428 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[53103]: 2026-02-18 04:55:44.303904736 +0000 UTC m=+0.047950805 container init 84a471aeacd6a072f419e0a39e83b132a73e051348e6065ff51d7007fd6aa667 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, OSD_FLAVOR=debug, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, ceph=True, 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_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T04:55:44.428 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[53103]: 2026-02-18 04:55:44.306374568 +0000 UTC m=+0.050420627 container start 84a471aeacd6a072f419e0a39e83b132a73e051348e6065ff51d7007fd6aa667 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1-deactivate, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=debug, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-18T04:55:44.428 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[53103]: 2026-02-18 04:55:44.307001309 +0000 UTC m=+0.051047378 container attach 84a471aeacd6a072f419e0a39e83b132a73e051348e6065ff51d7007fd6aa667 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-1-deactivate, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , ceph=True, OSD_FLAVOR=debug, 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) 2026-02-18T04:55:44.428 INFO:journalctl@ceph.osd.1.trial079.stdout:Feb 18 04:55:44 trial079 podman[53103]: 2026-02-18 04:55:44.264870746 +0000 UTC m=+0.008916815 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T04:55:44.478 DEBUG:teuthology.orchestra.run.trial079:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.1.service' 2026-02-18T04:55:44.522 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:44.522 INFO:tasks.cephadm.osd.1:Stopped osd.1 2026-02-18T04:55:44.522 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2026-02-18T04:55:44.522 DEBUG:teuthology.orchestra.run.trial191:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.2 2026-02-18T04:55:44.832 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:44 trial191 systemd[1]: Stopping Ceph osd.2 for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:55:44.832 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:44 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2[28532]: 2026-02-18T04:55:44.618+0000 7f68e2f9b640 -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-18T04:55:44.832 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:44 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2[28532]: 2026-02-18T04:55:44.618+0000 7f68e2f9b640 -1 osd.2 51 *** Got signal Terminated *** 2026-02-18T04:55:44.832 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:44 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2[28532]: 2026-02-18T04:55:44.618+0000 7f68e2f9b640 -1 osd.2 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-18T04:55:49.987 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42740]: 2026-02-18 04:55:49.68842645 +0000 UTC m=+5.081509787 container died 810accdd168fd18224d3a2b4b96359a198e5692937535d85f6bf3c99b1a3c8af (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216) 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42740]: 2026-02-18 04:55:49.697429808 +0000 UTC m=+5.090513145 container remove 810accdd168fd18224d3a2b4b96359a198e5692937535d85f6bf3c99b1a3c8af (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2, OSD_FLAVOR=debug, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=20.2.1_2.17.26-baseline_2, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216) 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 bash[42740]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42866]: 2026-02-18 04:55:49.830567216 +0000 UTC m=+0.016344330 container create 9a903ee4e2f38d18f15c8ad343255222dc59948380130f392ef8c4e26eebef9f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, ceph=True, OSD_FLAVOR=debug, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, 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/, CEPH_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42866]: 2026-02-18 04:55:49.857079205 +0000 UTC m=+0.042856259 container init 9a903ee4e2f38d18f15c8ad343255222dc59948380130f392ef8c4e26eebef9f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2-deactivate, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=debug, org.label-schema.schema-version=1.0) 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42866]: 2026-02-18 04:55:49.859340604 +0000 UTC m=+0.045117658 container start 9a903ee4e2f38d18f15c8ad343255222dc59948380130f392ef8c4e26eebef9f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2-deactivate, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, OSD_FLAVOR=debug, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216) 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42866]: 2026-02-18 04:55:49.859821766 +0000 UTC m=+0.045598830 container attach 9a903ee4e2f38d18f15c8ad343255222dc59948380130f392ef8c4e26eebef9f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, 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/, ceph=True, OSD_FLAVOR=debug, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, io.buildah.version=1.33.7, org.label-schema.license=GPLv2) 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42866]: 2026-02-18 04:55:49.824227301 +0000 UTC m=+0.010004355 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T04:55:49.988 INFO:journalctl@ceph.osd.2.trial191.stdout:Feb 18 04:55:49 trial191 podman[42866]: 2026-02-18 04:55:49.986553866 +0000 UTC m=+0.172330940 container died 9a903ee4e2f38d18f15c8ad343255222dc59948380130f392ef8c4e26eebef9f (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-2-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-18T04:55:50.017 DEBUG:teuthology.orchestra.run.trial191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.2.service' 2026-02-18T04:55:50.063 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:50.064 INFO:tasks.cephadm.osd.2:Stopped osd.2 2026-02-18T04:55:50.064 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2026-02-18T04:55:50.064 DEBUG:teuthology.orchestra.run.trial191:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.3 2026-02-18T04:55:50.332 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:50 trial191 systemd[1]: Stopping Ceph osd.3 for 9d405fe5-0c85-11f1-b595-d404e6e7d460... 2026-02-18T04:55:50.332 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:50 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3[34984]: 2026-02-18T04:55:50.155+0000 7f937ee60640 -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-18T04:55:50.332 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:50 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3[34984]: 2026-02-18T04:55:50.155+0000 7f937ee60640 -1 osd.3 51 *** Got signal Terminated *** 2026-02-18T04:55:50.332 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:50 trial191 ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3[34984]: 2026-02-18T04:55:50.155+0000 7f937ee60640 -1 osd.3 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-18T04:55:55.512 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[42998]: 2026-02-18 04:55:55.224192357 +0000 UTC m=+5.080489503 container died 694fa4ece43bac030c3de846a48a4a715e826f6efe8f8f9b51d5f48f8897dfb1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, ceph=True, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=debug, org.label-schema.build-date=20260216) 2026-02-18T04:55:55.512 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[42998]: 2026-02-18 04:55:55.232385305 +0000 UTC m=+5.088682461 container remove 694fa4ece43bac030c3de846a48a4a715e826f6efe8f8f9b51d5f48f8897dfb1 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3, 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.33.7, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, 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_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T04:55:55.512 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 bash[42998]: ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3 2026-02-18T04:55:55.513 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[43129]: 2026-02-18 04:55:55.35764727 +0000 UTC m=+0.016154414 container create c8f622bae5878cf99f50252db88ef390f095399be8b57b742c45364e40bb1022 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, OSD_FLAVOR=debug, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , ceph=True, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, CEPH_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T04:55:55.513 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[43129]: 2026-02-18 04:55:55.388414425 +0000 UTC m=+0.046921579 container init c8f622bae5878cf99f50252db88ef390f095399be8b57b742c45364e40bb1022 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3-deactivate, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug) 2026-02-18T04:55:55.513 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[43129]: 2026-02-18 04:55:55.390777846 +0000 UTC m=+0.049284990 container start c8f622bae5878cf99f50252db88ef390f095399be8b57b742c45364e40bb1022 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3-deactivate, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, io.buildah.version=1.33.7, OSD_FLAVOR=debug, 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=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-18T04:55:55.513 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[43129]: 2026-02-18 04:55:55.391321295 +0000 UTC m=+0.049828439 container attach c8f622bae5878cf99f50252db88ef390f095399be8b57b742c45364e40bb1022 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3-deactivate, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True) 2026-02-18T04:55:55.513 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[43129]: 2026-02-18 04:55:55.351691104 +0000 UTC m=+0.010198248 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T04:55:55.513 INFO:journalctl@ceph.osd.3.trial191.stdout:Feb 18 04:55:55 trial191 podman[43129]: 2026-02-18 04:55:55.511106683 +0000 UTC m=+0.169613827 container died c8f622bae5878cf99f50252db88ef390f095399be8b57b742c45364e40bb1022 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460-osd-3-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, ceph=True, io.buildah.version=1.33.7, CEPH_REF=20.2.1_2.17.26-baseline_2, OSD_FLAVOR=debug, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-18T04:55:55.536 DEBUG:teuthology.orchestra.run.trial191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.3.service' 2026-02-18T04:55:55.582 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:55.583 INFO:tasks.cephadm.osd.3:Stopped osd.3 2026-02-18T04:55:55.583 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2026-02-18T04:55:55.583 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.4 2026-02-18T04:55:55.618 DEBUG:teuthology.orchestra.run.trial197:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.4.service' 2026-02-18T04:55:55.701 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:55.702 INFO:tasks.cephadm.osd.4:Stopped osd.4 2026-02-18T04:55:55.702 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2026-02-18T04:55:55.702 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.5 2026-02-18T04:55:55.772 DEBUG:teuthology.orchestra.run.trial197:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9d405fe5-0c85-11f1-b595-d404e6e7d460@osd.5.service' 2026-02-18T04:55:55.856 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T04:55:55.857 INFO:tasks.cephadm.osd.5:Stopped osd.5 2026-02-18T04:55:55.857 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 --force --keep-logs 2026-02-18T04:55:55.977 INFO:teuthology.orchestra.run.trial079.stdout:Deleting cluster with fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:55:56.924 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 --force --keep-logs 2026-02-18T04:55:57.041 INFO:teuthology.orchestra.run.trial191.stdout:Deleting cluster with fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:55:57.969 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 --force --keep-logs 2026-02-18T04:55:58.087 INFO:teuthology.orchestra.run.trial197.stdout:Deleting cluster with fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:55:58.358 DEBUG:teuthology.orchestra.run.trial079:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:55:58.387 DEBUG:teuthology.orchestra.run.trial191:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:55:58.415 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T04:55:58.442 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-18T04:55:58.444 DEBUG:teuthology.misc:Transferring archived files from trial079:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial079/crash 2026-02-18T04:55:58.445 DEBUG:teuthology.orchestra.run.trial079:> sudo tar c -f - -C /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash -- . 2026-02-18T04:55:58.471 INFO:teuthology.orchestra.run.trial079.stderr:tar: /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-18T04:55:58.471 INFO:teuthology.orchestra.run.trial079.stderr:tar: Error is not recoverable: exiting now 2026-02-18T04:55:58.474 DEBUG:teuthology.misc:Transferring archived files from trial191:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial191/crash 2026-02-18T04:55:58.474 DEBUG:teuthology.orchestra.run.trial191:> sudo tar c -f - -C /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash -- . 2026-02-18T04:55:58.499 INFO:teuthology.orchestra.run.trial191.stderr:tar: /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-18T04:55:58.499 INFO:teuthology.orchestra.run.trial191.stderr:tar: Error is not recoverable: exiting now 2026-02-18T04:55:58.501 DEBUG:teuthology.misc:Transferring archived files from trial197:/var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial197/crash 2026-02-18T04:55:58.503 DEBUG:teuthology.orchestra.run.trial197:> sudo tar c -f - -C /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash -- . 2026-02-18T04:55:58.527 INFO:teuthology.orchestra.run.trial197.stderr:tar: /var/lib/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-18T04:55:58.527 INFO:teuthology.orchestra.run.trial197.stderr:tar: Error is not recoverable: exiting now 2026-02-18T04:55:58.528 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-18T04:55:58.529 DEBUG:teuthology.orchestra.run.trial079:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-18T04:55:58.554 INFO:tasks.cephadm:Compressing logs... 2026-02-18T04:55:58.555 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:55:58.596 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:55:58.598 DEBUG:teuthology.orchestra.run.trial197:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-18T04:55:58.620 INFO:teuthology.orchestra.run.trial079.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-18T04:55:58.620 INFO:teuthology.orchestra.run.trial079.stderr:: No such file or directory 2026-02-18T04:55:58.620 INFO:teuthology.orchestra.run.trial079.stderr:gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.a.log 2026-02-18T04:55:58.620 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.0.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mgr.a.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr: 83.7% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log.gz 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mgr.a.log: 89.4% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.1.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log 2026-02-18T04:55:58.621 INFO:teuthology.orchestra.run.trial079.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.1.log: /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log: 90.4% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log.gz 2026-02-18T04:55:58.622 INFO:teuthology.orchestra.run.trial079.stderr: 84.5% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log.gz 2026-02-18T04:55:58.627 INFO:teuthology.orchestra.run.trial191.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-18T04:55:58.627 INFO:teuthology.orchestra.run.trial191.stderr:: No such file or directory 2026-02-18T04:55:58.627 INFO:teuthology.orchestra.run.trial191.stderr:gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.2.log 2026-02-18T04:55:58.627 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.3.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.3.log: 91.0% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mgr.b.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr: 83.8% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log.gz 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.b.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.b.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log: /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log: 90.7% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log.gz 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr: 84.4% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log.gz 2026-02-18T04:55:58.628 INFO:teuthology.orchestra.run.trial191.stderr: 90.0% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mgr.b.log.gz 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial079.stderr: 95.6% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log.gz 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.c.log 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.5.log 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.c.log: 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose --/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.5.log: /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.4.log 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log 2026-02-18T04:55:58.629 INFO:teuthology.orchestra.run.trial197.stderr: 89.8% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial197.stderr: 83.0% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.cephadm.log.gz 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log: /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log: 90.5% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.audit.log.gz 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial197.stderr: 82.6% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph.log.gz 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial197.stderr: 95.7% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log.gz 2026-02-18T04:55:58.630 INFO:teuthology.orchestra.run.trial191.stderr: 95.6% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-volume.log.gz 2026-02-18T04:55:58.633 INFO:teuthology.orchestra.run.trial197.stderr: 92.8% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.5.log.gz 2026-02-18T04:55:58.633 INFO:teuthology.orchestra.run.trial197.stderr: 92.9% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.4.log.gz 2026-02-18T04:55:58.638 INFO:teuthology.orchestra.run.trial079.stderr: 93.5% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.1.log.gz 2026-02-18T04:55:58.640 INFO:teuthology.orchestra.run.trial079.stderr: 93.4% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.0.log.gz 2026-02-18T04:55:58.646 INFO:teuthology.orchestra.run.trial191.stderr: 93.1% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.3.log.gz 2026-02-18T04:55:58.647 INFO:teuthology.orchestra.run.trial197.stderr: 92.5% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.c.log.gz 2026-02-18T04:55:58.648 INFO:teuthology.orchestra.run.trial197.stderr: 2026-02-18T04:55:58.648 INFO:teuthology.orchestra.run.trial197.stderr:real 0m0.035s 2026-02-18T04:55:58.648 INFO:teuthology.orchestra.run.trial197.stderr:user 0m0.062s 2026-02-18T04:55:58.648 INFO:teuthology.orchestra.run.trial197.stderr:sys 0m0.015s 2026-02-18T04:55:58.655 INFO:teuthology.orchestra.run.trial191.stderr: 92.4% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.b.log.gz 2026-02-18T04:55:58.656 INFO:teuthology.orchestra.run.trial079.stderr: 89.8% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mgr.a.log.gz 2026-02-18T04:55:58.661 INFO:teuthology.orchestra.run.trial191.stderr: 93.6% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-osd.2.log.gz 2026-02-18T04:55:58.662 INFO:teuthology.orchestra.run.trial191.stderr: 2026-02-18T04:55:58.662 INFO:teuthology.orchestra.run.trial191.stderr:real 0m0.050s 2026-02-18T04:55:58.662 INFO:teuthology.orchestra.run.trial191.stderr:user 0m0.106s 2026-02-18T04:55:58.662 INFO:teuthology.orchestra.run.trial191.stderr:sys 0m0.022s 2026-02-18T04:55:58.726 INFO:teuthology.orchestra.run.trial079.stderr: 91.5% -- replaced with /var/log/ceph/9d405fe5-0c85-11f1-b595-d404e6e7d460/ceph-mon.a.log.gz 2026-02-18T04:55:58.728 INFO:teuthology.orchestra.run.trial079.stderr: 2026-02-18T04:55:58.728 INFO:teuthology.orchestra.run.trial079.stderr:real 0m0.118s 2026-02-18T04:55:58.728 INFO:teuthology.orchestra.run.trial079.stderr:user 0m0.192s 2026-02-18T04:55:58.728 INFO:teuthology.orchestra.run.trial079.stderr:sys 0m0.023s 2026-02-18T04:55:58.728 INFO:tasks.cephadm:Archiving logs... 2026-02-18T04:55:58.729 DEBUG:teuthology.misc:Transferring archived files from trial079:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial079/log 2026-02-18T04:55:58.730 DEBUG:teuthology.orchestra.run.trial079:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-18T04:55:58.865 DEBUG:teuthology.misc:Transferring archived files from trial191:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial191/log 2026-02-18T04:55:58.866 DEBUG:teuthology.orchestra.run.trial191:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-18T04:55:58.922 DEBUG:teuthology.misc:Transferring archived files from trial197:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial197/log 2026-02-18T04:55:58.923 DEBUG:teuthology.orchestra.run.trial197:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-18T04:55:58.969 INFO:tasks.cephadm:Removing cluster... 2026-02-18T04:55:58.970 DEBUG:teuthology.orchestra.run.trial079:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 --force 2026-02-18T04:55:59.087 INFO:teuthology.orchestra.run.trial079.stdout:Deleting cluster with fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:55:59.256 DEBUG:teuthology.orchestra.run.trial191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 --force 2026-02-18T04:55:59.376 INFO:teuthology.orchestra.run.trial191.stdout:Deleting cluster with fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:55:59.533 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9d405fe5-0c85-11f1-b595-d404e6e7d460 --force 2026-02-18T04:55:59.651 INFO:teuthology.orchestra.run.trial197.stdout:Deleting cluster with fsid: 9d405fe5-0c85-11f1-b595-d404e6e7d460 2026-02-18T04:55:59.811 INFO:tasks.cephadm:Removing cephadm ... 2026-02-18T04:55:59.811 DEBUG:teuthology.orchestra.run.trial079:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-18T04:55:59.829 DEBUG:teuthology.orchestra.run.trial191:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-18T04:55:59.847 DEBUG:teuthology.orchestra.run.trial197:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-18T04:55:59.864 INFO:tasks.cephadm:Teardown complete 2026-02-18T04:55:59.864 DEBUG:teuthology.run_tasks:Unwinding manager install 2026-02-18T04:55:59.874 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-18T04:55:59.874 DEBUG:teuthology.orchestra.run.trial079:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-18T04:55:59.876 DEBUG:teuthology.orchestra.run.trial191:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-18T04:55:59.890 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-18T04:56:00.335 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-18T04:56:00.347 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-18T04:56:00.347 DEBUG:teuthology.orchestra.run.trial079:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-18T04:56:00.348 DEBUG:teuthology.orchestra.run.trial191:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-18T04:56:00.350 DEBUG:teuthology.orchestra.run.trial197:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-18T04:56:00.363 INFO:teuthology.orchestra.run.trial079.stderr:bash: line 1: ntpq: command not found 2026-02-18T04:56:00.363 INFO:teuthology.orchestra.run.trial191.stderr:bash: line 1: ntpq: command not found 2026-02-18T04:56:00.366 INFO:teuthology.orchestra.run.trial197.stderr:bash: line 1: ntpq: command not found 2026-02-18T04:56:00.398 INFO:teuthology.orchestra.run.trial079.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial079.stdout:=============================================================================== 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial079.stdout:^- ntp3.radio-sunshine.org 2 6 377 21 -889us[ -889us] +/- 79ms 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial079.stdout:^- 172-233-155-39.ip.linode> 4 6 377 20 -1178us[-1178us] +/- 65ms 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial079.stdout:^* chi3.us.ntp.li 2 6 377 21 -5252ns[ -12us] +/- 11ms 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial079.stdout:^- B1-66ER.matrix.gs 2 6 237 14 +1153us[+1153us] +/- 42ms 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial191.stdout:=============================================================================== 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial191.stdout:^- ntp3.radio-sunshine.org 2 6 377 20 -779us[ -779us] +/- 79ms 2026-02-18T04:56:00.399 INFO:teuthology.orchestra.run.trial191.stdout:^- 172-233-155-39.ip.linode> 4 6 377 22 -2387us[-2387us] +/- 63ms 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial191.stdout:^* chi3.us.ntp.li 2 6 377 21 +2360ns[+2254ns] +/- 11ms 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial191.stdout:^- B1-66ER.matrix.gs 2 6 176 150 +1511us[ +334us] +/- 40ms 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial197.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial197.stdout:=============================================================================== 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial197.stdout:^+ 108.61.215.221.vultruser> 3 6 377 20 -69us[ -69us] +/- 20ms 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial197.stdout:^- 172-233-155-39.ip.linode> 4 6 377 22 -2361us[-2370us] +/- 63ms 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial197.stdout:^* chi3.us.ntp.li 2 6 377 21 -18us[ -27us] +/- 11ms 2026-02-18T04:56:00.400 INFO:teuthology.orchestra.run.trial197.stdout:^- B1-66ER.matrix.gs 2 6 237 18 +870us[ +870us] +/- 41ms 2026-02-18T04:56:00.400 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-18T04:56:00.417 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-18T04:56:00.417 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-18T04:56:00.436 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:56:00.486 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:56:00.530 DEBUG:teuthology.orchestra.run.trial197:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2026-02-18T04:56:00.576 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:56:00.603 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:56:00.604 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:56:00.631 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:56:00.632 DEBUG:teuthology.orchestra.run.trial197:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-18T04:56:00.660 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:56:00.661 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-18T04:56:00.677 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-18T04:56:00.692 INFO:teuthology.task.internal:Duration was 358.567654 seconds 2026-02-18T04:56:00.692 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-18T04:56:00.702 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-18T04:56:00.702 DEBUG:teuthology.orchestra.run.trial079:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-18T04:56:00.704 DEBUG:teuthology.orchestra.run.trial191:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-18T04:56:00.706 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-18T04:56:00.739 INFO:teuthology.orchestra.run.trial079.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T04:56:00.741 INFO:teuthology.orchestra.run.trial191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T04:56:00.744 INFO:teuthology.orchestra.run.trial197.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T04:56:01.115 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-18T04:56:01.116 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial079.front.sepia.ceph.com 2026-02-18T04:56:01.116 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:56:01.164 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial191.front.sepia.ceph.com 2026-02-18T04:56:01.165 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:56:01.183 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial197.front.sepia.ceph.com 2026-02-18T04:56:01.183 DEBUG:teuthology.orchestra.run.trial197:> grep -E --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-18T04:56:01.203 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-18T04:56:01.203 DEBUG:teuthology.orchestra.run.trial079:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T04:56:01.207 DEBUG:teuthology.orchestra.run.trial191:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T04:56:01.225 DEBUG:teuthology.orchestra.run.trial197:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T04:56:01.315 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-18T04:56:01.315 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:56:01.318 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:56:01.320 DEBUG:teuthology.orchestra.run.trial197:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-18T04:56:01.338 INFO:teuthology.orchestra.run.trial079.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:56:01.339 INFO:teuthology.orchestra.run.trial079.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:56:01.340 INFO:teuthology.orchestra.run.trial079.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip 0.0% -5 -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz --verbose 2026-02-18T04:56:01.340 INFO:teuthology.orchestra.run.trial079.stderr: -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T04:56:01.340 INFO:teuthology.orchestra.run.trial079.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-18T04:56:01.341 INFO:teuthology.orchestra.run.trial191.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:56:01.342 INFO:teuthology.orchestra.run.trial191.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:56:01.342 INFO:teuthology.orchestra.run.trial191.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-18T04:56:01.342 INFO:teuthology.orchestra.run.trial191.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T04:56:01.342 INFO:teuthology.orchestra.run.trial191.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-18T04:56:01.343 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T04:56:01.344 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T04:56:01.344 INFO:teuthology.orchestra.run.trial197.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-18T04:56:01.345 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T04:56:01.345 INFO:teuthology.orchestra.run.trial197.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-18T04:56:01.350 INFO:teuthology.orchestra.run.trial191.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.5% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-18T04:56:01.352 INFO:teuthology.orchestra.run.trial079.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-18T04:56:01.353 INFO:teuthology.orchestra.run.trial197.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.6% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-18T04:56:01.355 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-18T04:56:01.372 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-18T04:56:01.372 DEBUG:teuthology.orchestra.run.trial079:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-18T04:56:01.418 DEBUG:teuthology.orchestra.run.trial191:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-18T04:56:01.444 DEBUG:teuthology.orchestra.run.trial197:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-18T04:56:01.469 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-18T04:56:01.486 DEBUG:teuthology.orchestra.run.trial079:> 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-18T04:56:01.489 DEBUG:teuthology.orchestra.run.trial191:> 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-18T04:56:01.492 DEBUG:teuthology.orchestra.run.trial197:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2026-02-18T04:56:01.512 INFO:teuthology.orchestra.run.trial079.stdout:kernel.core_pattern = core 2026-02-18T04:56:01.515 INFO:teuthology.orchestra.run.trial191.stdout:kernel.core_pattern = core 2026-02-18T04:56:01.533 INFO:teuthology.orchestra.run.trial197.stdout:kernel.core_pattern = core 2026-02-18T04:56:01.548 DEBUG:teuthology.orchestra.run.trial079:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-18T04:56:01.580 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:56:01.581 DEBUG:teuthology.orchestra.run.trial191:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-18T04:56:01.596 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:56:01.597 DEBUG:teuthology.orchestra.run.trial197:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-18T04:56:01.612 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:56:01.612 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-18T04:56:01.629 INFO:teuthology.task.internal:Transferring archived files... 2026-02-18T04:56:01.630 DEBUG:teuthology.misc:Transferring archived files from trial079:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial079 2026-02-18T04:56:01.631 DEBUG:teuthology.orchestra.run.trial079:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-18T04:56:01.667 DEBUG:teuthology.misc:Transferring archived files from trial191:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial191 2026-02-18T04:56:01.667 DEBUG:teuthology.orchestra.run.trial191:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-18T04:56:01.703 DEBUG:teuthology.misc:Transferring archived files from trial197:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54668/remote/trial197 2026-02-18T04:56:01.704 DEBUG:teuthology.orchestra.run.trial197:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-18T04:56:01.738 INFO:teuthology.task.internal:Removing archive directory... 2026-02-18T04:56:01.739 DEBUG:teuthology.orchestra.run.trial079:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-18T04:56:01.742 DEBUG:teuthology.orchestra.run.trial191:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-18T04:56:01.744 DEBUG:teuthology.orchestra.run.trial197:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-18T04:56:01.786 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-18T04:56:01.806 INFO:teuthology.task.internal:Not uploading archives. 2026-02-18T04:56:01.806 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-18T04:56:01.824 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-18T04:56:01.824 DEBUG:teuthology.orchestra.run.trial079:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-18T04:56:01.827 DEBUG:teuthology.orchestra.run.trial191:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-18T04:56:01.830 DEBUG:teuthology.orchestra.run.trial197:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-18T04:56:01.842 INFO:teuthology.orchestra.run.trial079.stdout: 791912 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 18 04:56 /home/ubuntu/cephtest 2026-02-18T04:56:01.844 INFO:teuthology.orchestra.run.trial191.stdout: 786479 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 18 04:56 /home/ubuntu/cephtest 2026-02-18T04:56:01.846 INFO:teuthology.orchestra.run.trial197.stdout: 786514 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 18 04:56 /home/ubuntu/cephtest 2026-02-18T04:56:01.847 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-18T04:56:01.864 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-18T04:56:01.902 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 358.56765365600586 flavor: default owner: scheduled_yuriw@soko04.front.sepia.ceph.com success: true 2026-02-18T04:56:01.903 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-18T04:56:02.039 INFO:teuthology.run:pass