2026-02-21T20:08:59.078 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-21T20:08:59.093 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-21T20:08:59.173 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950 branch: wip-adk3-testing-2026-02-12-2007 description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: adking@redhat.com first_in_suite: false flavor: default job_id: '62950' kernel: branch: distro kdb: 1 sha1: distro last_in_suite: false machine_type: trial name: adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-adk3-testing-2026-02-12-2007 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: wip-adk3-testing-2026-02-19-2000 sha1: 8f51c35bf854479dcc229046453f0066d563cfe5 owner: scheduled_adking@soko04.front.sepia.ceph.com priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 4054 sha1: 042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-adk3-testing-2026-02-19-2000 suite_path: /home/teuthworker/src/github.com_adk3798_ceph_8f51c35bf854479dcc229046453f0066d563cfe5/qa suite_relpath: qa suite_repo: https://github.com/adk3798/ceph.git suite_sha1: 8f51c35bf854479dcc229046453f0066d563cfe5 targets: trial013.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLXSRCOnFOnYHbSHLhAo2a8tLR5IOTYR0hwR97CcQ+gVsGQPQ8miNd+ypKaHbR9uo/eHhN2wv4Ok9iMhkrpo+Ks= trial109.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDP32IGbOKbWDAxJVM4mcBJJK2I4tvIUxGfXpCw94C7DERXQ9chsVrPBiVs0pUiii8oMhMoAS8g9+OxmMpGThHw= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - template.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-21_19:52:04 tube: trial user: adking verbose: false worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.1540699 2026-02-21T20:08:59.173 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_adk3798_ceph_8f51c35bf854479dcc229046453f0066d563cfe5/qa; will attempt to use it 2026-02-21T20:08:59.173 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_adk3798_ceph_8f51c35bf854479dcc229046453f0066d563cfe5/qa/tasks 2026-02-21T20:08:59.173 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-21T20:08:59.175 INFO:teuthology.task.internal:Checking packages... 2026-02-21T20:08:59.175 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '042df16cd9ee8a8df553b188fef8a8c4a9e7ab01' 2026-02-21T20:08:59.175 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-21T20:08:59.175 INFO:teuthology.packaging:ref: None 2026-02-21T20:08:59.175 INFO:teuthology.packaging:tag: None 2026-02-21T20:08:59.175 INFO:teuthology.packaging:branch: wip-adk3-testing-2026-02-12-2007 2026-02-21T20:08:59.175 INFO:teuthology.packaging:sha1: 042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 2026-02-21T20:08:59.175 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-adk3-testing-2026-02-12-2007 2026-02-21T20:08:59.292 INFO:teuthology.task.internal:Found packages for ceph version 20.3.0-5291.g042df16c 2026-02-21T20:08:59.293 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-21T20:08:59.305 INFO:teuthology.task.internal:no buildpackages task found 2026-02-21T20:08:59.305 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-21T20:08:59.319 INFO:teuthology.task.internal:Saving configuration 2026-02-21T20:08:59.328 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-21T20:08:59.339 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-21T20:08:59.407 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial013.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950', '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-21 20:05:27.752292', 'locked_by': 'scheduled_adking@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLXSRCOnFOnYHbSHLhAo2a8tLR5IOTYR0hwR97CcQ+gVsGQPQ8miNd+ypKaHbR9uo/eHhN2wv4Ok9iMhkrpo+Ks='} 2026-02-21T20:08:59.463 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial109.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950', '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-21 20:05:27.751643', 'locked_by': 'scheduled_adking@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDP32IGbOKbWDAxJVM4mcBJJK2I4tvIUxGfXpCw94C7DERXQ9chsVrPBiVs0pUiii8oMhMoAS8g9+OxmMpGThHw='} 2026-02-21T20:08:59.463 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-21T20:08:59.475 INFO:teuthology.task.internal:roles: ubuntu@trial013.front.sepia.ceph.com - ['host.a', 'client.0'] 2026-02-21T20:08:59.475 INFO:teuthology.task.internal:roles: ubuntu@trial109.front.sepia.ceph.com - ['host.b', 'client.1'] 2026-02-21T20:08:59.475 INFO:teuthology.run_tasks:Running task console_log... 2026-02-21T20:08:59.608 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7832b29a8400>, signals=[15]) 2026-02-21T20:08:59.608 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-21T20:08:59.619 INFO:teuthology.task.internal:Opening connections... 2026-02-21T20:08:59.619 DEBUG:teuthology.task.internal:connecting to ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:08:59.620 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial013.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-21T20:08:59.681 DEBUG:teuthology.task.internal:connecting to ubuntu@trial109.front.sepia.ceph.com 2026-02-21T20:08:59.681 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial109.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-21T20:08:59.745 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-21T20:08:59.756 DEBUG:teuthology.orchestra.run.trial013:> uname -m 2026-02-21T20:08:59.772 INFO:teuthology.orchestra.run.trial013.stdout:x86_64 2026-02-21T20:08:59.772 DEBUG:teuthology.orchestra.run.trial013:> cat /etc/os-release 2026-02-21T20:08:59.826 INFO:teuthology.orchestra.run.trial013.stdout:NAME="CentOS Stream" 2026-02-21T20:08:59.826 INFO:teuthology.orchestra.run.trial013.stdout:VERSION="9" 2026-02-21T20:08:59.826 INFO:teuthology.orchestra.run.trial013.stdout:ID="centos" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:ID_LIKE="rhel fedora" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:VERSION_ID="9" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:PLATFORM_ID="platform:el9" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:ANSI_COLOR="0;31" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:LOGO="fedora-logo-icon" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:HOME_URL="https://centos.org/" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-21T20:08:59.827 INFO:teuthology.orchestra.run.trial013.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-21T20:08:59.827 INFO:teuthology.lock.ops:Updating trial013.front.sepia.ceph.com on lock server 2026-02-21T20:08:59.893 DEBUG:teuthology.orchestra.run.trial109:> uname -m 2026-02-21T20:08:59.907 INFO:teuthology.orchestra.run.trial109.stdout:x86_64 2026-02-21T20:08:59.908 DEBUG:teuthology.orchestra.run.trial109:> cat /etc/os-release 2026-02-21T20:08:59.963 INFO:teuthology.orchestra.run.trial109.stdout:NAME="CentOS Stream" 2026-02-21T20:08:59.963 INFO:teuthology.orchestra.run.trial109.stdout:VERSION="9" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:ID="centos" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:ID_LIKE="rhel fedora" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:VERSION_ID="9" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:PLATFORM_ID="platform:el9" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:ANSI_COLOR="0;31" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:LOGO="fedora-logo-icon" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:HOME_URL="https://centos.org/" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-21T20:08:59.964 INFO:teuthology.orchestra.run.trial109.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-21T20:08:59.964 INFO:teuthology.lock.ops:Updating trial109.front.sepia.ceph.com on lock server 2026-02-21T20:09:00.025 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-21T20:09:00.037 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-21T20:09:00.049 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-21T20:09:00.049 DEBUG:teuthology.orchestra.run.trial013:> test '!' -e /home/ubuntu/cephtest 2026-02-21T20:09:00.050 DEBUG:teuthology.orchestra.run.trial109:> test '!' -e /home/ubuntu/cephtest 2026-02-21T20:09:00.065 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-21T20:09:00.075 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-21T20:09:00.076 DEBUG:teuthology.orchestra.run.trial013:> test -z $(ls -A /var/lib/ceph) 2026-02-21T20:09:00.106 DEBUG:teuthology.orchestra.run.trial109:> test -z $(ls -A /var/lib/ceph) 2026-02-21T20:09:00.122 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-21T20:09:00.263 INFO:teuthology.run_tasks:Running task kernel... 2026-02-21T20:09:00.281 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'} 2026-02-21T20:09:00.281 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}}, timeout 300 2026-02-21T20:09:00.281 DEBUG:teuthology.orchestra.run.trial013:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-21T20:09:00.281 DEBUG:teuthology.orchestra.run.trial109:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-21T20:09:00.296 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:09:00.296 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:09:00.296 DEBUG:teuthology.orchestra.run.trial013:> uname -r 2026-02-21T20:09:00.296 DEBUG:teuthology.orchestra.run.trial109:> uname -r 2026-02-21T20:09:00.351 INFO:teuthology.orchestra.run.trial109.stdout:5.14.0-681.el9.x86_64 2026-02-21T20:09:00.351 INFO:teuthology.task.kernel:Running kernel on trial109: 5.14.0-681.el9.x86_64 2026-02-21T20:09:00.351 DEBUG:teuthology.orchestra.run.trial109:> sudo yum install -y kernel 2026-02-21T20:09:00.351 INFO:teuthology.orchestra.run.trial013.stdout:5.14.0-681.el9.x86_64 2026-02-21T20:09:00.352 INFO:teuthology.task.kernel:Running kernel on trial013: 5.14.0-681.el9.x86_64 2026-02-21T20:09:00.352 DEBUG:teuthology.orchestra.run.trial013:> sudo yum install -y kernel 2026-02-21T20:09:01.310 INFO:teuthology.orchestra.run.trial109.stdout:CentOS Stream 9 - BaseOS 16 MB/s | 8.9 MB 00:00 2026-02-21T20:09:05.984 INFO:teuthology.orchestra.run.trial013.stdout:CentOS Stream 9 - BaseOS 1.7 MB/s | 8.9 MB 00:05 2026-02-21T20:09:08.985 INFO:teuthology.orchestra.run.trial013.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-21T20:09:12.074 INFO:teuthology.orchestra.run.trial013.stdout:CentOS Stream 9 - CRB 11 MB/s | 7.8 MB 00:00 2026-02-21T20:09:13.673 INFO:teuthology.orchestra.run.trial013.stdout:CentOS Stream 9 - Extras packages 23 kB/s | 20 kB 00:00 2026-02-21T20:09:14.883 INFO:teuthology.orchestra.run.trial013.stdout:Extra Packages for Enterprise Linux 18 MB/s | 20 MB 00:01 2026-02-21T20:09:18.020 INFO:teuthology.orchestra.run.trial013.stdout:lab-extras 1.9 MB/s | 50 kB 00:00 2026-02-21T20:09:19.026 INFO:teuthology.orchestra.run.trial013.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-21T20:09:19.027 INFO:teuthology.orchestra.run.trial013.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-21T20:09:19.045 INFO:teuthology.orchestra.run.trial013.stdout:Dependencies resolved. 2026-02-21T20:09:19.046 INFO:teuthology.orchestra.run.trial013.stdout:Nothing to do. 2026-02-21T20:09:19.046 INFO:teuthology.orchestra.run.trial013.stdout:Complete! 2026-02-21T20:09:19.070 DEBUG:teuthology.orchestra.run.trial013:> echo no | sudo yum reinstall kernel || true 2026-02-21T20:09:19.369 INFO:teuthology.orchestra.run.trial013.stdout:Last metadata expiration check: 0:00:01 ago on Sat 21 Feb 2026 08:09:18 PM UTC. 2026-02-21T20:09:19.449 INFO:teuthology.orchestra.run.trial013.stdout:Dependencies resolved. 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout: Package Architecture Version Repository Size 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout:Reinstalling: 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout:Transaction Summary 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:09:19.450 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:09:19.451 INFO:teuthology.orchestra.run.trial013.stdout:Total download size: 803 k 2026-02-21T20:09:19.451 INFO:teuthology.orchestra.run.trial013.stdout:Installed size: 0 2026-02-21T20:09:19.451 INFO:teuthology.orchestra.run.trial013.stderr:Operation aborted. 2026-02-21T20:09:19.470 INFO:teuthology.orchestra.run.trial013.stdout:Is this ok [y/N]: 2026-02-21T20:09:19.470 DEBUG:teuthology.orchestra.run.trial013:> sudo yum reinstall -y kernel || true 2026-02-21T20:09:19.768 INFO:teuthology.orchestra.run.trial013.stdout:Last metadata expiration check: 0:00:01 ago on Sat 21 Feb 2026 08:09:18 PM UTC. 2026-02-21T20:09:19.848 INFO:teuthology.orchestra.run.trial013.stdout:Dependencies resolved. 2026-02-21T20:09:19.848 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout: Package Architecture Version Repository Size 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout:Reinstalling: 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout:Transaction Summary 2026-02-21T20:09:19.849 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:09:19.850 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:09:19.850 INFO:teuthology.orchestra.run.trial013.stdout:Total download size: 803 k 2026-02-21T20:09:19.850 INFO:teuthology.orchestra.run.trial013.stdout:Installed size: 0 2026-02-21T20:09:19.850 INFO:teuthology.orchestra.run.trial013.stdout:Downloading Packages: 2026-02-21T20:09:21.390 INFO:teuthology.orchestra.run.trial109.stdout:CentOS Stream 9 - AppStream 1.4 MB/s | 27 MB 00:19 2026-02-21T20:09:21.474 INFO:teuthology.orchestra.run.trial013.stdout:kernel-5.14.0-681.el9.x86_64.rpm 589 kB/s | 803 kB 00:01 2026-02-21T20:09:21.474 INFO:teuthology.orchestra.run.trial013.stdout:-------------------------------------------------------------------------------- 2026-02-21T20:09:21.475 INFO:teuthology.orchestra.run.trial013.stdout:Total 494 kB/s | 803 kB 00:01 2026-02-21T20:09:21.484 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction check 2026-02-21T20:09:21.518 INFO:teuthology.orchestra.run.trial013.stdout:Transaction check succeeded. 2026-02-21T20:09:21.518 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction test 2026-02-21T20:09:21.522 INFO:teuthology.orchestra.run.trial013.stdout:Transaction test succeeded. 2026-02-21T20:09:21.522 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction 2026-02-21T20:09:21.546 INFO:teuthology.orchestra.run.trial013.stdout: Preparing : 1/1 2026-02-21T20:09:21.550 INFO:teuthology.orchestra.run.trial013.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-21T20:09:21.550 INFO:teuthology.orchestra.run.trial013.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-21T20:09:21.657 INFO:teuthology.orchestra.run.trial013.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-21T20:09:21.657 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-21T20:09:21.712 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-21T20:09:21.712 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:09:21.713 INFO:teuthology.orchestra.run.trial013.stdout:Reinstalled: 2026-02-21T20:09:21.713 INFO:teuthology.orchestra.run.trial013.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-21T20:09:21.713 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:09:21.713 INFO:teuthology.orchestra.run.trial013.stdout:Complete! 2026-02-21T20:09:21.739 DEBUG:teuthology.orchestra.run.trial013:> rpm -q kernel | sort -rV | head -n 1 2026-02-21T20:09:21.802 INFO:teuthology.orchestra.run.trial013.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-21T20:09:21.802 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-21T20:09:21.802 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-21T20:09:21.802 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-21T20:09:21.802 DEBUG:teuthology.orchestra.run.trial013:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-21T20:09:21.866 INFO:teuthology.orchestra.run.trial013.stdout:ttyS1 2026-02-21T20:09:21.893 DEBUG:teuthology.parallel:result is None 2026-02-21T20:09:24.184 INFO:teuthology.orchestra.run.trial109.stdout:CentOS Stream 9 - CRB 17 MB/s | 7.8 MB 00:00 2026-02-21T20:09:25.285 INFO:teuthology.orchestra.run.trial109.stdout:CentOS Stream 9 - Extras packages 52 kB/s | 20 kB 00:00 2026-02-21T20:09:26.272 INFO:teuthology.orchestra.run.trial109.stdout:Extra Packages for Enterprise Linux 22 MB/s | 20 MB 00:00 2026-02-21T20:09:29.427 INFO:teuthology.orchestra.run.trial109.stdout:lab-extras 1.9 MB/s | 50 kB 00:00 2026-02-21T20:09:30.429 INFO:teuthology.orchestra.run.trial109.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-21T20:09:30.430 INFO:teuthology.orchestra.run.trial109.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-21T20:09:30.448 INFO:teuthology.orchestra.run.trial109.stdout:Dependencies resolved. 2026-02-21T20:09:30.449 INFO:teuthology.orchestra.run.trial109.stdout:Nothing to do. 2026-02-21T20:09:30.449 INFO:teuthology.orchestra.run.trial109.stdout:Complete! 2026-02-21T20:09:30.470 DEBUG:teuthology.orchestra.run.trial109:> echo no | sudo yum reinstall kernel || true 2026-02-21T20:09:30.771 INFO:teuthology.orchestra.run.trial109.stdout:Last metadata expiration check: 0:00:01 ago on Sat 21 Feb 2026 08:09:29 PM UTC. 2026-02-21T20:09:30.852 INFO:teuthology.orchestra.run.trial109.stdout:Dependencies resolved. 2026-02-21T20:09:30.853 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout: Package Architecture Version Repository Size 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout:Reinstalling: 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout:Transaction Summary 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout:Total download size: 803 k 2026-02-21T20:09:30.854 INFO:teuthology.orchestra.run.trial109.stdout:Installed size: 0 2026-02-21T20:09:30.855 INFO:teuthology.orchestra.run.trial109.stderr:Operation aborted. 2026-02-21T20:09:30.873 INFO:teuthology.orchestra.run.trial109.stdout:Is this ok [y/N]: 2026-02-21T20:09:30.873 DEBUG:teuthology.orchestra.run.trial109:> sudo yum reinstall -y kernel || true 2026-02-21T20:09:31.176 INFO:teuthology.orchestra.run.trial109.stdout:Last metadata expiration check: 0:00:02 ago on Sat 21 Feb 2026 08:09:29 PM UTC. 2026-02-21T20:09:31.256 INFO:teuthology.orchestra.run.trial109.stdout:Dependencies resolved. 2026-02-21T20:09:31.256 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:09:31.256 INFO:teuthology.orchestra.run.trial109.stdout: Package Architecture Version Repository Size 2026-02-21T20:09:31.256 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout:Reinstalling: 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout:Transaction Summary 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout:Total download size: 803 k 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout:Installed size: 0 2026-02-21T20:09:31.257 INFO:teuthology.orchestra.run.trial109.stdout:Downloading Packages: 2026-02-21T20:09:31.372 INFO:teuthology.orchestra.run.trial109.stdout:kernel-5.14.0-681.el9.x86_64.rpm 26 MB/s | 803 kB 00:00 2026-02-21T20:09:31.372 INFO:teuthology.orchestra.run.trial109.stdout:-------------------------------------------------------------------------------- 2026-02-21T20:09:31.372 INFO:teuthology.orchestra.run.trial109.stdout:Total 6.8 MB/s | 803 kB 00:00 2026-02-21T20:09:31.382 INFO:teuthology.orchestra.run.trial109.stdout:Running transaction check 2026-02-21T20:09:31.415 INFO:teuthology.orchestra.run.trial109.stdout:Transaction check succeeded. 2026-02-21T20:09:31.416 INFO:teuthology.orchestra.run.trial109.stdout:Running transaction test 2026-02-21T20:09:31.420 INFO:teuthology.orchestra.run.trial109.stdout:Transaction test succeeded. 2026-02-21T20:09:31.420 INFO:teuthology.orchestra.run.trial109.stdout:Running transaction 2026-02-21T20:09:31.444 INFO:teuthology.orchestra.run.trial109.stdout: Preparing : 1/1 2026-02-21T20:09:31.448 INFO:teuthology.orchestra.run.trial109.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-21T20:09:31.448 INFO:teuthology.orchestra.run.trial109.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-21T20:09:31.559 INFO:teuthology.orchestra.run.trial109.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-21T20:09:31.560 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-21T20:09:31.612 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-21T20:09:31.612 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:09:31.612 INFO:teuthology.orchestra.run.trial109.stdout:Reinstalled: 2026-02-21T20:09:31.612 INFO:teuthology.orchestra.run.trial109.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-21T20:09:31.612 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:09:31.612 INFO:teuthology.orchestra.run.trial109.stdout:Complete! 2026-02-21T20:09:31.640 DEBUG:teuthology.orchestra.run.trial109:> rpm -q kernel | sort -rV | head -n 1 2026-02-21T20:09:31.663 INFO:teuthology.orchestra.run.trial109.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-21T20:09:31.664 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-21T20:09:31.664 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-21T20:09:31.664 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-21T20:09:31.664 DEBUG:teuthology.orchestra.run.trial109:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-21T20:09:31.727 INFO:teuthology.orchestra.run.trial109.stdout:ttyS1 2026-02-21T20:09:31.756 DEBUG:teuthology.parallel:result is None 2026-02-21T20:09:31.756 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-21T20:09:31.767 INFO:teuthology.task.internal:Creating test directory... 2026-02-21T20:09:31.768 DEBUG:teuthology.orchestra.run.trial013:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-21T20:09:31.771 DEBUG:teuthology.orchestra.run.trial109:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-21T20:09:31.813 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-21T20:09:31.824 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-21T20:09:31.838 INFO:teuthology.task.internal:Creating archive directory... 2026-02-21T20:09:31.838 DEBUG:teuthology.orchestra.run.trial013:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-21T20:09:31.841 DEBUG:teuthology.orchestra.run.trial109:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-21T20:09:31.876 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-21T20:09:31.887 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-21T20:09:31.888 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:09:31.897 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:09:31.919 INFO:teuthology.orchestra.run.trial013.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-21T20:09:31.927 INFO:teuthology.orchestra.run.trial013.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-21T20:09:31.934 INFO:teuthology.orchestra.run.trial109.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-21T20:09:31.943 INFO:teuthology.orchestra.run.trial109.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-21T20:09:31.945 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-21T20:09:31.956 INFO:teuthology.task.internal:Configuring sudo... 2026-02-21T20:09:31.957 DEBUG:teuthology.orchestra.run.trial013:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-21T20:09:31.971 DEBUG:teuthology.orchestra.run.trial109:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-21T20:09:32.008 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-21T20:09:32.022 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-21T20:09:32.022 DEBUG:teuthology.orchestra.run.trial013:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-21T20:09:32.035 DEBUG:teuthology.orchestra.run.trial109:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-21T20:09:32.065 DEBUG:teuthology.orchestra.run.trial013:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-21T20:09:32.212 DEBUG:teuthology.orchestra.run.trial013:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-21T20:09:32.238 DEBUG:teuthology.orchestra.run.trial013:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-21T20:09:32.354 DEBUG:teuthology.orchestra.run.trial013:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-21T20:09:32.379 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:09:32.379 DEBUG:teuthology.orchestra.run.trial013:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-21T20:09:32.442 DEBUG:teuthology.orchestra.run.trial109:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-21T20:09:32.544 DEBUG:teuthology.orchestra.run.trial109:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-21T20:09:32.570 DEBUG:teuthology.orchestra.run.trial109:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-21T20:09:32.718 DEBUG:teuthology.orchestra.run.trial109:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-21T20:09:32.742 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:09:32.742 DEBUG:teuthology.orchestra.run.trial109:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-21T20:09:32.806 DEBUG:teuthology.orchestra.run.trial013:> sudo service rsyslog restart 2026-02-21T20:09:32.813 DEBUG:teuthology.orchestra.run.trial109:> sudo service rsyslog restart 2026-02-21T20:09:32.839 INFO:teuthology.orchestra.run.trial013.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-21T20:09:32.874 INFO:teuthology.orchestra.run.trial109.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-21T20:09:33.311 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-21T20:09:33.324 INFO:teuthology.task.internal:Starting timer... 2026-02-21T20:09:33.324 INFO:teuthology.run_tasks:Running task pcp... 2026-02-21T20:09:33.352 INFO:teuthology.run_tasks:Running task selinux... 2026-02-21T20:09:33.373 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-21T20:09:33.373 DEBUG:teuthology.orchestra.run.trial013:> sudo service auditd rotate 2026-02-21T20:09:33.404 INFO:teuthology.orchestra.run.trial013.stdout:Rotating logs: 2026-02-21T20:09:33.406 DEBUG:teuthology.orchestra.run.trial109:> sudo service auditd rotate 2026-02-21T20:09:33.436 INFO:teuthology.orchestra.run.trial109.stdout:Rotating logs: 2026-02-21T20:09:33.438 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-21T20:09:33.438 DEBUG:teuthology.orchestra.run.trial013:> /usr/sbin/getenforce 2026-02-21T20:09:33.462 INFO:teuthology.orchestra.run.trial013.stdout:Permissive 2026-02-21T20:09:33.462 DEBUG:teuthology.orchestra.run.trial109:> /usr/sbin/getenforce 2026-02-21T20:09:33.495 INFO:teuthology.orchestra.run.trial109.stdout:Permissive 2026-02-21T20:09:33.496 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial013.front.sepia.ceph.com': 'permissive', 'ubuntu@trial109.front.sepia.ceph.com': 'permissive'} 2026-02-21T20:09:33.496 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:09:33.527 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:09:33.527 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:09:33.562 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:09:33.562 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-21T20:09:33.563 DEBUG:teuthology.orchestra.run.trial013:> sudo /usr/sbin/setenforce permissive 2026-02-21T20:09:33.593 DEBUG:teuthology.orchestra.run.trial109:> sudo /usr/sbin/setenforce permissive 2026-02-21T20:09:33.628 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-21T20:09:33.644 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-21T20:09:33.656 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-21T20:09:33.658 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial013.front.sepia.ceph.com,trial109.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-21T20:12:10.706 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial013.front.sepia.ceph.com'), Remote(name='ubuntu@trial109.front.sepia.ceph.com')] 2026-02-21T20:12:10.707 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial013.front.sepia.ceph.com' 2026-02-21T20:12:10.709 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial013.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-21T20:12:10.793 DEBUG:teuthology.orchestra.run.trial013:> true 2026-02-21T20:12:10.869 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial013.front.sepia.ceph.com' 2026-02-21T20:12:10.870 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial109.front.sepia.ceph.com' 2026-02-21T20:12:10.870 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial109.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-21T20:12:10.934 DEBUG:teuthology.orchestra.run.trial109:> true 2026-02-21T20:12:11.009 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial109.front.sepia.ceph.com' 2026-02-21T20:12:11.009 INFO:teuthology.run_tasks:Running task clock... 2026-02-21T20:12:11.027 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-21T20:12:11.027 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-21T20:12:11.028 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:12:11.030 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-21T20:12:11.030 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:12:11.055 INFO:teuthology.orchestra.run.trial013.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-21T20:12:11.067 INFO:teuthology.orchestra.run.trial013.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-21T20:12:11.075 INFO:teuthology.orchestra.run.trial109.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-21T20:12:11.087 INFO:teuthology.orchestra.run.trial109.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-21T20:12:11.088 INFO:teuthology.orchestra.run.trial013.stderr:sudo: ntpd: command not found 2026-02-21T20:12:11.099 INFO:teuthology.orchestra.run.trial013.stdout:506 Cannot talk to daemon 2026-02-21T20:12:11.107 INFO:teuthology.orchestra.run.trial109.stderr:sudo: ntpd: command not found 2026-02-21T20:12:11.109 INFO:teuthology.orchestra.run.trial013.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-21T20:12:11.117 INFO:teuthology.orchestra.run.trial109.stdout:506 Cannot talk to daemon 2026-02-21T20:12:11.121 INFO:teuthology.orchestra.run.trial013.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-21T20:12:11.129 INFO:teuthology.orchestra.run.trial109.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-21T20:12:11.141 INFO:teuthology.orchestra.run.trial109.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-21T20:12:11.172 INFO:teuthology.orchestra.run.trial013.stderr:bash: line 1: ntpq: command not found 2026-02-21T20:12:11.173 INFO:teuthology.orchestra.run.trial013.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-21T20:12:11.173 INFO:teuthology.orchestra.run.trial013.stdout:=============================================================================== 2026-02-21T20:12:11.195 INFO:teuthology.orchestra.run.trial109.stderr:bash: line 1: ntpq: command not found 2026-02-21T20:12:11.209 INFO:teuthology.orchestra.run.trial109.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-21T20:12:11.209 INFO:teuthology.orchestra.run.trial109.stdout:=============================================================================== 2026-02-21T20:12:11.209 INFO:teuthology.orchestra.run.trial109.stdout:^? 23.186.168.132 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-21T20:12:11.210 INFO:teuthology.run_tasks:Running task pexec... 2026-02-21T20:12:11.223 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-21T20:12:11.224 DEBUG:teuthology.orchestra.run.trial013:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-21T20:12:11.224 DEBUG:teuthology.orchestra.run.trial109:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-21T20:12:11.225 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:12:11.225 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-21T20:12:11.225 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-21T20:12:11.253 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial109.front.sepia.ceph.com 2026-02-21T20:12:11.253 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-21T20:12:11.253 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-21T20:12:11.393 INFO:teuthology.orchestra.run.trial013.stdout:No match for argument: nvme-cli 2026-02-21T20:12:11.393 INFO:teuthology.orchestra.run.trial013.stderr:No packages marked for removal. 2026-02-21T20:12:11.395 INFO:teuthology.orchestra.run.trial013.stdout:Dependencies resolved. 2026-02-21T20:12:11.396 INFO:teuthology.orchestra.run.trial013.stdout:Nothing to do. 2026-02-21T20:12:11.396 INFO:teuthology.orchestra.run.trial013.stdout:Complete! 2026-02-21T20:12:11.424 INFO:teuthology.orchestra.run.trial109.stdout:No match for argument: nvme-cli 2026-02-21T20:12:11.424 INFO:teuthology.orchestra.run.trial109.stderr:No packages marked for removal. 2026-02-21T20:12:11.426 INFO:teuthology.orchestra.run.trial109.stdout:Dependencies resolved. 2026-02-21T20:12:11.427 INFO:teuthology.orchestra.run.trial109.stdout:Nothing to do. 2026-02-21T20:12:11.427 INFO:teuthology.orchestra.run.trial109.stdout:Complete! 2026-02-21T20:12:11.691 INFO:teuthology.orchestra.run.trial013.stdout:Last metadata expiration check: 0:00:24 ago on Sat 21 Feb 2026 08:11:47 PM UTC. 2026-02-21T20:12:11.729 INFO:teuthology.orchestra.run.trial109.stdout:Last metadata expiration check: 0:00:25 ago on Sat 21 Feb 2026 08:11:46 PM UTC. 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout:Dependencies resolved. 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: Package Architecture Version Repository Size 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout:Installing: 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout:Installing dependencies: 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-21T20:12:11.772 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout:Transaction Summary 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout:Install 6 Packages 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout:Total download size: 2.3 M 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout:Installed size: 11 M 2026-02-21T20:12:11.773 INFO:teuthology.orchestra.run.trial013.stdout:Downloading Packages: 2026-02-21T20:12:11.811 INFO:teuthology.orchestra.run.trial109.stdout:Dependencies resolved. 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: Package Architecture Version Repository Size 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Installing: 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Installing dependencies: 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Transaction Summary 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:================================================================================ 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Install 6 Packages 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Total download size: 2.3 M 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Installed size: 11 M 2026-02-21T20:12:11.812 INFO:teuthology.orchestra.run.trial109.stdout:Downloading Packages: 2026-02-21T20:12:12.186 INFO:teuthology.orchestra.run.trial013.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 574 kB/s | 44 kB 00:00 2026-02-21T20:12:12.200 INFO:teuthology.orchestra.run.trial013.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 797 kB/s | 72 kB 00:00 2026-02-21T20:12:12.225 INFO:teuthology.orchestra.run.trial013.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 2.1 MB/s | 84 kB 00:00 2026-02-21T20:12:12.247 INFO:teuthology.orchestra.run.trial013.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 3.1 MB/s | 150 kB 00:00 2026-02-21T20:12:12.283 INFO:teuthology.orchestra.run.trial013.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 6.6 MB/s | 1.2 MB 00:00 2026-02-21T20:12:12.286 INFO:teuthology.orchestra.run.trial013.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 14 MB/s | 837 kB 00:00 2026-02-21T20:12:12.286 INFO:teuthology.orchestra.run.trial013.stdout:-------------------------------------------------------------------------------- 2026-02-21T20:12:12.286 INFO:teuthology.orchestra.run.trial013.stdout:Total 4.5 MB/s | 2.3 MB 00:00 2026-02-21T20:12:12.337 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction check 2026-02-21T20:12:12.345 INFO:teuthology.orchestra.run.trial013.stdout:Transaction check succeeded. 2026-02-21T20:12:12.345 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction test 2026-02-21T20:12:12.411 INFO:teuthology.orchestra.run.trial013.stdout:Transaction test succeeded. 2026-02-21T20:12:12.412 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction 2026-02-21T20:12:12.440 INFO:teuthology.orchestra.run.trial109.stdout:(1/6): python3-configshell-1.1.30-1.el9.noarch. 134 kB/s | 72 kB 00:00 2026-02-21T20:12:12.446 INFO:teuthology.orchestra.run.trial109.stdout:(2/6): nvmetcli-0.8-3.el9.noarch.rpm 81 kB/s | 44 kB 00:00 2026-02-21T20:12:12.542 INFO:teuthology.orchestra.run.trial013.stdout: Preparing : 1/1 2026-02-21T20:12:12.550 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-21T20:12:12.559 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-21T20:12:12.565 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-21T20:12:12.571 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-21T20:12:12.572 INFO:teuthology.orchestra.run.trial013.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-21T20:12:12.617 INFO:teuthology.orchestra.run.trial109.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 476 kB/s | 84 kB 00:00 2026-02-21T20:12:12.701 INFO:teuthology.orchestra.run.trial109.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 590 kB/s | 150 kB 00:00 2026-02-21T20:12:12.702 INFO:teuthology.orchestra.run.trial013.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-21T20:12:12.705 INFO:teuthology.orchestra.run.trial013.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-21T20:12:12.991 INFO:teuthology.orchestra.run.trial013.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-21T20:12:12.991 INFO:teuthology.orchestra.run.trial013.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-21T20:12:12.991 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:13.248 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-21T20:12:13.248 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-21T20:12:13.248 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-21T20:12:13.248 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-21T20:12:13.248 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout:Installed: 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:13.302 INFO:teuthology.orchestra.run.trial013.stdout:Complete! 2026-02-21T20:12:13.333 DEBUG:teuthology.parallel:result is None 2026-02-21T20:12:13.652 INFO:teuthology.orchestra.run.trial109.stdout:(5/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 809 kB/s | 837 kB 00:01 2026-02-21T20:12:13.708 INFO:teuthology.orchestra.run.trial109.stdout:(6/6): nvme-cli-2.16-1.el9.x86_64.rpm 654 kB/s | 1.2 MB 00:01 2026-02-21T20:12:13.711 INFO:teuthology.orchestra.run.trial109.stdout:-------------------------------------------------------------------------------- 2026-02-21T20:12:13.711 INFO:teuthology.orchestra.run.trial109.stdout:Total 1.2 MB/s | 2.3 MB 00:01 2026-02-21T20:12:13.761 INFO:teuthology.orchestra.run.trial109.stdout:Running transaction check 2026-02-21T20:12:13.769 INFO:teuthology.orchestra.run.trial109.stdout:Transaction check succeeded. 2026-02-21T20:12:13.769 INFO:teuthology.orchestra.run.trial109.stdout:Running transaction test 2026-02-21T20:12:13.834 INFO:teuthology.orchestra.run.trial109.stdout:Transaction test succeeded. 2026-02-21T20:12:13.834 INFO:teuthology.orchestra.run.trial109.stdout:Running transaction 2026-02-21T20:12:13.964 INFO:teuthology.orchestra.run.trial109.stdout: Preparing : 1/1 2026-02-21T20:12:13.972 INFO:teuthology.orchestra.run.trial109.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-21T20:12:13.981 INFO:teuthology.orchestra.run.trial109.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-21T20:12:13.987 INFO:teuthology.orchestra.run.trial109.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-21T20:12:13.993 INFO:teuthology.orchestra.run.trial109.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-21T20:12:13.994 INFO:teuthology.orchestra.run.trial109.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-21T20:12:14.130 INFO:teuthology.orchestra.run.trial109.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-21T20:12:14.133 INFO:teuthology.orchestra.run.trial109.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-21T20:12:14.418 INFO:teuthology.orchestra.run.trial109.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-21T20:12:14.419 INFO:teuthology.orchestra.run.trial109.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-21T20:12:14.419 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:12:14.675 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-21T20:12:14.675 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-21T20:12:14.675 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-21T20:12:14.675 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-21T20:12:14.675 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-21T20:12:14.729 INFO:teuthology.orchestra.run.trial109.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-21T20:12:14.729 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:12:14.730 INFO:teuthology.orchestra.run.trial109.stdout:Installed: 2026-02-21T20:12:14.730 INFO:teuthology.orchestra.run.trial109.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-21T20:12:14.730 INFO:teuthology.orchestra.run.trial109.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-21T20:12:14.730 INFO:teuthology.orchestra.run.trial109.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-21T20:12:14.730 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:12:14.730 INFO:teuthology.orchestra.run.trial109.stdout:Complete! 2026-02-21T20:12:14.761 DEBUG:teuthology.parallel:result is None 2026-02-21T20:12:14.761 INFO:teuthology.run_tasks:Running task nvme_loop... 2026-02-21T20:12:14.775 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2026-02-21T20:12:14.775 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:14.775 DEBUG:teuthology.orchestra.run.trial013:> dd if=/scratch_devs of=/dev/stdout 2026-02-21T20:12:14.794 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-21T20:12:14.794 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/vg_nvme/lv_1 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1302 Links: 1 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:12:13.162210950 +0000 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:13.016214524 +0000 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:13.016214524 +0000 2026-02-21T20:12:14.850 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:13.016214524 +0000 2026-02-21T20:12:14.850 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-21T20:12:14.917 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:12:14.917 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:12:14.917 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000175556 s, 2.9 MB/s 2026-02-21T20:12:14.918 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-21T20:12:14.974 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/vg_nvme/lv_2 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1311 Links: 1 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:12:13.162210950 +0000 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:13.017214499 +0000 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:13.017214499 +0000 2026-02-21T20:12:15.029 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:13.017214499 +0000 2026-02-21T20:12:15.029 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-21T20:12:15.094 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:12:15.094 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:12:15.094 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000141995 s, 3.6 MB/s 2026-02-21T20:12:15.095 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-21T20:12:15.151 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/vg_nvme/lv_3 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1290 Links: 1 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:12:13.163210926 +0000 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:13.015214548 +0000 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:13.015214548 +0000 2026-02-21T20:12:15.207 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:13.015214548 +0000 2026-02-21T20:12:15.208 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-21T20:12:15.270 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:12:15.270 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:12:15.270 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000151572 s, 3.4 MB/s 2026-02-21T20:12:15.271 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-21T20:12:15.328 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/vg_nvme/lv_4 2026-02-21T20:12:15.383 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1291 Links: 1 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:12:13.163210926 +0000 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:13.015214548 +0000 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:13.015214548 +0000 2026-02-21T20:12:15.384 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:13.015214548 +0000 2026-02-21T20:12:15.384 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-21T20:12:15.445 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:12:15.445 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:12:15.445 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000131264 s, 3.9 MB/s 2026-02-21T20:12:15.446 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-21T20:12:15.503 DEBUG:teuthology.orchestra.run.trial013:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2026-02-21T20:12:15.606 INFO:teuthology.orchestra.run.trial013.stdout:loop 2026-02-21T20:12:15.607 INFO:tasks.nvme_loop:Connecting nvme_loop trial013:/dev/vg_nvme/lv_1... 2026-02-21T20:12:15.607 DEBUG:teuthology.orchestra.run.trial013:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2026-02-21T20:12:15.638 INFO:teuthology.orchestra.run.trial013.stdout:1 2026-02-21T20:12:15.662 INFO:teuthology.orchestra.run.trial013.stdout:/dev/vg_nvme/lv_11 2026-02-21T20:12:15.696 INFO:teuthology.orchestra.run.trial013.stdout:connecting to device: nvme3 2026-02-21T20:12:15.697 INFO:tasks.nvme_loop:Connecting nvme_loop trial013:/dev/vg_nvme/lv_2... 2026-02-21T20:12:15.698 DEBUG:teuthology.orchestra.run.trial013:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2026-02-21T20:12:15.769 INFO:teuthology.orchestra.run.trial013.stdout:1 2026-02-21T20:12:15.794 INFO:teuthology.orchestra.run.trial013.stdout:/dev/vg_nvme/lv_21 2026-02-21T20:12:15.822 INFO:teuthology.orchestra.run.trial013.stdout:connecting to device: nvme4 2026-02-21T20:12:15.823 INFO:tasks.nvme_loop:Connecting nvme_loop trial013:/dev/vg_nvme/lv_3... 2026-02-21T20:12:15.824 DEBUG:teuthology.orchestra.run.trial013:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2026-02-21T20:12:15.896 INFO:teuthology.orchestra.run.trial013.stdout:1 2026-02-21T20:12:15.921 INFO:teuthology.orchestra.run.trial013.stdout:/dev/vg_nvme/lv_31 2026-02-21T20:12:15.949 INFO:teuthology.orchestra.run.trial013.stdout:connecting to device: nvme5 2026-02-21T20:12:15.955 INFO:tasks.nvme_loop:Connecting nvme_loop trial013:/dev/vg_nvme/lv_4... 2026-02-21T20:12:15.956 DEBUG:teuthology.orchestra.run.trial013:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2026-02-21T20:12:16.027 INFO:teuthology.orchestra.run.trial013.stdout:1 2026-02-21T20:12:16.052 INFO:teuthology.orchestra.run.trial013.stdout:/dev/vg_nvme/lv_41 2026-02-21T20:12:16.080 INFO:teuthology.orchestra.run.trial013.stdout:connecting to device: nvme6 2026-02-21T20:12:16.082 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:16.082 DEBUG:teuthology.orchestra.run.trial013:> dd if=/scratch_devs of=/dev/stdout 2026-02-21T20:12:16.137 DEBUG:teuthology.orchestra.run.trial013:> lsblk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme2n1 259:0 0 1.7T 0 disk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme0n1 259:1 0 894.3G 0 disk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:├─nvme0n1p1 259:3 0 512M 0 part /boot/efi 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:└─nvme0n1p2 259:4 0 893.8G 0 part / 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme1n1 259:2 0 1.7T 0 disk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-21T20:12:16.196 INFO:teuthology.orchestra.run.trial013.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-21T20:12:16.197 DEBUG:teuthology.orchestra.run.trial013:> sudo nvme list -o json 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout:{ 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "Devices":[ 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng0n1", 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"E2MU200", 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-21T20:12:16.262 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"25174FCD6613", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":350187077632, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":1875385008, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":960197124096, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: }, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng1n1", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"E3MQ000", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"012510B47DEA", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":140413517824, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":3750748848, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":1920383410176, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: }, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng2n1", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"E3MQ000", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"012510B0025B", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":138905153536, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":3750748848, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":1920383410176, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: }, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng3n1", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"91a04ec5617eeac2c55a", 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.263 INFO:teuthology.orchestra.run.trial013.stdout: }, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng4n1", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"72d94a858757ffe48f61", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: }, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng5n1", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"18a780cc54c9143de407", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: }, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: { 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "NameSpace":1, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "GenericPath":"/dev/ng6n1", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "SerialNumber":"8e76149c786238411600", 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: "SectorSize":512 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: } 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout: ] 2026-02-21T20:12:16.264 INFO:teuthology.orchestra.run.trial013.stdout:} 2026-02-21T20:12:16.265 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-21T20:12:16.332 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:16.332 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:16.332 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00458067 s, 894 kB/s 2026-02-21T20:12:16.333 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-21T20:12:16.395 INFO:teuthology.orchestra.run.trial013.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:16.396 INFO:teuthology.orchestra.run.trial013.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:16.396 INFO:teuthology.orchestra.run.trial013.stdout:00000016 2026-02-21T20:12:16.396 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:16.462 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:16.463 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:16.463 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00440183 s, 931 kB/s 2026-02-21T20:12:16.464 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-21T20:12:16.526 INFO:teuthology.orchestra.run.trial013.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:16.527 INFO:teuthology.orchestra.run.trial013.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:16.527 INFO:teuthology.orchestra.run.trial013.stdout:40000016 2026-02-21T20:12:16.527 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:16.595 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:16.595 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:16.595 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0047336 s, 865 kB/s 2026-02-21T20:12:16.596 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-21T20:12:16.658 INFO:teuthology.orchestra.run.trial013.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:16.658 INFO:teuthology.orchestra.run.trial013.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:16.658 INFO:teuthology.orchestra.run.trial013.stdout:280000016 2026-02-21T20:12:16.659 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-21T20:12:16.725 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:16.725 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:16.725 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0045264 s, 905 kB/s 2026-02-21T20:12:16.727 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-21T20:12:16.791 INFO:teuthology.orchestra.run.trial013.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:16.791 INFO:teuthology.orchestra.run.trial013.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:16.791 INFO:teuthology.orchestra.run.trial013.stdout:00000016 2026-02-21T20:12:16.792 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:16.859 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:16.859 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:16.859 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00477206 s, 858 kB/s 2026-02-21T20:12:16.860 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-21T20:12:16.922 INFO:teuthology.orchestra.run.trial013.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:16.922 INFO:teuthology.orchestra.run.trial013.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:16.923 INFO:teuthology.orchestra.run.trial013.stdout:40000016 2026-02-21T20:12:16.924 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:16.990 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:16.990 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:16.990 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00447765 s, 915 kB/s 2026-02-21T20:12:16.991 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-21T20:12:17.053 INFO:teuthology.orchestra.run.trial013.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.053 INFO:teuthology.orchestra.run.trial013.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.053 INFO:teuthology.orchestra.run.trial013.stdout:280000016 2026-02-21T20:12:17.054 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-21T20:12:17.121 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:17.121 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:17.122 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00437379 s, 936 kB/s 2026-02-21T20:12:17.123 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-21T20:12:17.184 INFO:teuthology.orchestra.run.trial013.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.184 INFO:teuthology.orchestra.run.trial013.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.184 INFO:teuthology.orchestra.run.trial013.stdout:00000016 2026-02-21T20:12:17.185 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:17.252 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:17.252 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:17.252 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00499701 s, 820 kB/s 2026-02-21T20:12:17.253 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-21T20:12:17.315 INFO:teuthology.orchestra.run.trial013.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.316 INFO:teuthology.orchestra.run.trial013.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.316 INFO:teuthology.orchestra.run.trial013.stdout:40000016 2026-02-21T20:12:17.316 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:17.383 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:17.383 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:17.383 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00448451 s, 913 kB/s 2026-02-21T20:12:17.384 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-21T20:12:17.446 INFO:teuthology.orchestra.run.trial013.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.446 INFO:teuthology.orchestra.run.trial013.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.446 INFO:teuthology.orchestra.run.trial013.stdout:280000016 2026-02-21T20:12:17.448 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-21T20:12:17.515 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:17.516 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:17.516 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00442913 s, 925 kB/s 2026-02-21T20:12:17.517 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-21T20:12:17.578 INFO:teuthology.orchestra.run.trial013.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.579 INFO:teuthology.orchestra.run.trial013.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.579 INFO:teuthology.orchestra.run.trial013.stdout:00000016 2026-02-21T20:12:17.580 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:17.646 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:17.646 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:17.646 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00483958 s, 846 kB/s 2026-02-21T20:12:17.647 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-21T20:12:17.709 INFO:teuthology.orchestra.run.trial013.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.709 INFO:teuthology.orchestra.run.trial013.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.709 INFO:teuthology.orchestra.run.trial013.stdout:40000016 2026-02-21T20:12:17.710 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:17.778 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records in 2026-02-21T20:12:17.778 INFO:teuthology.orchestra.run.trial013.stderr:4096+0 records out 2026-02-21T20:12:17.778 INFO:teuthology.orchestra.run.trial013.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00489155 s, 837 kB/s 2026-02-21T20:12:17.779 DEBUG:teuthology.orchestra.run.trial013:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-21T20:12:17.841 INFO:teuthology.orchestra.run.trial013.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:17.841 INFO:teuthology.orchestra.run.trial013.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:17.842 INFO:teuthology.orchestra.run.trial013.stdout:280000016 2026-02-21T20:12:17.843 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-21T20:12:17.843 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:17.843 DEBUG:teuthology.orchestra.run.trial013:> sudo dd of=/scratch_devs 2026-02-21T20:12:17.906 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:12:17.906 DEBUG:teuthology.orchestra.run.trial109:> dd if=/scratch_devs of=/dev/stdout 2026-02-21T20:12:17.929 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-21T20:12:17.930 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/vg_nvme/lv_1 2026-02-21T20:12:17.986 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-21T20:12:17.986 INFO:teuthology.orchestra.run.trial109.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1293 Links: 1 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:12:14.593052663 +0000 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:17.987 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:17.988 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-21T20:12:18.054 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:12:18.054 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:12:18.054 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000189689 s, 2.7 MB/s 2026-02-21T20:12:18.055 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-21T20:12:18.113 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/vg_nvme/lv_2 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1304 Links: 1 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:12:14.593052663 +0000 2026-02-21T20:12:18.169 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.170 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.170 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.170 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-21T20:12:18.232 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:12:18.232 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:12:18.232 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000143003 s, 3.6 MB/s 2026-02-21T20:12:18.233 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-21T20:12:18.291 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/vg_nvme/lv_3 2026-02-21T20:12:18.347 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1300 Links: 1 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:12:14.594052645 +0000 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.348 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.348 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-21T20:12:18.411 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:12:18.411 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:12:18.411 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000151733 s, 3.4 MB/s 2026-02-21T20:12:18.412 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-21T20:12:18.471 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/vg_nvme/lv_4 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1309 Links: 1 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:device_t:s0 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:12:14.594052645 +0000 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.529 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:14.446055323 +0000 2026-02-21T20:12:18.529 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-21T20:12:18.592 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:12:18.592 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:12:18.592 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000144138 s, 3.6 MB/s 2026-02-21T20:12:18.593 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-21T20:12:18.651 DEBUG:teuthology.orchestra.run.trial109:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2026-02-21T20:12:18.757 INFO:teuthology.orchestra.run.trial109.stdout:loop 2026-02-21T20:12:18.758 INFO:tasks.nvme_loop:Connecting nvme_loop trial109:/dev/vg_nvme/lv_1... 2026-02-21T20:12:18.759 DEBUG:teuthology.orchestra.run.trial109:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2026-02-21T20:12:18.790 INFO:teuthology.orchestra.run.trial109.stdout:1 2026-02-21T20:12:18.816 INFO:teuthology.orchestra.run.trial109.stdout:/dev/vg_nvme/lv_11 2026-02-21T20:12:18.846 INFO:teuthology.orchestra.run.trial109.stdout:connecting to device: nvme3 2026-02-21T20:12:18.847 INFO:tasks.nvme_loop:Connecting nvme_loop trial109:/dev/vg_nvme/lv_2... 2026-02-21T20:12:18.848 DEBUG:teuthology.orchestra.run.trial109:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2026-02-21T20:12:18.923 INFO:teuthology.orchestra.run.trial109.stdout:1 2026-02-21T20:12:18.948 INFO:teuthology.orchestra.run.trial109.stdout:/dev/vg_nvme/lv_21 2026-02-21T20:12:18.977 INFO:teuthology.orchestra.run.trial109.stdout:connecting to device: nvme4 2026-02-21T20:12:18.978 INFO:tasks.nvme_loop:Connecting nvme_loop trial109:/dev/vg_nvme/lv_3... 2026-02-21T20:12:18.979 DEBUG:teuthology.orchestra.run.trial109:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2026-02-21T20:12:19.051 INFO:teuthology.orchestra.run.trial109.stdout:1 2026-02-21T20:12:19.078 INFO:teuthology.orchestra.run.trial109.stdout:/dev/vg_nvme/lv_31 2026-02-21T20:12:19.112 INFO:teuthology.orchestra.run.trial109.stdout:connecting to device: nvme5 2026-02-21T20:12:19.113 INFO:tasks.nvme_loop:Connecting nvme_loop trial109:/dev/vg_nvme/lv_4... 2026-02-21T20:12:19.113 DEBUG:teuthology.orchestra.run.trial109:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2026-02-21T20:12:19.185 INFO:teuthology.orchestra.run.trial109.stdout:1 2026-02-21T20:12:19.210 INFO:teuthology.orchestra.run.trial109.stdout:/dev/vg_nvme/lv_41 2026-02-21T20:12:19.239 INFO:teuthology.orchestra.run.trial109.stdout:connecting to device: nvme6 2026-02-21T20:12:19.241 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:12:19.241 DEBUG:teuthology.orchestra.run.trial109:> dd if=/scratch_devs of=/dev/stdout 2026-02-21T20:12:19.297 DEBUG:teuthology.orchestra.run.trial109:> lsblk 2026-02-21T20:12:19.355 INFO:teuthology.orchestra.run.trial109.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-21T20:12:19.355 INFO:teuthology.orchestra.run.trial109.stdout:nvme0n1 259:0 0 894.3G 0 disk 2026-02-21T20:12:19.355 INFO:teuthology.orchestra.run.trial109.stdout:├─nvme0n1p1 259:2 0 512M 0 part /boot/efi 2026-02-21T20:12:19.355 INFO:teuthology.orchestra.run.trial109.stdout:└─nvme0n1p2 259:3 0 893.8G 0 part / 2026-02-21T20:12:19.355 INFO:teuthology.orchestra.run.trial109.stdout:nvme2n1 259:1 0 1.7T 0 disk 2026-02-21T20:12:19.355 INFO:teuthology.orchestra.run.trial109.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:nvme1n1 259:4 0 1.7T 0 disk 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-21T20:12:19.356 INFO:teuthology.orchestra.run.trial109.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-21T20:12:19.356 DEBUG:teuthology.orchestra.run.trial109:> sudo nvme list -o json 2026-02-21T20:12:19.421 INFO:teuthology.orchestra.run.trial109.stdout:{ 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "Devices":[ 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng0n1", 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"E2MU200", 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-21T20:12:19.422 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"25174FCD6E68", 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":329581715456, 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":1875385008, 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":960197124096, 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: }, 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng1n1", 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"E3MQ000", 2026-02-21T20:12:19.423 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"0325108BFCE7", 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":142237278208, 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":3750748848, 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":1920383410176, 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: }, 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng2n1", 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"E3MQ000", 2026-02-21T20:12:19.424 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"0325108BFDDB", 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":139690573824, 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":3750748848, 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":1920383410176, 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: }, 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng3n1", 2026-02-21T20:12:19.425 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"c67515738102ad375fe6", 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: }, 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng4n1", 2026-02-21T20:12:19.426 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"f24227909c28ec3c0eef", 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: }, 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-21T20:12:19.427 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng5n1", 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"bd924cdc5f66a5f30e41", 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: }, 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: { 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "NameSpace":1, 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "GenericPath":"/dev/ng6n1", 2026-02-21T20:12:19.428 INFO:teuthology.orchestra.run.trial109.stdout: "Firmware":"5.14.0-6", 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: "ModelNumber":"Linux", 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: "SerialNumber":"d9151203876c5759dc6d", 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: "UsedBytes":751619276800, 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: "MaximumLBA":1468006400, 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: "PhysicalSize":751619276800, 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: "SectorSize":512 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: } 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout: ] 2026-02-21T20:12:19.429 INFO:teuthology.orchestra.run.trial109.stdout:} 2026-02-21T20:12:19.431 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-21T20:12:19.499 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:19.499 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:19.499 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00516154 s, 794 kB/s 2026-02-21T20:12:19.500 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-21T20:12:19.562 INFO:teuthology.orchestra.run.trial109.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:19.562 INFO:teuthology.orchestra.run.trial109.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:19.562 INFO:teuthology.orchestra.run.trial109.stdout:00000016 2026-02-21T20:12:19.563 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:19.630 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:19.631 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:19.631 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00474203 s, 864 kB/s 2026-02-21T20:12:19.632 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-21T20:12:19.694 INFO:teuthology.orchestra.run.trial109.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:19.694 INFO:teuthology.orchestra.run.trial109.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:19.694 INFO:teuthology.orchestra.run.trial109.stdout:40000016 2026-02-21T20:12:19.695 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:19.763 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:19.763 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:19.763 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00441294 s, 928 kB/s 2026-02-21T20:12:19.765 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-21T20:12:19.828 INFO:teuthology.orchestra.run.trial109.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:19.828 INFO:teuthology.orchestra.run.trial109.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:19.828 INFO:teuthology.orchestra.run.trial109.stdout:280000016 2026-02-21T20:12:19.829 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-21T20:12:19.897 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:19.897 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:19.897 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00484562 s, 845 kB/s 2026-02-21T20:12:19.898 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-21T20:12:19.961 INFO:teuthology.orchestra.run.trial109.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:19.961 INFO:teuthology.orchestra.run.trial109.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:19.961 INFO:teuthology.orchestra.run.trial109.stdout:00000016 2026-02-21T20:12:19.962 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:20.029 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.030 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.030 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00490871 s, 834 kB/s 2026-02-21T20:12:20.032 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-21T20:12:20.097 INFO:teuthology.orchestra.run.trial109.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.097 INFO:teuthology.orchestra.run.trial109.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.097 INFO:teuthology.orchestra.run.trial109.stdout:40000016 2026-02-21T20:12:20.098 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:20.165 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.165 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.166 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00459896 s, 891 kB/s 2026-02-21T20:12:20.167 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-21T20:12:20.229 INFO:teuthology.orchestra.run.trial109.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.229 INFO:teuthology.orchestra.run.trial109.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.229 INFO:teuthology.orchestra.run.trial109.stdout:280000016 2026-02-21T20:12:20.231 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-21T20:12:20.298 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.298 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.298 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00434749 s, 942 kB/s 2026-02-21T20:12:20.299 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-21T20:12:20.363 INFO:teuthology.orchestra.run.trial109.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.363 INFO:teuthology.orchestra.run.trial109.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.363 INFO:teuthology.orchestra.run.trial109.stdout:00000016 2026-02-21T20:12:20.364 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:20.431 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.431 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.431 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00446388 s, 918 kB/s 2026-02-21T20:12:20.432 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-21T20:12:20.495 INFO:teuthology.orchestra.run.trial109.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.495 INFO:teuthology.orchestra.run.trial109.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.495 INFO:teuthology.orchestra.run.trial109.stdout:40000016 2026-02-21T20:12:20.496 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:20.563 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.563 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.563 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0044387 s, 923 kB/s 2026-02-21T20:12:20.564 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-21T20:12:20.626 INFO:teuthology.orchestra.run.trial109.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.626 INFO:teuthology.orchestra.run.trial109.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.626 INFO:teuthology.orchestra.run.trial109.stdout:280000016 2026-02-21T20:12:20.627 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-21T20:12:20.695 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.695 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.695 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00477993 s, 857 kB/s 2026-02-21T20:12:20.696 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-21T20:12:20.759 INFO:teuthology.orchestra.run.trial109.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.759 INFO:teuthology.orchestra.run.trial109.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.759 INFO:teuthology.orchestra.run.trial109.stdout:00000016 2026-02-21T20:12:20.760 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-21T20:12:20.827 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.827 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.827 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00482135 s, 850 kB/s 2026-02-21T20:12:20.828 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-21T20:12:20.891 INFO:teuthology.orchestra.run.trial109.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:20.891 INFO:teuthology.orchestra.run.trial109.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:20.891 INFO:teuthology.orchestra.run.trial109.stdout:40000016 2026-02-21T20:12:20.893 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-21T20:12:20.961 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records in 2026-02-21T20:12:20.961 INFO:teuthology.orchestra.run.trial109.stderr:4096+0 records out 2026-02-21T20:12:20.961 INFO:teuthology.orchestra.run.trial109.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00490475 s, 835 kB/s 2026-02-21T20:12:20.962 DEBUG:teuthology.orchestra.run.trial109:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-21T20:12:21.025 INFO:teuthology.orchestra.run.trial109.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-21T20:12:21.025 INFO:teuthology.orchestra.run.trial109.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-21T20:12:21.025 INFO:teuthology.orchestra.run.trial109.stdout:280000016 2026-02-21T20:12:21.026 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-21T20:12:21.026 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:12:21.026 DEBUG:teuthology.orchestra.run.trial109:> sudo dd of=/scratch_devs 2026-02-21T20:12:21.090 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-21T20:12:21.189 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '042df16cd9ee8a8df553b188fef8a8c4a9e7ab01'} 2026-02-21T20:12:21.189 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 2026-02-21T20:12:21.191 INFO:tasks.cephadm:Cluster fsid is a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:21.191 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-21T20:12:21.191 INFO:tasks.cephadm:No mon roles; fabricating mons 2026-02-21T20:12:21.191 INFO:tasks.cephadm:Monitor IPs: {'mon.trial013': '10.20.193.13', 'mon.trial109': '10.20.193.109'} 2026-02-21T20:12:21.191 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-21T20:12:21.191 DEBUG:teuthology.orchestra.run.trial013:> sudo hostname $(hostname -s) 2026-02-21T20:12:21.217 DEBUG:teuthology.orchestra.run.trial109:> sudo hostname $(hostname -s) 2026-02-21T20:12:21.241 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-21T20:12:21.242 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 2026-02-21T20:12:21.380 INFO:tasks.cephadm:builder_project result: [{'url': 'https://3.chacra.ceph.com/r/ceph/wip-adk3-testing-2026-02-12-2007/042df16cd9ee8a8df553b188fef8a8c4a9e7ab01/centos/9/flavors/default/', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-adk3-testing-2026-02-12-2007/042df16cd9ee8a8df553b188fef8a8c4a9e7ab01/centos/9/flavors/default/', 'ref': 'wip-adk3-testing-2026-02-12-2007', 'sha1': '042df16cd9ee8a8df553b188fef8a8c4a9e7ab01', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-13 09:21:40.103301', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['source', 'x86_64'], 'extra': {'version': '20.3.0-5291-g042df16c', 'package_manager_version': '20.3.0-5291.g042df16c', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/2964/', 'root_build_cause': '', 'node_name': '10.20.192.98+toko08', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-21T20:12:21.507 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-adk3-testing-2026-02-12-2007, sha1 042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 2026-02-21T20:12:21.509 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-adk3-testing-2026-02-12-2007/042df16cd9ee8a8df553b188fef8a8c4a9e7ab01/centos/9/x86_64/flavors/default/cephadm 2026-02-21T20:12:21.509 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-adk3-testing-2026-02-12-2007/042df16cd9ee8a8df553b188fef8a8c4a9e7ab01/centos/9/x86_64/flavors/default/cephadm 2026-02-21T20:12:21.509 DEBUG:teuthology.orchestra.run.trial013:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-adk3-testing-2026-02-12-2007/042df16cd9ee8a8df553b188fef8a8c4a9e7ab01/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-21T20:12:22.114 INFO:teuthology.orchestra.run.trial013.stdout:-rw-r--r--. 1 ubuntu ubuntu 1084809 Feb 21 20:12 /home/ubuntu/cephtest/cephadm 2026-02-21T20:12:22.114 DEBUG:teuthology.orchestra.run.trial109:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-adk3-testing-2026-02-12-2007/042df16cd9ee8a8df553b188fef8a8c4a9e7ab01/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-21T20:12:22.429 INFO:teuthology.orchestra.run.trial109.stdout:-rw-r--r--. 1 ubuntu ubuntu 1084809 Feb 21 20:12 /home/ubuntu/cephtest/cephadm 2026-02-21T20:12:22.429 DEBUG:teuthology.orchestra.run.trial013:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-21T20:12:22.447 DEBUG:teuthology.orchestra.run.trial109:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-21T20:12:22.469 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 on all hosts... 2026-02-21T20:12:22.469 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 pull 2026-02-21T20:12:22.489 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 pull 2026-02-21T20:12:22.728 INFO:teuthology.orchestra.run.trial013.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01... 2026-02-21T20:12:22.745 INFO:teuthology.orchestra.run.trial109.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01... 2026-02-21T20:12:31.941 INFO:teuthology.orchestra.run.trial013.stdout:{ 2026-02-21T20:12:31.942 INFO:teuthology.orchestra.run.trial013.stdout: "ceph_version": "ceph version 20.3.0-5291-g042df16c (042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) tentacle (dev)", 2026-02-21T20:12:31.942 INFO:teuthology.orchestra.run.trial013.stdout: "image_id": "9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2", 2026-02-21T20:12:31.942 INFO:teuthology.orchestra.run.trial013.stdout: "repo_digests": [ 2026-02-21T20:12:31.942 INFO:teuthology.orchestra.run.trial013.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721" 2026-02-21T20:12:31.942 INFO:teuthology.orchestra.run.trial013.stdout: ] 2026-02-21T20:12:31.942 INFO:teuthology.orchestra.run.trial013.stdout:} 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout:{ 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout: "ceph_version": "ceph version 20.3.0-5291-g042df16c (042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) tentacle (dev)", 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout: "image_id": "9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2", 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout: "repo_digests": [ 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721" 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout: ] 2026-02-21T20:12:31.946 INFO:teuthology.orchestra.run.trial109.stdout:} 2026-02-21T20:12:31.965 DEBUG:teuthology.orchestra.run.trial013:> sudo mkdir -p /etc/ceph 2026-02-21T20:12:32.029 DEBUG:teuthology.orchestra.run.trial109:> sudo mkdir -p /etc/ceph 2026-02-21T20:12:32.057 DEBUG:teuthology.orchestra.run.trial013:> sudo chmod 777 /etc/ceph 2026-02-21T20:12:32.081 DEBUG:teuthology.orchestra.run.trial109:> sudo chmod 777 /etc/ceph 2026-02-21T20:12:32.123 INFO:tasks.cephadm:Writing seed config... 2026-02-21T20:12:32.125 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-21T20:12:32.125 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-21T20:12:32.125 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-21T20:12:32.126 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-21T20:12:32.126 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-21T20:12:32.126 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-21T20:12:32.126 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-21T20:12:32.126 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2026-02-21T20:12:32.127 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:32.127 DEBUG:teuthology.orchestra.run.trial013:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-21T20:12:32.145 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 = a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 [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 [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-21T20:12:32.146 DEBUG:teuthology.orchestra.run.trial013:mon.trial013> sudo journalctl -f -n 0 -u ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013.service 2026-02-21T20:12:32.187 INFO:tasks.cephadm:Bootstrapping... 2026-02-21T20:12:32.187 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 -v bootstrap --fsid a0f5aa36-0f61-11f1-ad6d-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-ip 10.20.193.13 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:12:32.326 INFO:teuthology.orchestra.run.trial013.stdout:-------------------------------------------------------------------------------- 2026-02-21T20:12:32.326 INFO:teuthology.orchestra.run.trial013.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01', '-v', 'bootstrap', '--fsid', 'a0f5aa36-0f61-11f1-ad6d-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-ip', '10.20.193.13', '--skip-admin-label'] 2026-02-21T20:12:32.327 INFO:teuthology.orchestra.run.trial013.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-21T20:12:32.327 INFO:teuthology.orchestra.run.trial013.stdout:Verifying podman|docker is present... 2026-02-21T20:12:32.343 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stdout 5.6.0 2026-02-21T20:12:32.343 INFO:teuthology.orchestra.run.trial013.stdout:Verifying lvm2 is present... 2026-02-21T20:12:32.343 INFO:teuthology.orchestra.run.trial013.stdout:Verifying time synchronization is in place... 2026-02-21T20:12:32.350 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-21T20:12:32.350 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-21T20:12:32.355 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-21T20:12:32.355 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:32.361 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout enabled 2026-02-21T20:12:32.367 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout active 2026-02-21T20:12:32.367 INFO:teuthology.orchestra.run.trial013.stdout:Unit chronyd.service is enabled and running 2026-02-21T20:12:32.367 INFO:teuthology.orchestra.run.trial013.stdout:Repeating the final host check... 2026-02-21T20:12:32.383 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stdout 5.6.0 2026-02-21T20:12:32.383 INFO:teuthology.orchestra.run.trial013.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-21T20:12:32.383 INFO:teuthology.orchestra.run.trial013.stdout:systemctl is present 2026-02-21T20:12:32.383 INFO:teuthology.orchestra.run.trial013.stdout:lvcreate is present 2026-02-21T20:12:32.388 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-21T20:12:32.388 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-21T20:12:32.394 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-21T20:12:32.394 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:32.400 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout enabled 2026-02-21T20:12:32.407 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout active 2026-02-21T20:12:32.407 INFO:teuthology.orchestra.run.trial013.stdout:Unit chronyd.service is enabled and running 2026-02-21T20:12:32.407 INFO:teuthology.orchestra.run.trial013.stdout:Host looks OK 2026-02-21T20:12:32.407 INFO:teuthology.orchestra.run.trial013.stdout:Cluster fsid: a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:32.407 INFO:teuthology.orchestra.run.trial013.stdout:Acquiring lock 139839230992544 on /run/cephadm/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.lock 2026-02-21T20:12:32.408 INFO:teuthology.orchestra.run.trial013.stdout:Lock 139839230992544 acquired on /run/cephadm/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.lock 2026-02-21T20:12:32.408 INFO:teuthology.orchestra.run.trial013.stdout:Verifying IP 10.20.193.13 port 3300 ... 2026-02-21T20:12:32.408 INFO:teuthology.orchestra.run.trial013.stdout:Verifying IP 10.20.193.13 port 6789 ... 2026-02-21T20:12:32.408 INFO:teuthology.orchestra.run.trial013.stdout:Base mon IP(s) is [10.20.193.13:3300, 10.20.193.13:6789], mon addrv is [v2:10.20.193.13:3300,v1:10.20.193.13:6789] 2026-02-21T20:12:32.410 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.13 metric 102 2026-02-21T20:12:32.410 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.13 metric 102 2026-02-21T20:12:32.410 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-21T20:12:32.412 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-21T20:12:32.412 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-21T20:12:32.413 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout inet6 fe80::f875:68d1:f0a7:ca53/64 scope link noprefixroute 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-21T20:12:32.416 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:6010/64 scope link 2026-02-21T20:12:32.417 INFO:teuthology.orchestra.run.trial013.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-21T20:12:32.417 INFO:teuthology.orchestra.run.trial013.stdout:Mon IP `10.20.193.13` is in CIDR network `10.20.192.0/20` 2026-02-21T20:12:32.417 INFO:teuthology.orchestra.run.trial013.stdout:Mon IP `10.20.193.13` is in CIDR network `10.20.192.0/20` 2026-02-21T20:12:32.417 INFO:teuthology.orchestra.run.trial013.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-21T20:12:32.417 INFO:teuthology.orchestra.run.trial013.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-21T20:12:32.417 INFO:teuthology.orchestra.run.trial013.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01... 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stdout 9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01... 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stderr Getting image source signatures 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stderr Copying blob sha256:e60e84cd03e7dd8cdc86f7b486bd1a0f952976a735df6b4ece42f8539db058b6 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stderr Copying blob sha256:f288f3bfe1f1dd15cb8f17590a708af9d9397de617368b4f9c06e9bc583d4a6b 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stderr Copying config sha256:9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2 2026-02-21T20:12:32.663 INFO:teuthology.orchestra.run.trial013.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-21T20:12:32.782 INFO:teuthology.orchestra.run.trial013.stdout:ceph: stdout ceph version 20.3.0-5291-g042df16c (042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) tentacle (dev) 2026-02-21T20:12:32.782 INFO:teuthology.orchestra.run.trial013.stdout:Ceph version: ceph version 20.3.0-5291-g042df16c (042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) tentacle (dev) 2026-02-21T20:12:32.783 INFO:teuthology.orchestra.run.trial013.stdout:Extracting ceph user uid/gid from container image... 2026-02-21T20:12:32.919 INFO:teuthology.orchestra.run.trial013.stdout:stat: stdout 167 167 2026-02-21T20:12:32.919 INFO:teuthology.orchestra.run.trial013.stdout:Creating initial keys... 2026-02-21T20:12:33.033 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph-authtool: stdout AQCxEZppldwXARAAZvXT7krc0cdmhLI4nwYrwg== 2026-02-21T20:12:33.165 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph-authtool: stdout AQCxEZppzMzvCBAAqdT0z6qYTCIvRGT0DJzoOQ== 2026-02-21T20:12:33.273 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph-authtool: stdout AQCxEZppRHJsDxAAOtmBGuYi3FMZ9PFcMxcC+A== 2026-02-21T20:12:33.274 INFO:teuthology.orchestra.run.trial013.stdout:Creating initial monmap... 2026-02-21T20:12:33.437 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:monmaptool for trial013 [v2:10.20.193.13:3300,v1:10.20.193.13:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:setting min_mon_release = tentacle 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/monmaptool: set fsid to a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:33.438 INFO:teuthology.orchestra.run.trial013.stdout:Creating mon... 2026-02-21T20:12:33.572 INFO:teuthology.orchestra.run.trial013.stdout:create mon.trial013 on 2026-02-21T20:12:33.846 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-21T20:12:33.960 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.target → /etc/systemd/system/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.target. 2026-02-21T20:12:33.960 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.target → /etc/systemd/system/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.target. 2026-02-21T20:12:34.100 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013 2026-02-21T20:12:34.100 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Failed to reset failed state of unit ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013.service: Unit ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013.service not loaded. 2026-02-21T20:12:34.239 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.target.wants/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013.service → /etc/systemd/system/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@.service. 2026-02-21T20:12:34.284 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 systemd[1]: Starting Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460... 2026-02-21T20:12:34.394 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-21T20:12:34.395 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout disabled 2026-02-21T20:12:34.400 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-21T20:12:34.400 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:34.400 INFO:teuthology.orchestra.run.trial013.stdout:firewalld.service is not enabled 2026-02-21T20:12:34.400 INFO:teuthology.orchestra.run.trial013.stdout:Not possible to enable service . firewalld.service is not available 2026-02-21T20:12:34.400 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for mon to start... 2026-02-21T20:12:34.401 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for mon... 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 podman[35058]: 2026-02-21 20:12:34.341366293 +0000 UTC m=+0.015502562 container create 6b044cb61b61c781de4cbc6dc1ee563595d1a233501904307c5548fe6dd70331 (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, org.label-schema.build-date=20260209, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-adk3-testing-2026-02-12-2007, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, io.buildah.version=1.41.3, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.vendor=CentOS) 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 podman[35058]: 2026-02-21 20:12:34.376260127 +0000 UTC m=+0.050396395 container init 6b044cb61b61c781de4cbc6dc1ee563595d1a233501904307c5548fe6dd70331 (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-adk3-testing-2026-02-12-2007, org.label-schema.build-date=20260209, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS) 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 podman[35058]: 2026-02-21 20:12:34.378579536 +0000 UTC m=+0.052715804 container start 6b044cb61b61c781de4cbc6dc1ee563595d1a233501904307c5548fe6dd70331 (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, OSD_FLAVOR=default, io.buildah.version=1.41.3, org.label-schema.vendor=CentOS, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.label-schema.build-date=20260209, CEPH_REF=wip-adk3-testing-2026-02-12-2007, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 bash[35058]: 6b044cb61b61c781de4cbc6dc1ee563595d1a233501904307c5548fe6dd70331 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 podman[35058]: 2026-02-21 20:12:34.335174873 +0000 UTC m=+0.009311141 image pull 9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2 quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 systemd[1]: Started Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460. 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 ceph-mon[35086]: mkfs a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:34.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 ceph-mon[35086]: mon.trial013 is new leader, mons trial013 in quorum (ranks 0) 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout cluster: 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout id: a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout services: 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum trial013 (age 0.13099s) [leader: trial013] 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout data: 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-21T20:12:34.554 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout pgs: 2026-02-21T20:12:34.555 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:34.555 INFO:teuthology.orchestra.run.trial013.stdout:mon is available 2026-02-21T20:12:34.555 INFO:teuthology.orchestra.run.trial013.stdout:Assimilating anything we can from ceph.conf... 2026-02-21T20:12:34.701 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:34.701 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout [global] 2026-02-21T20:12:34.701 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout fsid = a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:34.701 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.13:3300,v1:10.20.193.13:6789] 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout [osd] 2026-02-21T20:12:34.702 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-21T20:12:34.703 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-21T20:12:34.703 INFO:teuthology.orchestra.run.trial013.stdout:Generating new minimal ceph.conf... 2026-02-21T20:12:34.854 INFO:teuthology.orchestra.run.trial013.stdout:Restarting the monitor... 2026-02-21T20:12:35.073 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 systemd[1]: Stopping Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460... 2026-02-21T20:12:35.073 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013[35082]: 2026-02-21T20:12:34.924+0000 7f01ecae8640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial013 -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-21T20:12:35.073 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:34 trial013 ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013[35082]: 2026-02-21T20:12:34.924+0000 7f01ecae8640 -1 mon.trial013@0(leader) e1 *** Got Signal Terminated *** 2026-02-21T20:12:35.073 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 podman[35365]: 2026-02-21 20:12:35.046459755 +0000 UTC m=+0.133589567 container died 6b044cb61b61c781de4cbc6dc1ee563595d1a233501904307c5548fe6dd70331 (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, io.buildah.version=1.41.3, org.label-schema.build-date=20260209, org.label-schema.schema-version=1.0, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, ceph=True, CEPH_REF=wip-adk3-testing-2026-02-12-2007, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2) 2026-02-21T20:12:35.074 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 podman[35365]: 2026-02-21 20:12:35.055361834 +0000 UTC m=+0.142491646 container remove 6b044cb61b61c781de4cbc6dc1ee563595d1a233501904307c5548fe6dd70331 (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20260209, org.label-schema.schema-version=1.0, CEPH_REF=wip-adk3-testing-2026-02-12-2007, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-21T20:12:35.074 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 bash[35365]: ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013 2026-02-21T20:12:35.222 INFO:teuthology.orchestra.run.trial013.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-21T20:12:35.365 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 systemd[1]: ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013.service: Deactivated successfully. 2026-02-21T20:12:35.365 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 systemd[1]: Stopped Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460. 2026-02-21T20:12:35.365 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 systemd[1]: Starting Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460... 2026-02-21T20:12:35.365 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 podman[35493]: 2026-02-21 20:12:35.186780258 +0000 UTC m=+0.015481343 container create 54eab93856dcc68f6279af25b90ddd6df688813d732471b82c66456c274cba4b (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, CEPH_REF=wip-adk3-testing-2026-02-12-2007, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.build-date=20260209, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-21T20:12:35.365 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 podman[35493]: 2026-02-21 20:12:35.211327583 +0000 UTC m=+0.040028678 container init 54eab93856dcc68f6279af25b90ddd6df688813d732471b82c66456c274cba4b (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260209, CEPH_REF=wip-adk3-testing-2026-02-12-2007, io.buildah.version=1.41.3, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True) 2026-02-21T20:12:35.365 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 podman[35493]: 2026-02-21 20:12:35.213883352 +0000 UTC m=+0.042584447 container start 54eab93856dcc68f6279af25b90ddd6df688813d732471b82c66456c274cba4b (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-adk3-testing-2026-02-12-2007, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260209, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, ceph=True) 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 bash[35493]: 54eab93856dcc68f6279af25b90ddd6df688813d732471b82c66456c274cba4b 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 podman[35493]: 2026-02-21 20:12:35.180092653 +0000 UTC m=+0.008793758 image pull 9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2 quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 systemd[1]: Started Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460. 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: set uid:gid to 167:167 (ceph:ceph) 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: ceph version 20.3.0-5291-g042df16c (042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) tentacle (dev - RelWithDebInfo), process ceph-mon, pid 2 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: pidfile_write: ignore empty --pid-file 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: load: jerasure load: lrc 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: RocksDB version: 7.9.2 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Git sha 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Compile date 2026-02-13 08:53:20 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: DB SUMMARY 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: DB Session ID: UL33CEHCLNXTU4KFD4BU 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: CURRENT file: CURRENT 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: IDENTITY file: IDENTITY 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: SST files in /var/lib/ceph/mon/ceph-trial013/store.db dir, Total Num: 1, files: 000008.sst 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial013/store.db: 000009.log size: 76213 ; 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.error_if_exists: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.create_if_missing: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.paranoid_checks: 1 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.env: 0xed5d60 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.fs: PosixFileSystem 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.info_log: 0x33df1c0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_file_opening_threads: 16 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.statistics: (nil) 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.use_fsync: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_log_file_size: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.keep_log_file_num: 1000 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.recycle_log_file_num: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.allow_fallocate: 1 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.allow_mmap_reads: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.allow_mmap_writes: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.use_direct_reads: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.create_missing_column_families: 0 2026-02-21T20:12:35.366 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.db_log_dir: 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.wal_dir: 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.advise_random_on_open: 1 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.db_write_buffer_size: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.write_buffer_manager: 0x33da140 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.rate_limiter: (nil) 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.wal_recovery_mode: 2 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.enable_thread_tracking: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.enable_pipelined_write: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.unordered_write: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.row_cache: None 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.wal_filter: None 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.allow_ingest_behind: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.two_write_queues: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.manual_wal_flush: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.wal_compression: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.atomic_flush: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.log_readahead_size: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.best_efforts_recovery: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.allow_data_in_errors: 0 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.db_host_id: __hostname__ 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-21T20:12:35.367 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_background_jobs: 2 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_background_compactions: -1 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_subcompactions: 1 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_total_wal_size: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_open_files: -1 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bytes_per_sync: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_readahead_size: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_background_flushes: -1 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Compression algorithms supported: 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kZSTD supported: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kXpressCompression supported: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kBZip2Compression supported: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kLZ4Compression supported: 1 2026-02-21T20:12:35.368 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kZlibCompression supported: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kLZ4HCCompression supported: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: kSnappyCompression supported: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial013/store.db/MANIFEST-000010 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.merge_operator: 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_filter: None 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_filter_factory: None 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.sst_partitioner_factory: None 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x33df900) 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: cache_index_and_filter_blocks: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: pin_top_level_index_and_filter: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: index_type: 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: data_block_index_type: 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: index_shortening: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: checksum: 4 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: no_block_cache: 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_cache: 0x33ada50 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_cache_name: BinnedLRUCache 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_cache_options: 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: capacity : 536870912 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: num_shard_bits : 4 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: strict_capacity_limit : 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: high_pri_pool_ratio: 0.000 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_cache_compressed: (nil) 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: persistent_cache: (nil) 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_size: 4096 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_size_deviation: 10 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_restart_interval: 16 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: index_block_restart_interval: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: metadata_block_size: 4096 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: partition_filters: 0 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: use_delta_encoding: 1 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: filter_policy: bloomfilter 2026-02-21T20:12:35.369 INFO:journalctl@ceph.mon.trial013.trial013.stdout: whole_key_filtering: 1 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: verify_compression: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: read_amp_bytes_per_bit: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: format_version: 5 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: enable_index_compression: 1 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: block_align: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: max_auto_readahead_size: 262144 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: prepopulate_block_cache: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: initial_auto_readahead_size: 8192 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout: num_file_reads_for_auto_readahead: 2 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.write_buffer_size: 33554432 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_write_buffer_number: 2 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression: NoCompression 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression: Disabled 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.prefix_extractor: nullptr 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.num_levels: 7 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.level: 32767 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.strategy: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.enabled: false 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.target_file_size_base: 67108864 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-21T20:12:35.370 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.arena_block_size: 1048576 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.disable_auto_compactions: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.inplace_update_support: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.bloom_locality: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.max_successive_merges: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.paranoid_file_checks: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.force_consistency_checks: 1 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.report_bg_io_stats: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.ttl: 2592000 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.enable_blob_files: false 2026-02-21T20:12:35.371 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.min_blob_size: 0 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.blob_file_size: 268435456 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.blob_file_starting_level: 0 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial013/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-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f02eb8d1-8ddb-4ad8-9ae6-8cb8eb3f7259 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771704755230535, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771704755231387, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73355, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 227, "table_properties": {"data_size": 71623, "index_size": 181, "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": 9640, "raw_average_key_size": 48, "raw_value_size": 66127, "raw_average_value_size": 333, "num_data_blocks": 8, "num_entries": 198, "num_filter_entries": 198, "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": 1771704755, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f02eb8d1-8ddb-4ad8-9ae6-8cb8eb3f7259", "db_session_id": "UL33CEHCLNXTU4KFD4BU", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771704755231453, "job": 1, "event": "recovery_finished"} 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial013/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x33fae00 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: DB pointer 0x41ec000 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: ** DB Stats ** 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.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-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.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-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: ** Compaction Stats [default] ** 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.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-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: L0 2/0 73.54 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 118.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Sum 2/0 73.54 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 118.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.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 118.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: ** Compaction Stats [default] ** 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.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-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-21T20:12:35.372 INFO:journalctl@ceph.mon.trial013.trial013.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 118.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Cumulative compaction: 0.00 GB write, 23.23 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Interval compaction: 0.00 GB write, 23.23 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.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-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Block cache BinnedLRUCache@0x33ada50#2 capacity: 512.00 MB usage: 1.08 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.70 KB,0.00013411%) IndexBlock(2,0.38 KB,7.15256e-05%) Misc(1,0.00 KB,0%) 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: starting mon.trial013 rank 0 at public addrs [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] at bind addrs [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] mon_data /var/lib/ceph/mon/ceph-trial013 fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???) e1 preinit fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).mds e1 new map 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).mds e1 print_map 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: e1 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: btime 2026-02-21T20:12:34:401450+0000 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.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-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: legacy client fscid: -1 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout: No filesystems configured 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mon.trial013 is new leader, mons trial013 in quorum (ranks 0) 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: monmap epoch 1 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: last_changed 2026-02-21T20:12:33.392148+0000 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: created 2026-02-21T20:12:33.392148+0000 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: min_mon_release 20 (tentacle) 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: election_strategy: 1 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: 0: [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] mon.trial013 2026-02-21T20:12:35.373 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: fsmap 2026-02-21T20:12:35.374 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: osdmap e1: 0 total, 0 up, 0 in 2026-02-21T20:12:35.374 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:35 trial013 ceph-mon[35520]: mgrmap e1: no daemons active 2026-02-21T20:12:35.393 INFO:teuthology.orchestra.run.trial013.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-21T20:12:35.393 INFO:teuthology.orchestra.run.trial013.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:12:35.393 INFO:teuthology.orchestra.run.trial013.stdout:Creating mgr... 2026-02-21T20:12:35.394 INFO:teuthology.orchestra.run.trial013.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-21T20:12:35.394 INFO:teuthology.orchestra.run.trial013.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-21T20:12:35.395 INFO:teuthology.orchestra.run.trial013.stdout:Verifying port 0.0.0.0:8443 ... 2026-02-21T20:12:35.532 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mgr.trial013.ogreni 2026-02-21T20:12:35.532 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Failed to reset failed state of unit ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mgr.trial013.ogreni.service: Unit ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mgr.trial013.ogreni.service not loaded. 2026-02-21T20:12:35.650 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460.target.wants/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mgr.trial013.ogreni.service → /etc/systemd/system/ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@.service. 2026-02-21T20:12:35.790 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-21T20:12:35.790 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout disabled 2026-02-21T20:12:35.796 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-21T20:12:35.796 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:35.796 INFO:teuthology.orchestra.run.trial013.stdout:firewalld.service is not enabled 2026-02-21T20:12:35.796 INFO:teuthology.orchestra.run.trial013.stdout:Not possible to enable service . firewalld.service is not available 2026-02-21T20:12:35.803 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-21T20:12:35.803 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout disabled 2026-02-21T20:12:35.809 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-21T20:12:35.810 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:35.810 INFO:teuthology.orchestra.run.trial013.stdout:firewalld.service is not enabled 2026-02-21T20:12:35.810 INFO:teuthology.orchestra.run.trial013.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2026-02-21T20:12:35.810 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for mgr to start... 2026-02-21T20:12:35.810 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for mgr... 2026-02-21T20:12:35.979 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "fsid": "a0f5aa36-0f61-11f1-ad6d-d404e6e7d460", 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "health": { 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-21T20:12:35.980 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 0 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "trial013" 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-21T20:12:35.981 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-21T20:12:35.982 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "btime": "2026-02-21T20:12:34:401450+0000", 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-21T20:12:35.983 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.984 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "modified": "2026-02-21T20:12:34.401794+0000", 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:35.985 INFO:teuthology.orchestra.run.trial013.stdout:mgr not available, waiting (1/15)... 2026-02-21T20:12:36.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:36 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/999594154' entity='client.admin' 2026-02-21T20:12:36.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:36 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/91412366' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-21T20:12:38.137 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:38.137 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:38.137 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "fsid": "a0f5aa36-0f61-11f1-ad6d-d404e6e7d460", 2026-02-21T20:12:38.137 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "health": { 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 0 2026-02-21T20:12:38.138 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "trial013" 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-21T20:12:38.139 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-21T20:12:38.140 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-21T20:12:38.141 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "btime": "2026-02-21T20:12:34:401450+0000", 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-21T20:12:38.142 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-21T20:12:38.143 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "modified": "2026-02-21T20:12:34.401794+0000", 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:38.144 INFO:teuthology.orchestra.run.trial013.stdout:mgr not available, waiting (2/15)... 2026-02-21T20:12:38.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:38 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3901294576' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-21T20:12:39.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: Activating manager daemon trial013.ogreni 2026-02-21T20:12:39.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: mgrmap e2: trial013.ogreni(active, starting, since 0.00226097s) 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: Manager daemon trial013.ogreni is now available 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' 2026-02-21T20:12:39.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:39 trial013 ceph-mon[35520]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' 2026-02-21T20:12:40.409 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:40.409 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:40.409 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "fsid": "a0f5aa36-0f61-11f1-ad6d-d404e6e7d460", 2026-02-21T20:12:40.409 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "health": { 2026-02-21T20:12:40.409 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-21T20:12:40.409 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 0 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "trial013" 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-21T20:12:40.410 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.411 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "btime": "2026-02-21T20:12:34:401450+0000", 2026-02-21T20:12:40.412 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ], 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-21T20:12:40.413 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "modified": "2026-02-21T20:12:34.401794+0000", 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout }, 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:40.414 INFO:teuthology.orchestra.run.trial013.stdout:mgr is available 2026-02-21T20:12:40.629 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:40.629 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout [global] 2026-02-21T20:12:40.629 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout fsid = a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:40.629 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-21T20:12:40.629 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.13:3300,v1:10.20.193.13:6789] 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout [osd] 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-21T20:12:40.630 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-21T20:12:40.631 INFO:teuthology.orchestra.run.trial013.stdout:Enabling cephadm module... 2026-02-21T20:12:40.673 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:40 trial013 ceph-mon[35520]: mgrmap e3: trial013.ogreni(active, since 1.0044s) 2026-02-21T20:12:40.673 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:40 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2115661441' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-21T20:12:41.823 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:41 trial013 ceph-mon[35520]: mgrmap e4: trial013.ogreni(active, since 2s) 2026-02-21T20:12:41.823 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:41 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1739424429' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-21T20:12:41.823 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:41 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/508480211' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-21T20:12:41.844 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:41.844 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-21T20:12:41.845 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-21T20:12:41.845 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "active_name": "trial013.ogreni", 2026-02-21T20:12:41.845 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-21T20:12:41.845 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:41.845 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for the mgr to restart... 2026-02-21T20:12:41.845 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for mgr epoch 5... 2026-02-21T20:12:42.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/508480211' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-21T20:12:42.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:42 trial013 ceph-mon[35520]: mgrmap e5: trial013.ogreni(active, since 3s) 2026-02-21T20:12:42.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2586222532' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-21T20:12:44.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: Active manager daemon trial013.ogreni restarted 2026-02-21T20:12:44.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: Activating manager daemon trial013.ogreni 2026-02-21T20:12:44.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: osdmap e2: 0 total, 0 up, 0 in 2026-02-21T20:12:44.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: mgrmap e6: trial013.ogreni(active, starting, since 0.00244752s) 2026-02-21T20:12:44.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:12:44.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:12:44.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:12:44.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:12:44.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:12:44.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:44 trial013 ceph-mon[35520]: Manager daemon trial013.ogreni is now available 2026-02-21T20:12:45.353 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:45.353 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-21T20:12:45.353 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-21T20:12:45.353 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:45.353 INFO:teuthology.orchestra.run.trial013.stdout:mgr epoch 5 is available 2026-02-21T20:12:45.353 INFO:teuthology.orchestra.run.trial013.stdout:Verifying orchestrator module is enabled... 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: Found migration_current of "None". Setting to last migration. 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: mgrmap e7: trial013.ogreni(active, since 1.00377s) 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4128728827' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.331 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:45 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:46.354 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-21T20:12:46.354 INFO:teuthology.orchestra.run.trial013.stdout:Setting orchestrator backend to cephadm... 2026-02-21T20:12:46.818 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-21T20:12:46.818 INFO:teuthology.orchestra.run.trial013.stdout:Generating ssh key... 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:45] ENGINE Bus STARTING 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:45] ENGINE Serving on https://10.20.193.13:7150 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:45] ENGINE Client ('10.20.193.13', 42346) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:46] ENGINE Serving on http://10.20.193.13:8765 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:46] ENGINE Bus STARTED 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4128728827' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: mgrmap e8: trial013.ogreni(active, since 2s) 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:47.104 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:46 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:12:47.288 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOR9U4IOtTpt/8q2UXAss8xWb1aMfTh/csnzf4qBXXPO ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:47.288 INFO:teuthology.orchestra.run.trial013.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-21T20:12:47.288 INFO:teuthology.orchestra.run.trial013.stdout:Adding key to root@localhost authorized_keys... 2026-02-21T20:12:47.288 INFO:teuthology.orchestra.run.trial013.stdout:Adding host trial013... 2026-02-21T20:12:48.235 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:48.235 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:48.236 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: Generating ssh key... 2026-02-21T20:12:48.236 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:48.236 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:48.236 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:48.236 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:48 trial013 ceph-mon[35520]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial013", "addr": "10.20.193.13", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:49.112 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Added host 'trial013' with addr '10.20.193.13' 2026-02-21T20:12:49.112 INFO:teuthology.orchestra.run.trial013.stdout:Deploying mon service with default placement... 2026-02-21T20:12:49.344 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:49 trial013 ceph-mon[35520]: Deploying cephadm binary to trial013 2026-02-21T20:12:49.379 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-21T20:12:49.379 INFO:teuthology.orchestra.run.trial013.stdout:Deploying mgr service with default placement... 2026-02-21T20:12:49.697 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-21T20:12:49.697 INFO:teuthology.orchestra.run.trial013.stdout:Deploying crash service with default placement... 2026-02-21T20:12:49.942 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2026-02-21T20:12:49.942 INFO:teuthology.orchestra.run.trial013.stdout:Deploying ceph-exporter service with default placement... 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: Added host trial013 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: Saving service mon spec with placement count:5 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:50.176 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:50 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:50.196 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2026-02-21T20:12:50.197 INFO:teuthology.orchestra.run.trial013.stdout:Deploying prometheus service with default placement... 2026-02-21T20:12:50.446 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2026-02-21T20:12:50.446 INFO:teuthology.orchestra.run.trial013.stdout:Deploying grafana service with default placement... 2026-02-21T20:12:50.730 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2026-02-21T20:12:50.731 INFO:teuthology.orchestra.run.trial013.stdout:Deploying node-exporter service with default placement... 2026-02-21T20:12:50.969 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2026-02-21T20:12:50.969 INFO:teuthology.orchestra.run.trial013.stdout:Deploying alertmanager service with default placement... 2026-02-21T20:12:51.200 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:51.200 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: Saving service mgr spec with placement count:2 2026-02-21T20:12:51.200 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:51.200 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: Saving service crash spec with placement * 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: Saving service ceph-exporter spec with placement * 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: Saving service prometheus spec with placement count:1 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:51.201 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:51 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:51.205 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2026-02-21T20:12:51.662 INFO:teuthology.orchestra.run.trial013.stdout:Enabling the dashboard module... 2026-02-21T20:12:52.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:52.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: Saving service grafana spec with placement count:1 2026-02-21T20:12:52.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: Saving service node-exporter spec with placement * 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: Saving service alertmanager spec with placement count:1 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3042530703' entity='client.admin' 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2274654236' entity='client.admin' 2026-02-21T20:12:52.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:52 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1124393852' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-21T20:12:52.924 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:52.924 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-21T20:12:52.924 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-21T20:12:52.924 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "active_name": "trial013.ogreni", 2026-02-21T20:12:52.924 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-21T20:12:52.924 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:52.925 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for the mgr to restart... 2026-02-21T20:12:52.925 INFO:teuthology.orchestra.run.trial013.stdout:Waiting for mgr epoch 9... 2026-02-21T20:12:53.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:53 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1124393852' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-21T20:12:53.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:53 trial013 ceph-mon[35520]: mgrmap e9: trial013.ogreni(active, since 8s) 2026-02-21T20:12:53.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:53 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/993082185' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-21T20:12:55.941 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: Active manager daemon trial013.ogreni restarted 2026-02-21T20:12:55.941 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: Activating manager daemon trial013.ogreni 2026-02-21T20:12:55.941 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: osdmap e3: 0 total, 0 up, 0 in 2026-02-21T20:12:55.941 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: mgrmap e10: trial013.ogreni(active, starting, since 0.00281581s) 2026-02-21T20:12:55.941 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:12:55.942 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:12:55.942 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:12:55.942 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:12:55.942 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:12:55.942 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:55 trial013 ceph-mon[35520]: Manager daemon trial013.ogreni is now available 2026-02-21T20:12:56.470 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout { 2026-02-21T20:12:56.470 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-21T20:12:56.470 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-21T20:12:56.470 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout } 2026-02-21T20:12:56.470 INFO:teuthology.orchestra.run.trial013.stdout:mgr epoch 9 is available 2026-02-21T20:12:56.470 INFO:teuthology.orchestra.run.trial013.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-21T20:12:56.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:56 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:12:56.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:56 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:12:56.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:56 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:12:56.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:56 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:12:56.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:56 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:12:56.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:56 trial013 ceph-mon[35520]: mgrmap e11: trial013.ogreni(active, since 1.00527s) 2026-02-21T20:12:57.226 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIFHzCCAwegAwIBAgIUIW4idwCvV7FLrXZ7Jp3UsTl1txYwDQYJKoZIhvcNAQEL\nBQAwPDE6MDgGA1UEAwwxY2VwaGFkbS1yb290LWEwZjVhYTM2LTBmNjEtMTFmMS1h\nZDZkLWQ0MDRlNmU3ZDQ2MDAeFw0yNjAyMjEyMDEyNTdaFw0yOTAyMjAyMDEyNTda\nMBcxFTATBgNVBAMMDDEwLjIwLjE5My4xMzCCAiIwDQYJKoZIhvcNAQEBBQADggIP\nADCCAgoCggIBALVUVgGkYIrbh/6C/G1Z/2TJ1GsXlVO9iCll3fZFUxdASbEtcD44\nWndnTmc39GgAkdQIoc9tuSnE99c6J4qpzi4NkbsoTbWPF9/khvtuONKZTvXNcg19\npW2jkwVA99UAc1qjIzwOW7xG5qysQ5pXWEeDt4RqHma9Vn8yx42e8zJhTpkI1IA5\nZNKv9ioGmlTumLOKQCNxKBl6b79dz2NpUmR9Vf2Eg8MBgkI0V3yUmtJNMkumcPKO\nv7jR83dYLCZLsM+EVjNSMjRlTFKX54u1RVYW4QktHqEfBWNPNxDBpYEcX/gBdAbA\nh5+gIWII9Pc8t8CxW6HB7NIcgRycS6of6vJmIX90apAa6GRUGlKJS7KrZsOGz9eU\nx6dxFrI2QvI4R855LxPUYXFb/lJAdMAmBLGCQTeDklte0HxQdOfgPXnmMktAWhhT\nK4sIV2hYDR7skJGsgFOSUvYFKGYWKqo4YQsQTzjRKqZ7ugw/VhnmI7YjG0GNdoeV\nM09lGWClWfDxfYJpQJzNjWD7wdsl17KafHYGTJGgjRraOgrsTB9YInK7sAxWhMbZ\n/r8JKNf97Q4ZfDeBFIeEoCHClNbjkl0ewSUmI4ao4H434Fq7JSCD/FTLMx1IHbR5\nwi6i85iY8bhGU+/om1UD9alkrvlMPZFpe/kq01YhIhUiQox9wETEqRWNAgMBAAGj\nPjA8MCwGA1UdEQQlMCOCCHRyaWFsMDEzghFkYXNoYm9hcmRfc2VydmVyc4cEChTB\nDTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBmyiWmWrKIDcaqBs6P\niPiXBm14tRF5AUKpFrKF+fIGmyFQgFJWng8AZ2KBWrl2L72M+1MWaDgZPmAgxTX1\n5fOAt8zsS4ubU3PhVG/fx7ognz82ruCsU1G9c6vIHUK5f96BbLb3xJA4EvHWkkEe\nXdFJ7XJ0zAxkLOzKPrD++PRsoPFQxi+47HaXgcjg9EplrJsJWDE6zd+YyyN32vZH\nK4zgGs680Xwwg4uvK2XeJqCqr7SxRCAV3QmQs8Ren/uzFKmw2YfM7jepkk+hv/iD\nHd5PtYV2+8d97eWbDRYzGOhZrsdyI5oyknpFxbBByCAcRkY0ghPKJZQ7fy7av8wS\nFUDePigUr/DAhape8yPzVC1yxbz2Y9yuswLPSzt5BJIlnJHT3XnG3/o4KTYxejuv\nC2Bo9acuj7JHXQZzE54vpQYqf76+rFLIL5fa+fOA1Aqi6zTp6iiczY5Hg8uRDg/4\n/DCjXBTDsyOF5U1ZSvKTw7Fhug4t1Op6E4mvOXTlLMdg4g0pxz1OUUnJAYGR6jlh\nSj0up6613H12df7+PuhEIPcEVFGncvhlyMH3yiPZP1nVlYkgGqv5RgVs2XdoAxIj\nBOFshGGOwQ1WiETGuM2jVVnUdL9eFaWKtcIC2+YVLf0ZN+CrYr2MomjMNYsm+u2h\nC7efg70uph1WWIEPqWwcC/xyxg==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEAtVRWAaRgituH/oL8bVn/ZMnUaxeVU72IKWXd9kVTF0BJsS1w\nPjhad2dOZzf0aACR1Aihz225KcT31zoniqnOLg2RuyhNtY8X3+SG+2440plO9c1y\nDX2lbaOTBUD31QBzWqMjPA5bvEbmrKxDmldYR4O3hGoeZr1WfzLHjZ7zMmFOmQjU\ngDlk0q/2KgaaVO6Ys4pAI3EoGXpvv13PY2lSZH1V/YSDwwGCQjRXfJSa0k0yS6Zw\n8o6/uNHzd1gsJkuwz4RWM1IyNGVMUpfni7VFVhbhCS0eoR8FY083EMGlgRxf+AF0\nBsCHn6AhYgj09zy3wLFbocHs0hyBHJxLqh/q8mYhf3RqkBroZFQaUolLsqtmw4bP\n15THp3EWsjZC8jhHznkvE9RhcVv+UkB0wCYEsYJBN4OSW17QfFB05+A9eeYyS0Ba\nGFMriwhXaFgNHuyQkayAU5JS9gUoZhYqqjhhCxBPONEqpnu6DD9WGeYjtiMbQY12\nh5UzT2UZYKVZ8PF9gmlAnM2NYPvB2yXXspp8dgZMkaCNGto6CuxMH1gicruwDFaE\nxtn+vwko1/3tDhl8N4EUh4SgIcKU1uOSXR7BJSYjhqjgfjfgWrslIIP8VMszHUgd\ntHnCLqLzmJjxuEZT7+ibVQP1qWSu+Uw9kWl7+SrTViEiFSJCjH3ARMSpFY0CAwEA\nAQKCAgAq/0XKq2PyIUbQ4NYDBxNynpJGV6gC3J9AM8XLexpOGeIvh3cFZf77r80t\nWB0WGUZ7GRXndhzxTOG5ETLlpEi97l1HXDH7EqSGZG3minciZxSMYCxCiy/yPNak\nqQhrY2k3DZaSC9SQY16ZBNsd6sbF5HOcjD5LvetYC546lH2WDXFiA/BBvHpOJEfy\npLCtYYtnjWmSjedEjV4YqmG+MLAHIJpGnIjS8ZVl5fv10FYa9o+t1RiUx6kqJey9\nuLR1Wz7gokB/eGbrujZ8IkWXQQNhO9keQCryaUTxjMvhpw17/VK7X/rXjAlM3l90\nG+wcgTMQV+4CwBWMKBKsilo9y8Y90KS7A61Sw2PF4bBf7z1EyNSCNtNAyUJePLX1\ncwZVZAnYM2lS1xdC21OC4jqn6KK3GBC5Gp6qvJJk2iLYp1JTyJad2jXtixk1ldvP\nZ+F2VPPpokHdh9jP37czPMoJA/ZesjSUEp9PvhCksfkzzFZ7DU6WHbwqGfZRTUqk\nSu9hm2bof7hWyR88J1uIkOpZ2dPq254mlf9AhA0kV/HBrQueKzHFGQOoIeuZQhvV\nYASxgyqK/WOjMvn08jfslulKm4ic7ZBNnsubj3wR5tK5uf+s5pImLvutZyCyuoLN\nQMuNX5JFbBmh7W/rf7RyMsZU3aP6yQ+DE/tvhaw2JRBYeDl7MQKCAQEA3gotz2kg\nTRyDd1x2mB/CRn5ZPPrYODvoRQhS6nVkLUQrHrLSWNAvFIuyAkbo5BrRi5QZ1Z+C\nRZf87qwGO4kQ+S1LFljWYZzmogRCiLOXGNj8lnh/xw0TlJAKNmOfgXAdY0nCtmz6\nU52TqOEpFRa/cyprCFMiTXB/tN/IZ7VO5dBH6ZKffkflR7afYSLYUbAw2NnbRvHF\nomAbvE5aq0cwrgtFaKaEPZw9E2xwWpDCcD8SF1FJGSZnp29WdCR05qHkwN1coKZ3\nJ2bigwNpI6YhSHc3jZ4VEe5yVfaqD1RxHGjqWGQW3yz8pUH9BZuKSYyvoY7DnQdH\n+5A9PrHgQ+PP0QKCAQEA0RArxyhU0BsvUkQ7/w4pvpioonFWBPVqRn8rv0Srwknp\n4UDixDWIMuQk/D1dXcjROkghqh02LWC38VakZqM323TbDW5vRhDBASrz1bw+Xp/n\nlPD4TLLOiy6SaMpFDQhiRNXQ2lPwxS2i2BSAT6oSYNuxCsHZ82PSU5FCpviJAnrs\ntZ/SgzUaql3n/4SHH7rEsnlxQzF9y5cHj/8PN14o9IKtMXANEjs5WJhbd32pbPQm\ncJF0rmEjPX3PbX3WJp2R4MzAp5Pv+bXVfj6LOmiP+tLqKWp3+ceBpvPd+eM4l02H\nQpnHE8gi56msxIvm3LWix6jvFo+QfYk7ba8nzTp0/QKCAQEAmOFhUWIMv4tWaaTc\ncznKxkbQotAEeBOnhYCJtq1FYHWDSwvNESGmiPr2geLZD9X3WaeLci71v306xgrj\n77IcYbTx8l0Qnv0tP3i3ZvBgpNcic2hccm1qgev7XB+T/8d2NJrg2kKGyXPB65G8\ne6zB/UXDlGPJRpCjHaLHlcCcpleWbBhsgMJ397yiWHtpfjVWLLkz5dEqRvbtoeZB\nP5Uwy2UvUTL18oXU976+TV1Gw4pppmxtbEepLvvWBvnjE7l8i97enC6B9Ds+0v5S\nMh185SxQr82crFAFoXLI/O0jRHBoipu/s8KB4jdhQ68otCON+isWPNR6l5dk0/od\ndCEzQQKCAQEAt6yHab/rU7Kujo5YT6s3zbX9YkpEkrKyniEYZECGznl1u2rwUAXg\nFSYPwHSBVOYbvCKnQPfNI2z37lZ6tZnsdyhhU5mUtW/+wXHlLADoouXF5jsXSvtF\nL07JXrtmkx6sh2F6znY08Gc5zLGmUVdQMjyRfKv3OjiXDshuUJfGd6Fb2e4CWzgK\np2c9bmYW+S9zpIHBmpEevgGAqWgjDDfzr24nj2mscjoKFeY1ZfPHKGwQYZHJe3Lo\nLRwdY0rNHLwO7/uzvwbgLPkuCm4UkEpRRMKM67oYkiBPrkhO2z5f974reb31A1Iw\nKGwP19Y6C+qgit3GwIF9Jm2tAp6CT3JuWQKCAQAh8PLoc6bmxAcc/pQgDInrGsgr\nyriM/t1bRdAQrk40Fq1PVRGTexruB7uPo3CAjHAto5d/RPm9JCw94dYrjhovvoBP\n/eQECTZWP4OjoW/uf9rOrNxjpSwjazifHknxYVwFH4AX3NZFapOjjL/UiAvS0A86\nhce01C09bXBySNz/X6uq9EHXirjgGs/2fio2OUQRAT1qVIHyHXPzJVxpQGd7bcrQ\nbD74Ebhw3E2MzcqPs7XIV3q5tRYoRf0vKRbnfOBaH9E6aC5kvUNTO9B/X+coRXvM\nBck2bdtGKOe267e+8HE9iyoPq7lGSibwRp8ikJ9qDOupH2Lq84kxGkXdt3Li\n-----END RSA PRIVATE KEY-----\n"} 2026-02-21T20:12:57.465 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-21T20:12:57.696 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-21T20:12:57.696 INFO:teuthology.orchestra.run.trial013.stdout:Creating initial admin user... 2026-02-21T20:12:57.718 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:55] ENGINE Bus STARTING 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:55] ENGINE Serving on https://10.20.193.13:7150 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:55] ENGINE Client ('10.20.193.13', 41780) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:56] ENGINE Serving on http://10.20.193.13:8765 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: [21/Feb/2026:20:12:56] ENGINE Bus STARTED 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-21T20:12:57.719 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:57 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:12:58.122 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$3eF.9yyrmkZ/6k1HOknIwO/A5t44EQCejSD4SNFRd8V4RuVPlaMvu", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771704778, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-21T20:12:58.122 INFO:teuthology.orchestra.run.trial013.stdout:Fetching dashboard port number... 2026-02-21T20:12:58.344 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stdout 8443 2026-02-21T20:12:58.352 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-21T20:12:58.352 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout disabled 2026-02-21T20:12:58.359 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-21T20:12:58.359 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:58.359 INFO:teuthology.orchestra.run.trial013.stdout:firewalld.service is not enabled 2026-02-21T20:12:58.359 INFO:teuthology.orchestra.run.trial013.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-21T20:12:58.360 INFO:teuthology.orchestra.run.trial013.stdout:Ceph Dashboard is now available at: 2026-02-21T20:12:58.360 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.360 INFO:teuthology.orchestra.run.trial013.stdout: URL: https://trial013:8443/ 2026-02-21T20:12:58.360 INFO:teuthology.orchestra.run.trial013.stdout: User: admin 2026-02-21T20:12:58.361 INFO:teuthology.orchestra.run.trial013.stdout: Password: x419poc8yf 2026-02-21T20:12:58.361 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.361 INFO:teuthology.orchestra.run.trial013.stdout:Saving cluster configuration to /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config directory 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: mgrmap e12: trial013.ogreni(active, since 2s) 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:12:58.633 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:58 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/453144909' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-21T20:12:58.636 INFO:teuthology.orchestra.run.trial013.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-21T20:12:58.636 INFO:teuthology.orchestra.run.trial013.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-21T20:12:58.636 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.636 INFO:teuthology.orchestra.run.trial013.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout:Or, if you are only running a single cluster on this host: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: ceph telemetry on 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout:For more information see: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.637 INFO:teuthology.orchestra.run.trial013.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-21T20:12:58.638 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:12:58.638 INFO:teuthology.orchestra.run.trial013.stdout:Bootstrap complete. 2026-02-21T20:12:58.644 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout static 2026-02-21T20:12:58.649 INFO:teuthology.orchestra.run.trial013.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-21T20:12:58.649 INFO:teuthology.orchestra.run.trial013.stdout:systemctl: stdout inactive 2026-02-21T20:12:58.649 INFO:teuthology.orchestra.run.trial013.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-21T20:12:58.800 INFO:tasks.cephadm:Fetching config... 2026-02-21T20:12:58.800 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:58.801 DEBUG:teuthology.orchestra.run.trial013:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-21T20:12:58.817 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-21T20:12:58.817 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:58.817 DEBUG:teuthology.orchestra.run.trial013:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-21T20:12:58.874 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-21T20:12:58.874 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:58.874 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/keyring of=/dev/stdout 2026-02-21T20:12:58.940 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-21T20:12:58.940 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:12:58.940 DEBUG:teuthology.orchestra.run.trial013:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-21T20:12:58.996 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-21T20:12:58.996 DEBUG:teuthology.orchestra.run.trial013:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOR9U4IOtTpt/8q2UXAss8xWb1aMfTh/csnzf4qBXXPO ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-21T20:12:59.070 INFO:teuthology.orchestra.run.trial013.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOR9U4IOtTpt/8q2UXAss8xWb1aMfTh/csnzf4qBXXPO ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:59.081 DEBUG:teuthology.orchestra.run.trial109:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOR9U4IOtTpt/8q2UXAss8xWb1aMfTh/csnzf4qBXXPO ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-21T20:12:59.117 INFO:teuthology.orchestra.run.trial109.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOR9U4IOtTpt/8q2UXAss8xWb1aMfTh/csnzf4qBXXPO ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:12:59.126 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-21T20:12:59.239 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:12:59.493 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-21T20:12:59.493 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-21T20:12:59.611 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:12:59.716 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:59 trial013 ceph-mon[35520]: from='client.14182 -' 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-21T20:12:59.716 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:59 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1286840545' entity='client.admin' 2026-02-21T20:12:59.716 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:12:59 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/401503670' entity='client.admin' 2026-02-21T20:12:59.879 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial109 2026-02-21T20:12:59.879 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:12:59.879 DEBUG:teuthology.orchestra.run.trial109:> dd of=/etc/ceph/ceph.conf 2026-02-21T20:12:59.896 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:12:59.896 DEBUG:teuthology.orchestra.run.trial109:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:12:59.954 INFO:tasks.cephadm:Adding host trial109 to orchestrator... 2026-02-21T20:12:59.954 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch host add trial109 2026-02-21T20:13:00.074 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:00.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:00.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:00.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial109", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:00.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:00.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:00.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd/host:trial013", "name": "osd_memory_target"} : dispatch 2026-02-21T20:13:00.958 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:00.958 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:00.958 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:00 trial013 ceph-mon[35520]: Updating trial013:/etc/ceph/ceph.conf 2026-02-21T20:13:01.956 INFO:teuthology.orchestra.run.trial013.stdout:Added host 'trial109' with addr '10.20.193.109' 2026-02-21T20:13:02.044 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-21T20:13:02.257 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: Deploying cephadm binary to trial109 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: Updating trial013:/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:02.295 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:02.296 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:02.296 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial013", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:02.296 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial013", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-21T20:13:02.296 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:02.296 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: Deploying daemon ceph-exporter.trial013 on trial013 2026-02-21T20:13:02.296 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:02 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:02.472 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:02.472 INFO:teuthology.orchestra.run.trial013.stdout:[{"addr": "10.20.193.13", "hostname": "trial013", "labels": [], "status": ""}, {"addr": "10.20.193.109", "hostname": "trial109", "labels": [], "status": ""}] 2026-02-21T20:13:02.511 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key ls 2026-02-21T20:13:02.630 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout:[ 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/auth_debug", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/container_image", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_file", 2026-02-21T20:13:02.966 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_journald", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_stderr", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_ms", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-21T20:13:02.967 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_mon", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_ms", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_paxos", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_ms", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_osd", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:02.968 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/+global/public_network", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/+global/container_image", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/-global/container_image", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/", 2026-02-21T20:13:02.969 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/auth_debug", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/container_image", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_file", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_journald", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_stderr", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_allow_pool_delete", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_clock_drift_allowed", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_cluster_log_to_file", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_max_pg_per_osd", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_bug", 2026-02-21T20:13:02.970 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_old_message", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/public_network", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_mgr", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_ms", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_mon", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_ms", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_paxos", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_data_avail_warn", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:02.971 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/bdev_debug_aio", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_ms", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_osd", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_op_order", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_shutdown", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_profile", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_memory_target_autotune", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-21T20:13:02.972 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_max_interval", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/client_keyrings", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/config_checks", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013.devices.0", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/inventory", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.crash", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.grafana", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mgr", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mon", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.prometheus", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-21T20:13:02.973 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/accessdb_v2", 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/cluster/status", 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/crt", 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/key", 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/collection", 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/report_id", 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/salt" 2026-02-21T20:13:02.974 INFO:teuthology.orchestra.run.trial013.stdout:] 2026-02-21T20:13:03.025 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-21T20:13:03.145 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: Added host trial109 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: mgrmap e13: trial013.ogreni(active, since 6s) 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial013", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial013", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: Deploying daemon crash.trial013 on trial013 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/317564340' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.427 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:03 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:03.528 INFO:teuthology.orchestra.run.trial013.stdout:{"trial013": {"hostname": "trial013", "addr": "10.20.193.13", "labels": [], "status": ""}, "trial109": {"hostname": "trial109", "addr": "10.20.193.109", "labels": [], "status": ""}} 2026-02-21T20:13:03.528 INFO:tasks.cephadm:Host add for trial109 incomplete Host in host ls: True Host got config-key entry: False Host in cephadm inventory config-key entry: True 2026-02-21T20:13:04.288 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:04 trial013 ceph-mon[35520]: Deploying daemon node-exporter.trial013 on trial013 2026-02-21T20:13:04.289 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:04 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3351739133' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:05.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:05.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:05.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:05.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:05.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:05.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:05.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:05 trial013 ceph-mon[35520]: Deploying daemon alertmanager.trial013 on trial013 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:06.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:06 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:08.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:08.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:08.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:08.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:08.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-21T20:13:08.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-21T20:13:08.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:08.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:08 trial013 ceph-mon[35520]: Deploying daemon grafana.trial013 on trial013 2026-02-21T20:13:08.529 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-21T20:13:08.649 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:08.872 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:08.872 INFO:teuthology.orchestra.run.trial013.stdout:[{"addr": "10.20.193.13", "hostname": "trial013", "labels": [], "status": ""}, {"addr": "10.20.193.109", "hostname": "trial109", "labels": [], "status": ""}] 2026-02-21T20:13:08.908 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key ls 2026-02-21T20:13:09.028 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:09.297 INFO:teuthology.orchestra.run.trial013.stdout:[ 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/10/", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/10/+mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/auth_debug", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/container_image", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-21T20:13:09.298 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_file", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_journald", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_stderr", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:09.299 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_ms", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_mon", 2026-02-21T20:13:09.300 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_ms", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_paxos", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_ms", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_osd", 2026-02-21T20:13:09.301 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-21T20:13:09.302 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/+global/public_network", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/", 2026-02-21T20:13:09.303 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/+global/container_image", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/-global/container_image", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/auth_debug", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/container_image", 2026-02-21T20:13:09.304 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_file", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_journald", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_stderr", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_allow_pool_delete", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_clock_drift_allowed", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_cluster_log_to_file", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_max_pg_per_osd", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:09.305 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_bug", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_old_message", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/public_network", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_mgr", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_ms", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:09.306 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_mon", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_ms", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_paxos", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_data_avail_warn", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:09.307 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/bdev_debug_aio", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_ms", 2026-02-21T20:13:09.308 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_osd", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_op_order", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_shutdown", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_profile", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_memory_target_autotune", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue", 2026-02-21T20:13:09.309 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_max_interval", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_alertmanager_cert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_grafana_cert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_alertmanager_key", 2026-02-21T20:13:09.310 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_grafana_key", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/client_keyrings", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/config_checks", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013.devices.0", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/inventory", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/prometheus/web_password", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/prometheus/web_user", 2026-02-21T20:13:09.311 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.crash", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.grafana", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mgr", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mon", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.prometheus", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/accessdb_v2", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/cluster/status", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/crt", 2026-02-21T20:13:09.312 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/key", 2026-02-21T20:13:09.313 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/progress/completed", 2026-02-21T20:13:09.313 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/collection", 2026-02-21T20:13:09.313 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/report_id", 2026-02-21T20:13:09.313 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/salt" 2026-02-21T20:13:09.313 INFO:teuthology.orchestra.run.trial013.stdout:] 2026-02-21T20:13:09.336 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-21T20:13:09.456 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1804595340' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:09.457 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:09.766 INFO:teuthology.orchestra.run.trial013.stdout:{"trial013": {"hostname": "trial013", "addr": "10.20.193.13", "labels": [], "status": ""}, "trial109": {"hostname": "trial109", "addr": "10.20.193.109", "labels": [], "status": ""}} 2026-02-21T20:13:09.766 INFO:tasks.cephadm:Host add for trial109 incomplete Host in host ls: True Host got config-key entry: False Host in cephadm inventory config-key entry: True 2026-02-21T20:13:10.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:10 trial013 ceph-mon[35520]: from='client.14201 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:10.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:10 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2037484445' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:11.908 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:11 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:13.666 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:13 trial013 ceph-mon[35520]: Deploying daemon prometheus.trial013 on trial013 2026-02-21T20:13:14.768 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-21T20:13:14.887 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:15.200 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:15.200 INFO:teuthology.orchestra.run.trial013.stdout:[{"addr": "10.20.193.13", "hostname": "trial013", "labels": [], "status": ""}, {"addr": "10.20.193.109", "hostname": "trial109", "labels": [], "status": ""}] 2026-02-21T20:13:15.240 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key ls 2026-02-21T20:13:15.364 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:15.637 INFO:teuthology.orchestra.run.trial013.stdout:[ 2026-02-21T20:13:15.637 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/10/", 2026-02-21T20:13:15.637 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/10/+mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/auth_debug", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/container_image", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_file", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_journald", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_stderr", 2026-02-21T20:13:15.638 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:15.639 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_ms", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_mon", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_ms", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_paxos", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:15.640 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_ms", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_osd", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:15.641 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-21T20:13:15.642 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/+global/public_network", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/+global/container_image", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/-global/container_image", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/", 2026-02-21T20:13:15.643 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/auth_debug", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/container_image", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_file", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_journald", 2026-02-21T20:13:15.644 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_stderr", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_allow_pool_delete", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_clock_drift_allowed", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_cluster_log_to_file", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_max_pg_per_osd", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_bug", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_old_message", 2026-02-21T20:13:15.645 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/public_network", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_mgr", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_ms", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:15.646 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_mon", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_ms", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_paxos", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_data_avail_warn", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:15.647 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/bdev_debug_aio", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_ms", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_osd", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_op_order", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_shutdown", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_profile", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:15.648 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_memory_target_autotune", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_max_interval", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/alertmanager/web_password", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/alertmanager/web_user", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_alertmanager_cert", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-21T20:13:15.649 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_grafana_cert", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_prometheus_cert", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_alertmanager_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_grafana_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_prometheus_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/client_keyrings", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/config_checks", 2026-02-21T20:13:15.650 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013.devices.0", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/inventory", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/prometheus/web_password", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/prometheus/web_user", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.crash", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.grafana", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mgr", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mon", 2026-02-21T20:13:15.651 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.prometheus", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/accessdb_v2", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/cluster/status", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/crt", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/key", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/progress/completed", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/collection", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/report_id", 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/salt" 2026-02-21T20:13:15.652 INFO:teuthology.orchestra.run.trial013.stdout:] 2026-02-21T20:13:15.673 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-21T20:13:15.790 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:16.087 INFO:teuthology.orchestra.run.trial013.stdout:{"trial013": {"hostname": "trial013", "addr": "10.20.193.13", "labels": [], "status": ""}, "trial109": {"hostname": "trial109", "addr": "10.20.193.109", "labels": [], "status": ""}} 2026-02-21T20:13:16.087 INFO:tasks.cephadm:Host add for trial109 incomplete Host in host ls: True Host got config-key entry: False Host in cephadm inventory config-key entry: True 2026-02-21T20:13:16.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='client.14207 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4104166168' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:16.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:16 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2319844272' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:17.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:17 trial013 ceph-mon[35520]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-21T20:13:17.707 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:17 trial013 ceph-mon[35520]: mgrmap e14: trial013.ogreni(active, since 20s) 2026-02-21T20:13:19.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: Active manager daemon trial013.ogreni restarted 2026-02-21T20:13:19.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: Activating manager daemon trial013.ogreni 2026-02-21T20:13:19.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: osdmap e4: 0 total, 0 up, 0 in 2026-02-21T20:13:19.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: mgrmap e15: trial013.ogreni(active, starting, since 0.00254304s) 2026-02-21T20:13:19.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:19.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:13:19.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:13:19.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:13:19.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:13:19.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:19 trial013 ceph-mon[35520]: Manager daemon trial013.ogreni is now available 2026-02-21T20:13:20.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:20.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:20.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:13:20.457 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-21T20:13:20.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:13:20.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:13:20.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:20.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:20.458 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:20 trial013 ceph-mon[35520]: mgrmap e16: trial013.ogreni(active, since 1.00449s) 2026-02-21T20:13:21.089 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-21T20:13:21.208 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:21.421 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:21.421 INFO:teuthology.orchestra.run.trial013.stdout:[{"addr": "10.20.193.13", "hostname": "trial013", "labels": [], "status": ""}, {"addr": "10.20.193.109", "hostname": "trial109", "labels": [], "status": ""}] 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: [21/Feb/2026:20:13:19] ENGINE Bus STARTING 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: [21/Feb/2026:20:13:19] ENGINE Serving on https://10.20.193.13:7150 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: [21/Feb/2026:20:13:19] ENGINE Client ('10.20.193.13', 45918) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: [21/Feb/2026:20:13:19] ENGINE Serving on http://10.20.193.13:8765 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: [21/Feb/2026:20:13:19] ENGINE Bus STARTED 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:21.422 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:21.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:21.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:21.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd/host:trial013", "name": "osd_memory_target"} : dispatch 2026-02-21T20:13:21.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:21 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:21.479 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key ls 2026-02-21T20:13:21.597 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:21.883 INFO:teuthology.orchestra.run.trial013.stdout:[ 2026-02-21T20:13:21.883 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/10/", 2026-02-21T20:13:21.883 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/10/+mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-21T20:13:21.883 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/auth_debug", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/container_image", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_file", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_journald", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/log_to_stderr", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-21T20:13:21.884 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:21.885 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/debug_ms", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_mon", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_ms", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/debug_paxos", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:21.886 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_ms", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/debug_osd", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-21T20:13:21.887 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-21T20:13:21.888 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/3/+global/public_network", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/+global/container_image", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/6/-global/container_image", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/", 2026-02-21T20:13:21.889 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/auth_debug", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/container_image", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_file", 2026-02-21T20:13:21.890 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_journald", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/log_to_stderr", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_allow_pool_delete", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_clock_drift_allowed", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_cluster_log_to_file", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_max_pg_per_osd", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_bug", 2026-02-21T20:13:21.891 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/ms_die_on_old_message", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/global/public_network", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_mgr", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/debug_ms", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-21T20:13:21.892 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_mon", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_ms", 2026-02-21T20:13:21.893 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/debug_paxos", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_data_avail_warn", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/bdev_debug_aio", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_ms", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/debug_osd", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-21T20:13:21.894 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_op_order", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_shutdown", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_profile", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_memory_target_autotune", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-21T20:13:21.895 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_scrub_max_interval", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/alertmanager/web_password", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/alertmanager/web_user", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_alertmanager_cert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_grafana_cert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_prometheus_cert", 2026-02-21T20:13:21.896 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_alertmanager_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_grafana_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_prometheus_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/client_keyrings", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/config_checks", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial013.devices.0", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/host.trial109", 2026-02-21T20:13:21.897 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/inventory", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/prometheus/web_password", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/prometheus/web_user", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.crash", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.grafana", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mgr", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.mon", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/spec.prometheus", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-21T20:13:21.898 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/accessdb_v2", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/cluster/status", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/crt", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/dashboard/key", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/progress/completed", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/prometheus/health_history", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/collection", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/report_id", 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout: "mgr/telemetry/salt" 2026-02-21T20:13:21.899 INFO:teuthology.orchestra.run.trial013.stdout:] 2026-02-21T20:13:21.938 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-21T20:13:22.053 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:22.361 INFO:teuthology.orchestra.run.trial013.stdout:{"trial013": {"hostname": "trial013", "addr": "10.20.193.13", "labels": [], "status": ""}, "trial109": {"hostname": "trial109", "addr": "10.20.193.109", "labels": [], "status": ""}} 2026-02-21T20:13:22.362 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-21T20:13:22.362 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd crush tunables default 2026-02-21T20:13:22.477 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='client.14221 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: mgrmap e17: trial013.ogreni(active, since 2s) 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3347264511' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd/host:trial109", "name": "osd_memory_target"} : dispatch 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial013:/etc/ceph/ceph.conf 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial109:/etc/ceph/ceph.conf 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial109:/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial013:/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: Updating trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1943799143' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.956 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:22.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial109", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:22.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial109", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-21T20:13:22.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:22.957 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:22 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/739053032' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-21T20:13:23.417 INFO:teuthology.orchestra.run.trial013.stderr:adjusted tunables profile to default 2026-02-21T20:13:23.458 INFO:tasks.cephadm:Adding mon.trial013 on trial013 2026-02-21T20:13:23.458 INFO:tasks.cephadm:Adding mon.trial109 on trial109 2026-02-21T20:13:23.458 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch apply mon '2;trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109' 2026-02-21T20:13:23.614 INFO:teuthology.orchestra.run.trial109.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:23.849 INFO:teuthology.orchestra.run.trial109.stdout:Scheduled mon update... 2026-02-21T20:13:23.907 DEBUG:teuthology.orchestra.run.trial109:mon.trial109> sudo journalctl -f -n 0 -u ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial109.service 2026-02-21T20:13:23.909 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-21T20:13:23.910 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph mon dump -f json 2026-02-21T20:13:24.124 INFO:teuthology.orchestra.run.trial109.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:24.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: Deploying daemon ceph-exporter.trial109 on trial109 2026-02-21T20:13:24.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/739053032' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-21T20:13:24.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: osdmap e5: 0 total, 0 up, 0 in 2026-02-21T20:13:24.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:24.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:24.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:24.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:24.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial109", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:24.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial109", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-21T20:13:24.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:24.388 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:13:24.388 INFO:teuthology.orchestra.run.trial109.stdout:{"epoch":1,"fsid":"a0f5aa36-0f61-11f1-ad6d-d404e6e7d460","modified":"2026-02-21T20:12:33.392148Z","created":"2026-02-21T20:12:33.392148Z","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":"trial013","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:3300","nonce":0},{"type":"v1","addr":"10.20.193.13:6789","nonce":0}]},"addr":"10.20.193.13:6789/0","public_addr":"10.20.193.13:6789/0","priority":0,"weight":0,"time_added":"2026-02-21T20:12:33:392161+0000","crush_location":[]}],"quorum":[0]} 2026-02-21T20:13:24.389 INFO:teuthology.orchestra.run.trial109.stderr:dumped monmap epoch 1 2026-02-21T20:13:25.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: Deploying daemon crash.trial109 on trial109 2026-02-21T20:13:25.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='client.14230 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:25.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: Saving service mon spec with placement trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109;count:2 2026-02-21T20:13:25.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:25.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:25.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:25.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:25.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:25.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: Deploying daemon node-exporter.trial109 on trial109 2026-02-21T20:13:25.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:25.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:24 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/3464494387' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-21T20:13:25.430 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-21T20:13:25.431 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph mon dump -f json 2026-02-21T20:13:25.558 INFO:teuthology.orchestra.run.trial109.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:25.827 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:13:25.827 INFO:teuthology.orchestra.run.trial109.stdout:{"epoch":1,"fsid":"a0f5aa36-0f61-11f1-ad6d-d404e6e7d460","modified":"2026-02-21T20:12:33.392148Z","created":"2026-02-21T20:12:33.392148Z","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":"trial013","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:3300","nonce":0},{"type":"v1","addr":"10.20.193.13:6789","nonce":0}]},"addr":"10.20.193.13:6789/0","public_addr":"10.20.193.13:6789/0","priority":0,"weight":0,"time_added":"2026-02-21T20:12:33:392161+0000","crush_location":[]}],"quorum":[0]} 2026-02-21T20:13:25.827 INFO:teuthology.orchestra.run.trial109.stderr:dumped monmap epoch 1 2026-02-21T20:13:26.881 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-21T20:13:26.882 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph mon dump -f json 2026-02-21T20:13:26.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial109.bjivcz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.trial109.bjivcz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr services"} : dispatch 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: Deploying daemon mgr.trial109.bjivcz on trial109 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/1015441332' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-21T20:13:26.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-21T20:13:26.955 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:26.955 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:26 trial013 ceph-mon[35520]: Deploying daemon mon.trial109 on trial109 2026-02-21T20:13:27.095 INFO:teuthology.orchestra.run.trial109.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial109/config 2026-02-21T20:13:27.115 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 systemd[1]: Starting Ceph mon.trial109 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460... 2026-02-21T20:13:27.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 podman[40732]: 2026-02-21 20:13:27.113961785 +0000 UTC m=+0.017774903 container create 82896cfcc8ec1004d8ddc28f8a19cde9c3c6771ebaa9bd46c34688dc140c96c2 (image=quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial109, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260209, CEPH_REF=wip-adk3-testing-2026-02-12-2007, org.label-schema.schema-version=1.0, io.buildah.version=1.41.3, OSD_FLAVOR=default, org.label-schema.license=GPLv2, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 podman[40732]: 2026-02-21 20:13:27.145197388 +0000 UTC m=+0.049010446 container init 82896cfcc8ec1004d8ddc28f8a19cde9c3c6771ebaa9bd46c34688dc140c96c2 (image=quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial109, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, CEPH_REF=wip-adk3-testing-2026-02-12-2007, io.buildah.version=1.41.3, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260209, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2) 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 podman[40732]: 2026-02-21 20:13:27.147549973 +0000 UTC m=+0.051363021 container start 82896cfcc8ec1004d8ddc28f8a19cde9c3c6771ebaa9bd46c34688dc140c96c2 (image=quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial109, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.label-schema.build-date=20260209, CEPH_REF=wip-adk3-testing-2026-02-12-2007, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 bash[40732]: 82896cfcc8ec1004d8ddc28f8a19cde9c3c6771ebaa9bd46c34688dc140c96c2 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 podman[40732]: 2026-02-21 20:13:27.10693637 +0000 UTC m=+0.010749418 image pull 9a39d96ac7588d9bdfc94bfeb23c2335d2ff0fb10f3ba87e96eaf72ad2bd5cd2 quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 systemd[1]: Started Ceph mon.trial109 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460. 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: set uid:gid to 167:167 (ceph:ceph) 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: ceph version 20.3.0-5291-g042df16c (042df16cd9ee8a8df553b188fef8a8c4a9e7ab01) tentacle (dev - RelWithDebInfo), process ceph-mon, pid 2 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: pidfile_write: ignore empty --pid-file 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: load: jerasure load: lrc 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: RocksDB version: 7.9.2 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Git sha 0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Compile date 2026-02-13 08:53:20 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: DB SUMMARY 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: DB Session ID: 0137XMRPWN1SFLJ02UD8 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: CURRENT file: CURRENT 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: IDENTITY file: IDENTITY 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: SST files in /var/lib/ceph/mon/ceph-trial109/store.db dir, Total Num: 0, files: 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial109/store.db: 000004.log size: 519 ; 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.error_if_exists: 0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.create_if_missing: 0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.paranoid_checks: 1 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.env: 0xed5d60 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.fs: PosixFileSystem 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.info_log: 0x1acd1c0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_file_opening_threads: 16 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.statistics: (nil) 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.use_fsync: 0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_log_file_size: 0 2026-02-21T20:13:27.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.keep_log_file_num: 1000 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.recycle_log_file_num: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.allow_fallocate: 1 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.allow_mmap_reads: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.allow_mmap_writes: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.use_direct_reads: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.create_missing_column_families: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.db_log_dir: 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.wal_dir: 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.advise_random_on_open: 1 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.db_write_buffer_size: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.write_buffer_manager: 0x1ac8140 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.rate_limiter: (nil) 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.wal_recovery_mode: 2 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.enable_thread_tracking: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.enable_pipelined_write: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.unordered_write: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.row_cache: None 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.wal_filter: None 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.allow_ingest_behind: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.two_write_queues: 0 2026-02-21T20:13:27.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.manual_wal_flush: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.wal_compression: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.atomic_flush: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.log_readahead_size: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.best_efforts_recovery: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.allow_data_in_errors: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.db_host_id: __hostname__ 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_background_jobs: 2 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_background_compactions: -1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_subcompactions: 1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_total_wal_size: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_open_files: -1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bytes_per_sync: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_readahead_size: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_background_flushes: -1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Compression algorithms supported: 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kZSTD supported: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kXpressCompression supported: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kBZip2Compression supported: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kLZ4Compression supported: 1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kZlibCompression supported: 1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kLZ4HCCompression supported: 1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: kSnappyCompression supported: 1 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-21T20:13:27.539 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial109/store.db/MANIFEST-000005 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.merge_operator: 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_filter: None 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_filter_factory: None 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.sst_partitioner_factory: None 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x1acd900) 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: cache_index_and_filter_blocks: 1 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: pin_top_level_index_and_filter: 1 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: index_type: 0 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: data_block_index_type: 0 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: index_shortening: 1 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: checksum: 4 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: no_block_cache: 0 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_cache: 0x1a9ba50 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_cache_name: BinnedLRUCache 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_cache_options: 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: capacity : 536870912 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: num_shard_bits : 4 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: strict_capacity_limit : 0 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: high_pri_pool_ratio: 0.000 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_cache_compressed: (nil) 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: persistent_cache: (nil) 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_size: 4096 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_size_deviation: 10 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_restart_interval: 16 2026-02-21T20:13:27.540 INFO:journalctl@ceph.mon.trial109.trial109.stdout: index_block_restart_interval: 1 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: metadata_block_size: 4096 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: partition_filters: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: use_delta_encoding: 1 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: filter_policy: bloomfilter 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: whole_key_filtering: 1 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: verify_compression: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: read_amp_bytes_per_bit: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: format_version: 5 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: enable_index_compression: 1 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: block_align: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: max_auto_readahead_size: 262144 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: prepopulate_block_cache: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: initial_auto_readahead_size: 8192 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout: num_file_reads_for_auto_readahead: 2 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.write_buffer_size: 33554432 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_write_buffer_number: 2 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression: NoCompression 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression: Disabled 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.prefix_extractor: nullptr 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.num_levels: 7 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-21T20:13:27.541 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.level: 32767 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.strategy: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.enabled: false 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.target_file_size_base: 67108864 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.arena_block_size: 1048576 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.disable_auto_compactions: 0 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-21T20:13:27.542 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.inplace_update_support: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.bloom_locality: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.max_successive_merges: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.paranoid_file_checks: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.force_consistency_checks: 1 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.report_bg_io_stats: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.ttl: 2592000 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.enable_blob_files: false 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.min_blob_size: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.blob_file_size: 268435456 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.blob_file_starting_level: 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial109/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: acb43b26-f993-4e56-8426-3c6affecf262 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771704807164354, "job": 1, "event": "recovery_started", "wal_files": [4]} 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771704807164722, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1655, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 531, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 409, "raw_average_value_size": 81, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771704807, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "acb43b26-f993-4e56-8426-3c6affecf262", "db_session_id": "0137XMRPWN1SFLJ02UD8", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771704807164788, "job": 1, "event": "recovery_finished"} 2026-02-21T20:13:27.543 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial109/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x1ae8e00 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: DB pointer 0x28da000 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109 does not exist in monmap, will attempt to join an existing cluster 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: ** DB Stats ** 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.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-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.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-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: ** Compaction Stats [default] ** 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.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-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: L0 1/0 1.62 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Sum 1/0 1.62 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: ** Compaction Stats [default] ** 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.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-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Cumulative compaction: 0.00 GB write, 0.73 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Interval compaction: 0.00 GB write, 0.73 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.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-21T20:13:27.544 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Block cache BinnedLRUCache@0x1a9ba50#2 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: using public_addr v2:10.20.193.109:0/0 -> [v2:10.20.193.109:3300/0,v1:10.20.193.109:6789/0] 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: starting mon.trial109 rank -1 at public addrs [v2:10.20.193.109:3300/0,v1:10.20.193.109:6789/0] at bind addrs [v2:10.20.193.109:3300/0,v1:10.20.193.109:6789/0] mon_data /var/lib/ceph/mon/ceph-trial109 fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(???) e0 preinit fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).mds e1 new map 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).mds e1 print_map 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: e1 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: btime 2026-02-21T20:12:34:401450+0000 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.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-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: legacy client fscid: -1 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout: No filesystems configured 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mkfs a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial013 is new leader, mons trial013 in quorum (ranks 0) 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial013 is new leader, mons trial013 in quorum (ranks 0) 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: monmap epoch 1 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: last_changed 2026-02-21T20:12:33.392148+0000 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: created 2026-02-21T20:12:33.392148+0000 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: min_mon_release 20 (tentacle) 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: election_strategy: 1 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: 0: [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] mon.trial013 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: fsmap 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: osdmap e1: 0 total, 0 up, 0 in 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e1: no daemons active 2026-02-21T20:13:27.545 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/999594154' entity='client.admin' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/91412366' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3901294576' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Activating manager daemon trial013.ogreni 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e2: trial013.ogreni(active, starting, since 0.00226097s) 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Manager daemon trial013.ogreni is now available 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14100 10.20.193.13:0/2640375629' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e3: trial013.ogreni(active, since 1.0044s) 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2115661441' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e4: trial013.ogreni(active, since 2s) 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1739424429' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/508480211' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/508480211' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e5: trial013.ogreni(active, since 3s) 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2586222532' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Active manager daemon trial013.ogreni restarted 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Activating manager daemon trial013.ogreni 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: osdmap e2: 0 total, 0 up, 0 in 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e6: trial013.ogreni(active, starting, since 0.00244752s) 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Manager daemon trial013.ogreni is now available 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Found migration_current of "None". Setting to last migration. 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.546 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e7: trial013.ogreni(active, since 1.00377s) 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4128728827' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:45] ENGINE Bus STARTING 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:45] ENGINE Serving on https://10.20.193.13:7150 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:45] ENGINE Client ('10.20.193.13', 42346) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:46] ENGINE Serving on http://10.20.193.13:8765 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:46] ENGINE Bus STARTED 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4128728827' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e8: trial013.ogreni(active, since 2s) 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Generating ssh key... 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial013", "addr": "10.20.193.13", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying cephadm binary to trial013 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Added host trial013 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.547 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service mon spec with placement count:5 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service mgr spec with placement count:2 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service crash spec with placement * 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service ceph-exporter spec with placement * 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service prometheus spec with placement count:1 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service grafana spec with placement count:1 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service node-exporter spec with placement * 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service alertmanager spec with placement count:1 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14118 10.20.193.13:0/315308620' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3042530703' entity='client.admin' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2274654236' entity='client.admin' 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1124393852' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1124393852' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e9: trial013.ogreni(active, since 8s) 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/993082185' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Active manager daemon trial013.ogreni restarted 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Activating manager daemon trial013.ogreni 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: osdmap e3: 0 total, 0 up, 0 in 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e10: trial013.ogreni(active, starting, since 0.00281581s) 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:13:27.548 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Manager daemon trial013.ogreni is now available 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e11: trial013.ogreni(active, since 1.00527s) 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:55] ENGINE Bus STARTING 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:55] ENGINE Serving on https://10.20.193.13:7150 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:55] ENGINE Client ('10.20.193.13', 41780) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:56] ENGINE Serving on http://10.20.193.13:8765 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:12:56] ENGINE Bus STARTED 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e12: trial013.ogreni(active, since 2s) 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/453144909' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14182 -' 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-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1286840545' entity='client.admin' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/401503670' entity='client.admin' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial109", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd/host:trial013", "name": "osd_memory_target"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/etc/ceph/ceph.conf 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying cephadm binary to trial109 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:27.549 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial013", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial013", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon ceph-exporter.trial013 on trial013 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Added host trial109 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e13: trial013.ogreni(active, since 6s) 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial013", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial013", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon crash.trial013 on trial013 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/317564340' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon node-exporter.trial013 on trial013 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3351739133' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.550 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon alertmanager.trial013 on trial013 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon grafana.trial013 on trial013 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1804595340' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:27.551 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14201 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2037484445' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon prometheus.trial013 on trial013 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14207 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4104166168' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2319844272' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14164 10.20.193.13:0/198510304' entity='mgr.trial013.ogreni' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e14: trial013.ogreni(active, since 20s) 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Active manager daemon trial013.ogreni restarted 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Activating manager daemon trial013.ogreni 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: osdmap e4: 0 total, 0 up, 0 in 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e15: trial013.ogreni(active, starting, since 0.00254304s) 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial013.ogreni", "id": "trial013.ogreni"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mds metadata"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Manager daemon trial013.ogreni is now available 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/mirror_snapshot_schedule"} : dispatch 2026-02-21T20:13:27.552 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial013.ogreni/trash_purge_schedule"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e16: trial013.ogreni(active, since 1.00449s) 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:13:19] ENGINE Bus STARTING 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:13:19] ENGINE Serving on https://10.20.193.13:7150 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:13:19] ENGINE Client ('10.20.193.13', 45918) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:13:19] ENGINE Serving on http://10.20.193.13:8765 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: [21/Feb/2026:20:13:19] ENGINE Bus STARTED 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd/host:trial013", "name": "osd_memory_target"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14221 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mgrmap e17: trial013.ogreni(active, since 2s) 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3347264511' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd/host:trial109", "name": "osd_memory_target"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/etc/ceph/ceph.conf 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial109:/etc/ceph/ceph.conf 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial109:/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Updating trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1943799143' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.553 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial109", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial109", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/739053032' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon ceph-exporter.trial109 on trial109 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/739053032' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: osdmap e5: 0 total, 0 up, 0 in 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial109", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial109", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon crash.trial109 on trial109 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.14230 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Saving service mon spec with placement trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109;count:2 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon node-exporter.trial109 on trial109 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/3464494387' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial109.bjivcz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.trial109.bjivcz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr services"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon mgr.trial109.bjivcz on trial109 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/1015441332' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-21T20:13:27.554 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-21T20:13:27.555 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:27.555 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: Deploying daemon mon.trial109 on trial109 2026-02-21T20:13:27.555 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:27 trial109 ceph-mon[40784]: mon.trial109@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: mon.trial013 calling monitor election 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial109.bjivcz/crt"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: mon.trial109 calling monitor election 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: mon.trial013 is new leader, mons trial013,trial109 in quorum (ranks 0,1) 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: monmap epoch 2 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:32.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: last_changed 2026-02-21T20:13:27.190680+0000 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: created 2026-02-21T20:12:33.392148+0000 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: min_mon_release 20 (tentacle) 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: election_strategy: 1 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: 0: [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] mon.trial013 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: 1: [v2:10.20.193.109:3300/0,v1:10.20.193.109:6789/0] mon.trial109 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: fsmap 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: osdmap e5: 0 total, 0 up, 0 in 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: mgrmap e17: trial013.ogreni(active, since 13s) 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: overall HEALTH_OK 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: Standby manager daemon trial109.bjivcz started 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial109.bjivcz/key"} : dispatch 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: mon.trial013 calling monitor election 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial109.bjivcz/crt"} : dispatch 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: mon.trial109 calling monitor election 2026-02-21T20:13:32.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: mon.trial013 is new leader, mons trial013,trial109 in quorum (ranks 0,1) 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: monmap epoch 2 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: last_changed 2026-02-21T20:13:27.190680+0000 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: created 2026-02-21T20:12:33.392148+0000 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: min_mon_release 20 (tentacle) 2026-02-21T20:13:32.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: election_strategy: 1 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: 0: [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] mon.trial013 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: 1: [v2:10.20.193.109:3300/0,v1:10.20.193.109:6789/0] mon.trial109 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: fsmap 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: osdmap e5: 0 total, 0 up, 0 in 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: mgrmap e17: trial013.ogreni(active, since 13s) 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: overall HEALTH_OK 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: Standby manager daemon trial109.bjivcz started 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial109.bjivcz/key"} : dispatch 2026-02-21T20:13:32.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.? 10.20.193.109:0/2586032509' entity='mgr.trial109.bjivcz' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-21T20:13:32.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:32.538 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:33.358 INFO:teuthology.orchestra.run.trial109.stdout: 2026-02-21T20:13:33.358 INFO:teuthology.orchestra.run.trial109.stdout:{"epoch":2,"fsid":"a0f5aa36-0f61-11f1-ad6d-d404e6e7d460","modified":"2026-02-21T20:13:27.190680Z","created":"2026-02-21T20:12:33.392148Z","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":"trial013","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:3300","nonce":0},{"type":"v1","addr":"10.20.193.13:6789","nonce":0}]},"addr":"10.20.193.13:6789/0","public_addr":"10.20.193.13:6789/0","priority":0,"weight":0,"time_added":"2026-02-21T20:12:33:392161+0000","crush_location":[]},{"rank":1,"name":"trial109","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:3300","nonce":0},{"type":"v1","addr":"10.20.193.109:6789","nonce":0}]},"addr":"10.20.193.109:6789/0","public_addr":"10.20.193.109:6789/0","priority":0,"weight":0,"time_added":"2026-02-21T20:13:27:190679+0000","crush_location":[]}],"quorum":[0,1]} 2026-02-21T20:13:33.359 INFO:teuthology.orchestra.run.trial109.stderr:dumped monmap epoch 2 2026-02-21T20:13:33.397 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-21T20:13:33.398 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-21T20:13:33.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: mgrmap e18: trial013.ogreni(active, since 13s), standbys: trial109.bjivcz 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial109.bjivcz", "id": "trial109.bjivcz"} : dispatch 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-21T20:13:33.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-21T20:13:33.425 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:33.425 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:33.520 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:33.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: mgrmap e18: trial013.ogreni(active, since 13s), standbys: trial109.bjivcz 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr metadata", "who": "trial109.bjivcz", "id": "trial109.bjivcz"} : dispatch 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:33.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-21T20:13:33.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-21T20:13:33.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:33.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:13:33.740 INFO:teuthology.orchestra.run.trial013.stdout:# minimal ceph.conf for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:33.740 INFO:teuthology.orchestra.run.trial013.stdout:[global] 2026-02-21T20:13:33.740 INFO:teuthology.orchestra.run.trial013.stdout: fsid = a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:13:33.740 INFO:teuthology.orchestra.run.trial013.stdout: mon_host = [v2:10.20.193.13:3300/0,v1:10.20.193.13:6789/0] [v2:10.20.193.109:3300/0,v1:10.20.193.109:6789/0] 2026-02-21T20:13:33.781 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-21T20:13:33.781 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:13:33.781 DEBUG:teuthology.orchestra.run.trial013:> sudo dd of=/etc/ceph/ceph.conf 2026-02-21T20:13:33.850 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:13:33.850 DEBUG:teuthology.orchestra.run.trial013:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:33.916 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:13:33.917 DEBUG:teuthology.orchestra.run.trial109:> sudo dd of=/etc/ceph/ceph.conf 2026-02-21T20:13:33.945 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:13:33.945 DEBUG:teuthology.orchestra.run.trial109:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-21T20:13:34.010 DEBUG:tasks.cephadm:set 0 configs 2026-02-21T20:13:34.010 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config dump 2026-02-21T20:13:34.134 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Updating trial013:/etc/ceph/ceph.conf 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Updating trial109:/etc/ceph/ceph.conf 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Updating trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Reconfiguring mon.trial013 (unknown last config time)... 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Reconfiguring daemon mon.trial013 on trial013 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Reconfiguring mgr.trial013.ogreni (unknown last config time)... 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial013.ogreni", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr services"} : dispatch 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: Reconfiguring daemon mgr.trial013.ogreni on trial013 2026-02-21T20:13:34.269 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/3331483250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial013", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/739986319' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial013", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.270 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global dev auth_debug true 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:f8ee40b2ba9742ca04dd2bb1890c50110b2ab659164861139fc9d9eeed387721 * 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global dev debug_asserts_on_shutdown true 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global basic log_to_file true 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global basic log_to_journald false 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global basic log_to_stderr false 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_allow_pool_delete true 2026-02-21T20:13:34.345 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_cluster_log_to_file true 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global dev ms_die_on_bug true 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global dev ms_die_on_old_message true 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.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-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced debug_mon 20/20 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced debug_ms 1/1 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced debug_paxos 20/20 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_data_avail_warn 5 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-21T20:13:34.346 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced debug_mgr 20/20 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced debug_ms 1/1 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mgr/cephadm/migration_current 8 * 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mgr/dashboard/GRAFANA_API_SSL_VERIFY false * 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev bdev_debug_aio true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced debug_ms 1/1 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced debug_osd 20/20 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_misdirected_ops true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_op_order true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_shutdown true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-21T20:13:34.347 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_memory_target_autotune true 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_op_queue debug_random * 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_recover_clone_overlap true 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-21T20:13:34.348 INFO:teuthology.orchestra.run.trial013.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-21T20:13:34.383 INFO:tasks.cephadm:Deploying OSDs... 2026-02-21T20:13:34.384 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:13:34.384 DEBUG:teuthology.orchestra.run.trial013:> dd if=/scratch_devs of=/dev/stdout 2026-02-21T20:13:34.400 DEBUG:teuthology.misc:devs=['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-21T20:13:34.401 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/nvme3n1 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/nvme3n1 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1325 Links: 1 Device type: 103,6 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:13:00.463769776 +0000 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:16.596511224 +0000 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:16.596511224 +0000 2026-02-21T20:13:34.457 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:15.694148974 +0000 2026-02-21T20:13:34.457 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2026-02-21T20:13:34.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Updating trial013:/etc/ceph/ceph.conf 2026-02-21T20:13:34.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Updating trial109:/etc/ceph/ceph.conf 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Updating trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Updating trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/config/ceph.conf 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Reconfiguring mon.trial013 (unknown last config time)... 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Reconfiguring daemon mon.trial013 on trial013 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Reconfiguring mgr.trial013.ogreni (unknown last config time)... 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial013.ogreni", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr services"} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: Reconfiguring daemon mgr.trial013.ogreni on trial013 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/3331483250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial013", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/739986319' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial013", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:34.536 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:13:34.536 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:13:34.536 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000176849 s, 2.9 MB/s 2026-02-21T20:13:34.536 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2026-02-21T20:13:34.593 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/nvme4n1 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/nvme4n1 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1337 Links: 1 Device type: 103,8 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:13:00.506768724 +0000 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:16.991923362 +0000 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:16.991923362 +0000 2026-02-21T20:13:34.651 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:15.820145889 +0000 2026-02-21T20:13:34.651 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2026-02-21T20:13:34.714 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:13:34.715 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:13:34.715 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000172662 s, 3.0 MB/s 2026-02-21T20:13:34.716 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2026-02-21T20:13:34.774 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/nvme5n1 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/nvme5n1 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1349 Links: 1 Device type: 103,a 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:13:00.548767695 +0000 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:17.385175659 +0000 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:17.385175659 +0000 2026-02-21T20:13:34.829 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:15.957142535 +0000 2026-02-21T20:13:34.829 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/nvme5n1 of=/dev/null count=1 2026-02-21T20:13:34.893 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:13:34.893 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:13:34.893 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.000184464 s, 2.8 MB/s 2026-02-21T20:13:34.894 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/nvme5n1 2026-02-21T20:13:34.950 DEBUG:teuthology.orchestra.run.trial013:> stat /dev/nvme6n1 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout: File: /dev/nvme6n1 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout:Device: 6h/6d Inode: 1361 Links: 1 Device type: 103,c 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout:Access: 2026-02-21 20:13:00.588766716 +0000 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout:Modify: 2026-02-21 20:12:17.779165942 +0000 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout:Change: 2026-02-21 20:12:17.779165942 +0000 2026-02-21T20:13:35.005 INFO:teuthology.orchestra.run.trial013.stdout: Birth: 2026-02-21 20:12:16.083139451 +0000 2026-02-21T20:13:35.005 DEBUG:teuthology.orchestra.run.trial013:> sudo dd if=/dev/nvme6n1 of=/dev/null count=1 2026-02-21T20:13:35.066 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records in 2026-02-21T20:13:35.066 INFO:teuthology.orchestra.run.trial013.stderr:1+0 records out 2026-02-21T20:13:35.066 INFO:teuthology.orchestra.run.trial013.stderr:512 bytes copied, 0.0001506 s, 3.4 MB/s 2026-02-21T20:13:35.068 DEBUG:teuthology.orchestra.run.trial013:> ! mount | grep -v devtmpfs | grep -q /dev/nvme6n1 2026-02-21T20:13:35.123 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:13:35.123 DEBUG:teuthology.orchestra.run.trial109:> dd if=/scratch_devs of=/dev/stdout 2026-02-21T20:13:35.141 DEBUG:teuthology.misc:devs=['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-21T20:13:35.141 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/nvme3n1 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/nvme3n1 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1325 Links: 1 Device type: 103,6 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:13:21.752251105 +0000 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:19.766373025 +0000 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:19.766373025 +0000 2026-02-21T20:13:35.197 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:18.850389605 +0000 2026-02-21T20:13:35.197 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2026-02-21T20:13:35.261 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:13:35.261 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:13:35.261 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000190224 s, 2.7 MB/s 2026-02-21T20:13:35.262 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2026-02-21T20:13:35.319 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/nvme4n1 2026-02-21T20:13:35.376 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/nvme4n1 2026-02-21T20:13:35.377 INFO:teuthology.orchestra.run.trial109.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:35.377 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1337 Links: 1 Device type: 103,8 2026-02-21T20:13:35.377 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:35.377 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:35.377 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:13:21.794250345 +0000 2026-02-21T20:13:35.378 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:20.168365750 +0000 2026-02-21T20:13:35.378 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:20.168365750 +0000 2026-02-21T20:13:35.378 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:18.977387305 +0000 2026-02-21T20:13:35.378 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: Reconfiguring ceph-exporter.trial013 (monmap changed)... 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: Reconfiguring daemon ceph-exporter.trial013 on trial013 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: Reconfiguring crash.trial013 (monmap changed)... 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: Reconfiguring daemon crash.trial013 on trial013 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: Reconfiguring alertmanager.trial013 deps ['mgr.trial013.ogreni', 'secure_monitoring_stack:False'] -> ['alertmanager.trial013', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'secure_monitoring_stack:False'] (diff {'mgr.trial109.bjivcz', 'alertmanager.trial013'}) 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: Reconfiguring daemon alertmanager.trial013 on trial013 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3659996588' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-21T20:13:35.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:35.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:35.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-21T20:13:35.439 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:13:35.439 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:13:35.439 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.00015557 s, 3.3 MB/s 2026-02-21T20:13:35.440 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2026-02-21T20:13:35.498 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/nvme5n1 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: Reconfiguring ceph-exporter.trial013 (monmap changed)... 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: Reconfiguring daemon ceph-exporter.trial013 on trial013 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: Reconfiguring crash.trial013 (monmap changed)... 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: Reconfiguring daemon crash.trial013 on trial013 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: Reconfiguring alertmanager.trial013 deps ['mgr.trial013.ogreni', 'secure_monitoring_stack:False'] -> ['alertmanager.trial013', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'secure_monitoring_stack:False'] (diff {'mgr.trial109.bjivcz', 'alertmanager.trial013'}) 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: Reconfiguring daemon alertmanager.trial013 on trial013 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3659996588' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-21T20:13:35.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:35.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:35.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-21T20:13:35.551 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/nvme5n1 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1349 Links: 1 Device type: 103,a 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:13:21.834249621 +0000 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:20.565358564 +0000 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:20.565358564 +0000 2026-02-21T20:13:35.552 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:19.111384880 +0000 2026-02-21T20:13:35.553 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/nvme5n1 of=/dev/null count=1 2026-02-21T20:13:35.615 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:13:35.615 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:13:35.615 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000169116 s, 3.0 MB/s 2026-02-21T20:13:35.617 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/nvme5n1 2026-02-21T20:13:35.675 DEBUG:teuthology.orchestra.run.trial109:> stat /dev/nvme6n1 2026-02-21T20:13:35.731 INFO:teuthology.orchestra.run.trial109.stdout: File: /dev/nvme6n1 2026-02-21T20:13:35.732 INFO:teuthology.orchestra.run.trial109.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-21T20:13:35.732 INFO:teuthology.orchestra.run.trial109.stdout:Device: 6h/6d Inode: 1361 Links: 1 Device type: 103,c 2026-02-21T20:13:35.732 INFO:teuthology.orchestra.run.trial109.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-21T20:13:35.732 INFO:teuthology.orchestra.run.trial109.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-21T20:13:35.732 INFO:teuthology.orchestra.run.trial109.stdout:Access: 2026-02-21 20:13:21.873248915 +0000 2026-02-21T20:13:35.732 INFO:teuthology.orchestra.run.trial109.stdout:Modify: 2026-02-21 20:12:20.963351361 +0000 2026-02-21T20:13:35.733 INFO:teuthology.orchestra.run.trial109.stdout:Change: 2026-02-21 20:12:20.963351361 +0000 2026-02-21T20:13:35.733 INFO:teuthology.orchestra.run.trial109.stdout: Birth: 2026-02-21 20:12:19.239382564 +0000 2026-02-21T20:13:35.733 DEBUG:teuthology.orchestra.run.trial109:> sudo dd if=/dev/nvme6n1 of=/dev/null count=1 2026-02-21T20:13:35.796 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records in 2026-02-21T20:13:35.796 INFO:teuthology.orchestra.run.trial109.stderr:1+0 records out 2026-02-21T20:13:35.796 INFO:teuthology.orchestra.run.trial109.stderr:512 bytes copied, 0.000146834 s, 3.5 MB/s 2026-02-21T20:13:35.797 DEBUG:teuthology.orchestra.run.trial109:> ! mount | grep -v devtmpfs | grep -q /dev/nvme6n1 2026-02-21T20:13:35.854 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch apply osd --all-available-devices 2026-02-21T20:13:36.010 INFO:teuthology.orchestra.run.trial109.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial109/config 2026-02-21T20:13:36.242 INFO:teuthology.orchestra.run.trial109.stdout:Scheduled osd.all-available-devices update... 2026-02-21T20:13:36.280 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2026-02-21T20:13:36.280 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:36.408 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:36.501 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:36 trial109 ceph-mon[40784]: Reconfiguring grafana.trial013 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial013', 'secure_monitoring_stack:False'] (diff {'prometheus.trial013'}) 2026-02-21T20:13:36.501 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:36 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-21T20:13:36.501 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:36 trial109 ceph-mon[40784]: Reconfiguring daemon grafana.trial013 on trial013 2026-02-21T20:13:36.501 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:36 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:36.501 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:36 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:36.501 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:36 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:36.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:36 trial013 ceph-mon[35520]: Reconfiguring grafana.trial013 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial013', 'secure_monitoring_stack:False'] (diff {'prometheus.trial013'}) 2026-02-21T20:13:36.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:36 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-21T20:13:36.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:36 trial013 ceph-mon[35520]: Reconfiguring daemon grafana.trial013 on trial013 2026-02-21T20:13:36.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:36 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:36.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:36 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:36.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:36 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:36.622 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:36.661 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2026-02-21T20:13:37.662 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:37.685 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Reconfiguring prometheus.trial013 deps ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:False', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'nfs_configured:False', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] -> ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:False', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'nfs_configured:False', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] (diff {'mgr.trial109.bjivcz'}) 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Reconfiguring daemon prometheus.trial013 on trial013 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='client.14252 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Marking host: trial013 for OSDSpec preview refresh. 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Marking host: trial109 for OSDSpec preview refresh. 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Saving service osd.all-available-devices spec with placement * 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Reconfiguring ceph-exporter.trial109 (monmap changed)... 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial109", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:37.686 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: Reconfiguring daemon ceph-exporter.trial109 on trial109 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/9919895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial109", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial109.bjivcz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr services"} : dispatch 2026-02-21T20:13:37.687 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.688 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.688 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.688 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-21T20:13:37.688 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-21T20:13:37.688 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.688 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:37 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.780 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Reconfiguring prometheus.trial013 deps ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:False', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'nfs_configured:False', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] -> ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:False', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'nfs_configured:False', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] (diff {'mgr.trial109.bjivcz'}) 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Reconfiguring daemon prometheus.trial013 on trial013 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='client.14252 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Marking host: trial013 for OSDSpec preview refresh. 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Marking host: trial109 for OSDSpec preview refresh. 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Saving service osd.all-available-devices spec with placement * 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Reconfiguring ceph-exporter.trial109 (monmap changed)... 2026-02-21T20:13:37.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial109", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: Reconfiguring daemon ceph-exporter.trial109 on trial109 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/9919895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial109", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial109.bjivcz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mgr services"} : dispatch 2026-02-21T20:13:37.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.787 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.787 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:37.787 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-21T20:13:37.787 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-21T20:13:37.787 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:37.787 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:37 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.006 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:38.046 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2026-02-21T20:13:38.535 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: Reconfiguring crash.trial109 (monmap changed)... 2026-02-21T20:13:38.535 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: Reconfiguring daemon crash.trial109 on trial109 2026-02-21T20:13:38.535 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: Reconfiguring mgr.trial109.bjivcz (monmap changed)... 2026-02-21T20:13:38.535 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: Reconfiguring daemon mgr.trial109.bjivcz on trial109 2026-02-21T20:13:38.535 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: Reconfiguring mon.trial109 (monmap changed)... 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: Reconfiguring daemon mon.trial109 on trial109 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial013:9093"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial013:9093"}]: dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial013:3000"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial013:9095"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2546416188' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.536 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.537 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: Reconfiguring crash.trial109 (monmap changed)... 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: Reconfiguring daemon crash.trial109 on trial109 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: Reconfiguring mgr.trial109.bjivcz (monmap changed)... 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: Reconfiguring daemon mgr.trial109.bjivcz on trial109 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: Reconfiguring mon.trial109 (monmap changed)... 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: Reconfiguring daemon mon.trial109 on trial109 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.735 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial013:9093"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial013:9093"}]: dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial013:3000"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial013:9095"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2546416188' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:38.736 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.047 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:39.169 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:39.387 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:39.424 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial013:3000"}]: dispatch 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial013:9095"}]: dispatch 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: Certificate for "cephadm-signed_agent_cert (trial013)" is still valid for 1824 days. 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: Certificate for "cephadm-signed_grafana_cert (trial013)" is still valid for 1094 days. 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-21T20:13:39.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:39 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:39.650 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-21T20:13:39.650 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial013:3000"}]: dispatch 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial013:9095"}]: dispatch 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: Certificate for "cephadm-signed_agent_cert (trial013)" is still valid for 1824 days. 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: Certificate for "cephadm-signed_grafana_cert (trial013)" is still valid for 1094 days. 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.651 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-21T20:13:39.652 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:39 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:40.425 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:40.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:40.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2520744038' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/3881755432' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "174eb4b8-b087-4bb2-8d8c-27b2e7eb284b"} : dispatch 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "174eb4b8-b087-4bb2-8d8c-27b2e7eb284b"} : dispatch 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "174eb4b8-b087-4bb2-8d8c-27b2e7eb284b"}]': finished 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: osdmap e6: 1 total, 0 up, 1 in 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1655670274' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e6eec321-e1d9-4e78-b628-3c481e779dbe"} : dispatch 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1655670274' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e6eec321-e1d9-4e78-b628-3c481e779dbe"}]': finished 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: osdmap e7: 2 total, 0 up, 2 in 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:40.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:40 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:40.546 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:40.662 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:40.662 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2520744038' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/3881755432' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "174eb4b8-b087-4bb2-8d8c-27b2e7eb284b"} : dispatch 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "174eb4b8-b087-4bb2-8d8c-27b2e7eb284b"} : dispatch 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "174eb4b8-b087-4bb2-8d8c-27b2e7eb284b"}]': finished 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: osdmap e6: 1 total, 0 up, 1 in 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1655670274' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e6eec321-e1d9-4e78-b628-3c481e779dbe"} : dispatch 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1655670274' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e6eec321-e1d9-4e78-b628-3c481e779dbe"}]': finished 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: osdmap e7: 2 total, 0 up, 2 in 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:40.663 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:40 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:40.760 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:40.797 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1771704819,"num_remapped_pgs":0} 2026-02-21T20:13:41.699 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:41 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2291392394' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:41.700 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:41 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/2669456866' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:41.700 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:41 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2231947619' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:41.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:41 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2291392394' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:41.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:41 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/2669456866' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:41.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:41 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2231947619' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:41.798 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:41.918 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:42.145 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:42.183 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1771704821,"num_remapped_pgs":0} 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/1725338511' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be4c038f-a78e-42bd-ba8f-8849d20530be"} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be4c038f-a78e-42bd-ba8f-8849d20530be"} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be4c038f-a78e-42bd-ba8f-8849d20530be"}]': finished 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: osdmap e8: 3 total, 0 up, 3 in 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1190596343' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "af667de4-1dd1-4780-9f2e-77be1ee22978"} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1190596343' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af667de4-1dd1-4780-9f2e-77be1ee22978"}]': finished 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: osdmap e9: 4 total, 0 up, 4 in 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3330945639' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/3522406995' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:42.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:42 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/751684634' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:42.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/1725338511' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be4c038f-a78e-42bd-ba8f-8849d20530be"} : dispatch 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "be4c038f-a78e-42bd-ba8f-8849d20530be"} : dispatch 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be4c038f-a78e-42bd-ba8f-8849d20530be"}]': finished 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: osdmap e8: 3 total, 0 up, 3 in 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1190596343' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "af667de4-1dd1-4780-9f2e-77be1ee22978"} : dispatch 2026-02-21T20:13:42.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1190596343' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af667de4-1dd1-4780-9f2e-77be1ee22978"}]': finished 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: osdmap e9: 4 total, 0 up, 4 in 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3330945639' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/3522406995' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:42.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:42 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/751684634' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:43.184 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:43.312 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:43.524 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:43.580 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1771704823,"num_remapped_pgs":0} 2026-02-21T20:13:44.581 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:44.700 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/3573253099' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5158c012-8536-4d05-b0c8-b193760b3270"} : dispatch 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5158c012-8536-4d05-b0c8-b193760b3270"} : dispatch 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5158c012-8536-4d05-b0c8-b193760b3270"}]': finished 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: osdmap e10: 5 total, 0 up, 5 in 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:44.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4117824274' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3595636789' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5eed88b3-f43a-431e-9d7a-9f3f692c146d"} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3595636789' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5eed88b3-f43a-431e-9d7a-9f3f692c146d"}]': finished 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: osdmap e11: 6 total, 0 up, 6 in 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/2108259233' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:44.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:44 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1429694721' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:44.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:44.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/3573253099' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5158c012-8536-4d05-b0c8-b193760b3270"} : dispatch 2026-02-21T20:13:44.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5158c012-8536-4d05-b0c8-b193760b3270"} : dispatch 2026-02-21T20:13:44.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5158c012-8536-4d05-b0c8-b193760b3270"}]': finished 2026-02-21T20:13:44.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: osdmap e10: 5 total, 0 up, 5 in 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4117824274' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3595636789' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5eed88b3-f43a-431e-9d7a-9f3f692c146d"} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3595636789' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5eed88b3-f43a-431e-9d7a-9f3f692c146d"}]': finished 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: osdmap e11: 6 total, 0 up, 6 in 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:44.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:44.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:44.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:44.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:44.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/2108259233' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:44.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:44 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1429694721' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:44.914 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:44.956 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1771704823,"num_remapped_pgs":0} 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4212049622' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/589882350' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cf041061-7cd2-4817-9e2b-e44c252d7683"} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cf041061-7cd2-4817-9e2b-e44c252d7683"} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cf041061-7cd2-4817-9e2b-e44c252d7683"}]': finished 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: osdmap e12: 7 total, 0 up, 7 in 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:45.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:45 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4212049622' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/589882350' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cf041061-7cd2-4817-9e2b-e44c252d7683"} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cf041061-7cd2-4817-9e2b-e44c252d7683"} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cf041061-7cd2-4817-9e2b-e44c252d7683"}]': finished 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: osdmap e12: 7 total, 0 up, 7 in 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:45.643 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:45 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:45.957 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:46.075 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:46.286 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:46.324 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:46.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:46.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1461465730' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cf608fa4-0e9b-4869-b1fa-a0252909b4b1"} : dispatch 2026-02-21T20:13:46.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1461465730' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cf608fa4-0e9b-4869-b1fa-a0252909b4b1"}]': finished 2026-02-21T20:13:46.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: osdmap e13: 8 total, 0 up, 8 in 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/1280425513' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4073041426' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:46.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:46 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3863579377' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:46.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:46.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1461465730' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cf608fa4-0e9b-4869-b1fa-a0252909b4b1"} : dispatch 2026-02-21T20:13:46.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1461465730' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cf608fa4-0e9b-4869-b1fa-a0252909b4b1"}]': finished 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: osdmap e13: 8 total, 0 up, 8 in 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:46.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/1280425513' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:46.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4073041426' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-21T20:13:46.786 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:46 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3863579377' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:47.325 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:47.447 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:47.511 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:47 trial013 ceph-mon[35520]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:47.665 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:47.676 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:47 trial109 ceph-mon[40784]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:47.704 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: Deploying daemon osd.0 on trial109 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: Deploying daemon osd.1 on trial013 2026-02-21T20:13:48.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:48 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1755592458' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:48.591 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-21T20:13:48.591 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:48.591 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: Deploying daemon osd.0 on trial109 2026-02-21T20:13:48.592 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-21T20:13:48.592 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:48.592 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: Deploying daemon osd.1 on trial013 2026-02-21T20:13:48.592 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:48 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1755592458' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:48.705 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:48.830 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:49.059 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:49.101 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:49.696 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:49 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1058103334' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:49.696 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:49 trial109 ceph-mon[40784]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:49.697 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:49 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:13:49.702 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:49 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1058103334' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:49.702 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:49 trial013 ceph-mon[35520]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:49.702 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:49 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:13:50.102 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:50.227 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:50.460 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:50.501 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:50.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:50.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:50.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-21T20:13:50.953 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: Deploying daemon osd.2 on trial109 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: Deploying daemon osd.3 on trial013 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3537271532' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='osd.0 [v2:10.20.193.109:6800/2245921878,v1:10.20.193.109:6801/2245921878]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-21T20:13:50.954 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:50 trial013 ceph-mon[35520]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-21T20:13:51.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: Deploying daemon osd.2 on trial109 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: Deploying daemon osd.3 on trial013 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3537271532' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='osd.0 [v2:10.20.193.109:6800/2245921878,v1:10.20.193.109:6801/2245921878]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-21T20:13:51.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:50 trial109 ceph-mon[40784]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-21T20:13:51.503 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:51.625 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:51.838 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:51.877 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:52.110 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-21T20:13:52.110 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='osd.0 [v2:10.20.193.109:6800/2245921878,v1:10.20.193.109:6801/2245921878]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: osdmap e14: 8 total, 0 up, 8 in 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:52.111 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:52.112 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:52.112 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:52.112 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:52.112 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:52.112 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:51 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3039776723' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:52.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-21T20:13:52.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:52.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-21T20:13:52.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-21T20:13:52.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='osd.0 [v2:10.20.193.109:6800/2245921878,v1:10.20.193.109:6801/2245921878]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: osdmap e14: 8 total, 0 up, 8 in 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:52.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:51 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3039776723' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:52.878 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:52.995 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:53.229 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:53.272 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":16,"num_osds":8,"num_up_osds":2,"osd_up_since":1771704833,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: osdmap e15: 8 total, 0 up, 8 in 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:53.376 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: Deploying daemon osd.4 on trial109 2026-02-21T20:13:53.377 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-21T20:13:53.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:53.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='osd.2 [v2:10.20.193.109:6808/651929879,v1:10.20.193.109:6809/651929879]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-21T20:13:53.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:53 trial013 ceph-mon[35520]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-21T20:13:53.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:13:53.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:13:53.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: osdmap e15: 8 total, 0 up, 8 in 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: Deploying daemon osd.4 on trial109 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='osd.2 [v2:10.20.193.109:6808/651929879,v1:10.20.193.109:6809/651929879]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-21T20:13:53.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:53 trial109 ceph-mon[40784]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-21T20:13:54.274 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:54.397 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:54.514 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:13:54.514 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:13:54.514 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:13:54.514 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:13:54.514 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: Deploying daemon osd.5 on trial013 2026-02-21T20:13:54.514 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.2 [v2:10.20.193.109:6808/651929879,v1:10.20.193.109:6809/651929879]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106] boot 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: osd.0 [v2:10.20.193.109:6800/2245921878,v1:10.20.193.109:6801/2245921878] boot 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: osdmap e16: 8 total, 2 up, 8 in 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:54.515 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2961214843' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: osdmap e17: 8 total, 2 up, 8 in 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:54.516 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:54.517 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:54.517 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:54.517 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:54 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: Deploying daemon osd.5 on trial013 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.2 [v2:10.20.193.109:6808/651929879,v1:10.20.193.109:6809/651929879]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: osd.1 [v2:10.20.193.13:6802/718078106,v1:10.20.193.13:6803/718078106] boot 2026-02-21T20:13:54.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: osd.0 [v2:10.20.193.109:6800/2245921878,v1:10.20.193.109:6801/2245921878] boot 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: osdmap e16: 8 total, 2 up, 8 in 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2961214843' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-21T20:13:54.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: osdmap e17: 8 total, 2 up, 8 in 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:54.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:54 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:54.614 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:54.652 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":17,"num_osds":8,"num_up_osds":2,"osd_up_since":1771704833,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:55.369 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1613990010' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:55.369 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:55.369 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:55.369 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: osd.2 [v2:10.20.193.109:6808/651929879,v1:10.20.193.109:6809/651929879] boot 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: osdmap e18: 8 total, 3 up, 8 in 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:55.370 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:55 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1613990010' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: osd.2 [v2:10.20.193.109:6808/651929879,v1:10.20.193.109:6809/651929879] boot 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: osdmap e18: 8 total, 3 up, 8 in 2026-02-21T20:13:55.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-21T20:13:55.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:55.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:55.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:55.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:55.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:55.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:55 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:55.653 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:55.773 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:56.007 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:56.114 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":18,"num_osds":8,"num_up_osds":3,"osd_up_since":1771704835,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:56.439 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:13:56.439 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: Deploying daemon osd.6 on trial109 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: pgmap v24: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 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-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='osd.4 [v2:10.20.193.109:6816/2193513713,v1:10.20.193.109:6817/2193513713]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-21T20:13:56.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3187703659' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:56.441 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-21T20:13:56.441 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:56 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:56.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: Deploying daemon osd.6 on trial109 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: pgmap v24: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 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-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='osd.4 [v2:10.20.193.109:6816/2193513713,v1:10.20.193.109:6817/2193513713]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-21T20:13:56.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-21T20:13:56.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3187703659' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:56.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-21T20:13:56.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:56 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:57.116 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:57.242 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:57.365 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: Deploying daemon osd.7 on trial013 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 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-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.4 [v2:10.20.193.109:6816/2193513713,v1:10.20.193.109:6817/2193513713]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993] boot 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: osdmap e19: 8 total, 4 up, 8 in 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:57.366 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:57.367 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:57.367 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:57.367 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:57.367 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-21T20:13:57.367 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:13:57.367 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:57 trial109 ceph-mon[40784]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:13:57.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:13:57.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:13:57.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: Deploying daemon osd.7 on trial013 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 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-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.4 [v2:10.20.193.109:6816/2193513713,v1:10.20.193.109:6817/2193513713]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: osd.3 [v2:10.20.193.13:6810/1509171993,v1:10.20.193.13:6811/1509171993] boot 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: osdmap e19: 8 total, 4 up, 8 in 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:57.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:57.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:57.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:57.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:57.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-21T20:13:57.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:13:57.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:57 trial013 ceph-mon[35520]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:13:57.464 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:57.505 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":20,"num_osds":8,"num_up_osds":4,"osd_up_since":1771704836,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:13:58.321 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: pgmap v27: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: osdmap e20: 8 total, 4 up, 8 in 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.322 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.323 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4124895542' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:58.323 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='osd.6 [v2:10.20.193.109:6824/4106533314,v1:10.20.193.109:6825/4106533314]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-21T20:13:58.323 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-21T20:13:58.323 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.323 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:58 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.424 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: pgmap v27: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: osdmap e20: 8 total, 4 up, 8 in 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:58.425 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.426 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.426 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4124895542' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:58.426 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='osd.6 [v2:10.20.193.109:6824/4106533314,v1:10.20.193.109:6825/4106533314]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-21T20:13:58.426 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-21T20:13:58.426 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.426 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:58 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:58.507 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:13:58.629 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:13:58.862 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:13:58.900 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":21,"num_osds":8,"num_up_osds":6,"osd_up_since":1771704838,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":1} 2026-02-21T20:13:59.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:13:59.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:13:59.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:13:59.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:13:59.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:59.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='osd.6 [v2:10.20.193.109:6824/4106533314,v1:10.20.193.109:6825/4106533314]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284] boot 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: osd.4 [v2:10.20.193.109:6816/2193513713,v1:10.20.193.109:6817/2193513713] boot 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: osdmap e21: 8 total, 6 up, 8 in 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2026-02-21T20:13:59.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1702868608' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:59.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.455 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:13:59 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.513 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:13:59.513 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:13:59.513 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:13:59.513 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:13:59.513 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='osd.6 [v2:10.20.193.109:6824/4106533314,v1:10.20.193.109:6825/4106533314]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: osd.5 [v2:10.20.193.13:6818/998162284,v1:10.20.193.13:6819/998162284] boot 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: osd.4 [v2:10.20.193.109:6816/2193513713,v1:10.20.193.109:6817/2193513713] boot 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: osdmap e21: 8 total, 6 up, 8 in 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial109", "root=default"]} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:13:59.514 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.515 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.515 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2026-02-21T20:13:59.515 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1702868608' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:13:59.515 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.515 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:13:59 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:13:59.901 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:14:00.022 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:00.254 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: pgmap v30: 1 pgs: 1 unknown; 0 B data, 106 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: osdmap e22: 8 total, 6 up, 8 in 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:14:00.274 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:00.275 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:14:00.275 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:00.275 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.275 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.275 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.275 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:00 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.293 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":23,"num_osds":8,"num_up_osds":7,"osd_up_since":1771704840,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":1} 2026-02-21T20:14:00.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: pgmap v30: 1 pgs: 1 unknown; 0 B data, 106 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-21T20:14:00.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial109", "root=default"]}]': finished 2026-02-21T20:14:00.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2026-02-21T20:14:00.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: osdmap e22: 8 total, 6 up, 8 in 2026-02-21T20:14:00.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial013", "root=default"]} : dispatch 2026-02-21T20:14:00.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:00.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:00 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.294 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd stat -f json 2026-02-21T20:14:01.413 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: osd.6 [v2:10.20.193.109:6824/4106533314,v1:10.20.193.109:6825/4106533314] boot 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: osdmap e23: 8 total, 7 up, 8 in 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:14:01.436 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4050253194' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.437 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246] boot 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: osdmap e24: 8 total, 8 up, 8 in 2026-02-21T20:14:01.438 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:01 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial013", "root=default"]}]': finished 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: osd.6 [v2:10.20.193.109:6824/4106533314,v1:10.20.193.109:6825/4106533314] boot 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: osdmap e23: 8 total, 7 up, 8 in 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:01.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4050253194' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: osd.7 [v2:10.20.193.13:6826/3514865246,v1:10.20.193.13:6827/3514865246] boot 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: osdmap e24: 8 total, 8 up, 8 in 2026-02-21T20:14:01.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:01 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-21T20:14:01.635 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:01.671 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":24,"num_osds":8,"num_up_osds":8,"osd_up_since":1771704841,"num_in_osds":8,"osd_in_since":1771704825,"num_remapped_pgs":0} 2026-02-21T20:14:01.671 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd dump --format=json 2026-02-21T20:14:01.787 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:02.001 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:02.001 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":24,"fsid":"a0f5aa36-0f61-11f1-ad6d-d404e6e7d460","created":"2026-02-21T20:12:34.401576+0000","modified":"2026-02-21T20:14:01.239663+0000","last_up_change":"2026-02-21T20:14:01.239663+0000","last_in_change":"2026-02-21T20:13:45.428136+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":12,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"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-21T20:13:55.346226+0000","flags":32769,"flags_names":"hashpspool,creating","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":"20","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":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"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":"174eb4b8-b087-4bb2-8d8c-27b2e7eb284b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6800","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6801","nonce":2245921878}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6802","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6803","nonce":2245921878}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6806","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6807","nonce":2245921878}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6804","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6805","nonce":2245921878}]},"public_addr":"10.20.193.109:6801/2245921878","cluster_addr":"10.20.193.109:6803/2245921878","heartbeat_back_addr":"10.20.193.109:6807/2245921878","heartbeat_front_addr":"10.20.193.109:6805/2245921878","state":["exists","up"]},{"osd":1,"uuid":"e6eec321-e1d9-4e78-b628-3c481e779dbe","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6802","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6803","nonce":718078106}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6804","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6805","nonce":718078106}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6808","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6809","nonce":718078106}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6806","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6807","nonce":718078106}]},"public_addr":"10.20.193.13:6803/718078106","cluster_addr":"10.20.193.13:6805/718078106","heartbeat_back_addr":"10.20.193.13:6809/718078106","heartbeat_front_addr":"10.20.193.13:6807/718078106","state":["exists","up"]},{"osd":2,"uuid":"be4c038f-a78e-42bd-ba8f-8849d20530be","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":21,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6808","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6809","nonce":651929879}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6810","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6811","nonce":651929879}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6814","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6815","nonce":651929879}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6812","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6813","nonce":651929879}]},"public_addr":"10.20.193.109:6809/651929879","cluster_addr":"10.20.193.109:6811/651929879","heartbeat_back_addr":"10.20.193.109:6815/651929879","heartbeat_front_addr":"10.20.193.109:6813/651929879","state":["exists","up"]},{"osd":3,"uuid":"af667de4-1dd1-4780-9f2e-77be1ee22978","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6810","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6811","nonce":1509171993}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6812","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6813","nonce":1509171993}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6816","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6817","nonce":1509171993}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6814","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6815","nonce":1509171993}]},"public_addr":"10.20.193.13:6811/1509171993","cluster_addr":"10.20.193.13:6813/1509171993","heartbeat_back_addr":"10.20.193.13:6817/1509171993","heartbeat_front_addr":"10.20.193.13:6815/1509171993","state":["exists","up"]},{"osd":4,"uuid":"5158c012-8536-4d05-b0c8-b193760b3270","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6816","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6817","nonce":2193513713}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6818","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6819","nonce":2193513713}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6822","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6823","nonce":2193513713}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6820","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6821","nonce":2193513713}]},"public_addr":"10.20.193.109:6817/2193513713","cluster_addr":"10.20.193.109:6819/2193513713","heartbeat_back_addr":"10.20.193.109:6823/2193513713","heartbeat_front_addr":"10.20.193.109:6821/2193513713","state":["exists","up"]},{"osd":5,"uuid":"5eed88b3-f43a-431e-9d7a-9f3f692c146d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6818","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6819","nonce":998162284}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6820","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6821","nonce":998162284}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6824","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6825","nonce":998162284}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6822","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6823","nonce":998162284}]},"public_addr":"10.20.193.13:6819/998162284","cluster_addr":"10.20.193.13:6821/998162284","heartbeat_back_addr":"10.20.193.13:6825/998162284","heartbeat_front_addr":"10.20.193.13:6823/998162284","state":["exists","up"]},{"osd":6,"uuid":"cf041061-7cd2-4817-9e2b-e44c252d7683","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6824","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6825","nonce":4106533314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6826","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6827","nonce":4106533314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6830","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6831","nonce":4106533314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6828","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6829","nonce":4106533314}]},"public_addr":"10.20.193.109:6825/4106533314","cluster_addr":"10.20.193.109:6827/4106533314","heartbeat_back_addr":"10.20.193.109:6831/4106533314","heartbeat_front_addr":"10.20.193.109:6829/4106533314","state":["exists","up"]},{"osd":7,"uuid":"cf608fa4-0e9b-4869-b1fa-a0252909b4b1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6826","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6827","nonce":3514865246}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6828","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6829","nonce":3514865246}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6832","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6833","nonce":3514865246}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6830","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6831","nonce":3514865246}]},"public_addr":"10.20.193.13:6827/3514865246","cluster_addr":"10.20.193.13:6829/3514865246","heartbeat_back_addr":"10.20.193.13:6833/3514865246","heartbeat_front_addr":"10.20.193.13:6831/3514865246","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:51.501579+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:51.889979+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:53.969568+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:54.498496+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:56.659745+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-21T20:13:57.115740+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:59.014104+0000","dead_epoch":0},{"osd":7,"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":[],"primary_temp":[],"blocklist":{"10.20.193.13:0/830603460":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/2774232212":"2026-02-22T20:13:19.138154+0000","10.20.193.13:6800/1146540833":"2026-02-22T20:12:55.438251+0000","10.20.193.13:0/4149008739":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/1972923668":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6800/2042582401":"2026-02-22T20:12:44.324105+0000","10.20.193.13:6800/1094902887":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/3208872013":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/2198659440":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/3556686916":"2026-02-22T20:12:44.324105+0000","10.20.193.13:6801/2042582401":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/3754496495":"2026-02-22T20:12:55.438251+0000","10.20.193.13:0/447355393":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6801/1146540833":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6801/1094902887":"2026-02-22T20:13:19.138154+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-21T20:14:02.037 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-21T20:13:55.346226+0000', 'flags': 32769, 'flags_names': 'hashpspool,creating', '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': '20', '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': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2026-02-21T20:14:02.037 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-21T20:14:02.155 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: purged_snaps scrub starts 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: purged_snaps scrub ok 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: Detected new or changed devices on trial109 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: Adjusting osd_memory_target on trial109 to 20467M 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: pgmap v33: 1 pgs: 1 unknown; 0 B data, 186 MiB used, 4.8 TiB / 4.8 TiB avail 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: Detected new or changed devices on trial013 2026-02-21T20:14:02.271 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: Adjusting osd_memory_target on trial013 to 19699M 2026-02-21T20:14:02.272 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1324179576' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:14:02.272 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2362418831' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-21T20:14:02.372 INFO:teuthology.orchestra.run.trial013.stdout:pg_num: 1 2026-02-21T20:14:02.412 INFO:tasks.cephadm:Setting up client nodes... 2026-02-21T20:14:02.413 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2026-02-21T20:14:02.529 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:02.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: purged_snaps scrub starts 2026-02-21T20:14:02.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: purged_snaps scrub ok 2026-02-21T20:14:02.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: Detected new or changed devices on trial109 2026-02-21T20:14:02.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: Adjusting osd_memory_target on trial109 to 20467M 2026-02-21T20:14:02.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: pgmap v33: 1 pgs: 1 unknown; 0 B data, 186 MiB used, 4.8 TiB / 4.8 TiB avail 2026-02-21T20:14:02.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: Detected new or changed devices on trial013 2026-02-21T20:14:02.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: Adjusting osd_memory_target on trial013 to 19699M 2026-02-21T20:14:02.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1324179576' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-21T20:14:02.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2362418831' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-21T20:14:02.807 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71707]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71707]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71707]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71707]: pam_unix(sudo:session): session closed for user root 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71721]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71721]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71721]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-21T20:14:02.808 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:02 trial013 sudo[71721]: pam_unix(sudo:session): session closed for user root 2026-02-21T20:14:02.808 INFO:teuthology.orchestra.run.trial013.stdout:[client.0] 2026-02-21T20:14:02.809 INFO:teuthology.orchestra.run.trial013.stdout: key = AQAKEpppR9AQMBAASOHcgTk5Osp9qy2hpYXqyQ== 2026-02-21T20:14:02.844 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:14:02.845 DEBUG:teuthology.orchestra.run.trial013:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2026-02-21T20:14:02.845 DEBUG:teuthology.orchestra.run.trial013:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2026-02-21T20:14:02.880 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55764]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55764]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55764]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55764]: pam_unix(sudo:session): session closed for user root 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55768]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55768]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55768]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-21T20:14:02.905 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:02 trial109 sudo[55768]: pam_unix(sudo:session): session closed for user root 2026-02-21T20:14:03.003 INFO:teuthology.orchestra.run.trial109.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial109/config 2026-02-21T20:14:03.266 INFO:teuthology.orchestra.run.trial109.stdout:[client.1] 2026-02-21T20:14:03.266 INFO:teuthology.orchestra.run.trial109.stdout: key = AQALEppp6jrFDxAA1ernfMlN6BDoQaWOQ0j7VA== 2026-02-21T20:14:03.303 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:14:03.303 DEBUG:teuthology.orchestra.run.trial109:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2026-02-21T20:14:03.303 DEBUG:teuthology.orchestra.run.trial109:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2026-02-21T20:14:03.382 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-21T20:14:03.499 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: osdmap e25: 8 total, 8 up, 8 in 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/380384521' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.523 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:14:03.524 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:14:03.525 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-21T20:14:03.525 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.525 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1950529290' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-21T20:14:03.525 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:03 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1950529290' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-21T20:14:03.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: osdmap e25: 8 total, 8 up, 8 in 2026-02-21T20:14:03.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/380384521' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-21T20:14:03.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial013"} : dispatch 2026-02-21T20:14:03.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "mon metadata", "id": "trial109"} : dispatch 2026-02-21T20:14:03.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-21T20:14:03.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:03.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1950529290' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-21T20:14:03.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:03 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1950529290' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-21T20:14:03.715 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:03.769 INFO:teuthology.orchestra.run.trial013.stdout:[{"version":15,"timestamp":"2026-02-21T20:14:01.182127+0000","name":"","changes":[{"name":"osd/host:trial013/osd_memory_target","new_value":"20656749056"}]}] 2026-02-21T20:14:03.770 INFO:tasks.ceph_manager:config epoch is 15 2026-02-21T20:14:03.770 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-21T20:14:03.770 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-21T20:14:03.770 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-21T20:14:03.887 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:04.133 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:04.168 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":19,"flags":0,"active_gid":14213,"active_name":"trial013.ogreni","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6800","nonce":1861765931},{"type":"v1","addr":"10.20.193.13:6801","nonce":1861765931}]},"active_addr":"10.20.193.13:6801/1861765931","active_change":"2026-02-21T20:13:19.138242+0000","active_mgr_features":4544132024016699391,"available":true,"standbys":[{"gid":14236,"name":"trial109.bjivcz","mgr_features":4544132024016699391,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often the agent on each host will gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"The first TCP port the agent will try to bind to. Up to 1000 subsequent ports will be attempted if this port cannot be bound","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this option can facilitate debugging daemons that encounter runtime problems.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"How frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"Fraction of total system memory to divide among autotuned daemons. Converged systems hosting both Ceph and compute should set a lower value; systems with more than 10 GiB of memory per OSD may benefit from a slightly larger value so that the abundance of RAM can be fully utilized","long_desc":"","tags":[],"see_also":[]},"cephadm_binary_logging_level":{"name":"cephadm_binary_logging_level","type":"str","level":"advanced","flags":0,"default_value":"debug","min":"","max":"","enum_allowed":["debug","error","info","warning"],"desc":"Logging verbosity for the cephadm binary when invoked by the mgr (e.g. check-host, gather-facts).","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self-signed certificates generated and signed by the cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently Podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_alloy":{"name":"container_image_alloy","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/alloy:latest","min":"","max":"","enum_allowed":[],"desc":"Alloy container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.6","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"Seconds for which to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"Seconds for which to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"Seconds for which to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"Location of dashboards to include in Grafana","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"How frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether the hardware monitoring daemon be deployed on every host?","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at the debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"Max number of daemons per service per host: guard against mistakes and runaways","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"Max number of OSDs that will be drained simultaneously when OSDs are removed","long_desc":"","tags":[],"see_also":[]},"max_parallel_osd_upgrades":{"name":"max_parallel_osd_upgrades","type":"int","level":"advanced","flags":0,"default_value":"16","min":"","max":"","enum_allowed":[],"desc":"Maximum number of OSD daemons upgraded in parallel.","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"Mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default IP address for RedFish API (OOB management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"Location of alerts to include in Prometheus Alertmanager","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry URL for login purposes. This is not the default registry.","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"Cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Customized SSH config file to distribute to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many sequential SSH connection liveness check failures before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often SSH connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"How frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use the cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest to ensure that all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"healthcheck_history_max_entries":{"name":"healthcheck_history_max_entries","type":"int","level":"advanced","flags":1,"default_value":"1000","min":"","max":"","enum_allowed":[],"desc":"Maximum number of health check history entries to keep","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often the agent on each host will gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"The first TCP port the agent will try to bind to. Up to 1000 subsequent ports will be attempted if this port cannot be bound","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this option can facilitate debugging daemons that encounter runtime problems.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"How frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"Fraction of total system memory to divide among autotuned daemons. Converged systems hosting both Ceph and compute should set a lower value; systems with more than 10 GiB of memory per OSD may benefit from a slightly larger value so that the abundance of RAM can be fully utilized","long_desc":"","tags":[],"see_also":[]},"cephadm_binary_logging_level":{"name":"cephadm_binary_logging_level","type":"str","level":"advanced","flags":0,"default_value":"debug","min":"","max":"","enum_allowed":["debug","error","info","warning"],"desc":"Logging verbosity for the cephadm binary when invoked by the mgr (e.g. check-host, gather-facts).","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self-signed certificates generated and signed by the cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently Podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_alloy":{"name":"container_image_alloy","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/alloy:latest","min":"","max":"","enum_allowed":[],"desc":"Alloy container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.6","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"Seconds for which to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"Seconds for which to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"Seconds for which to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"Location of dashboards to include in Grafana","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"How frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether the hardware monitoring daemon be deployed on every host?","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at the debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"Max number of daemons per service per host: guard against mistakes and runaways","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"Max number of OSDs that will be drained simultaneously when OSDs are removed","long_desc":"","tags":[],"see_also":[]},"max_parallel_osd_upgrades":{"name":"max_parallel_osd_upgrades","type":"int","level":"advanced","flags":0,"default_value":"16","min":"","max":"","enum_allowed":[],"desc":"Maximum number of OSD daemons upgraded in parallel.","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"Mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default IP address for RedFish API (OOB management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"Location of alerts to include in Prometheus Alertmanager","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry URL for login purposes. This is not the default registry.","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"Cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Customized SSH config file to distribute to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many sequential SSH connection liveness check failures before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often SSH connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"How frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use the cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest to ensure that all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"healthcheck_history_max_entries":{"name":"healthcheck_history_max_entries","type":"int","level":"advanced","flags":1,"default_value":"1000","min":"","max":"","enum_allowed":[],"desc":"Maximum number of health check history entries to keep","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://10.20.193.13:8443/","prometheus":"http://10.20.193.13:9283/"},"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":4,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"10.20.193.13:0","nonce":219889919}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.13:0","nonce":2300737717}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.13:0","nonce":720183340}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.13:0","nonce":349639906}]}]} 2026-02-21T20:14:04.175 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-21T20:14:04.175 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-21T20:14:04.175 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd dump --format=json 2026-02-21T20:14:04.293 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:04.408 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: pgmap v36: 1 pgs: 1 unknown; 0 B data, 212 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:04.408 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: osdmap e26: 8 total, 8 up, 8 in 2026-02-21T20:14:04.408 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/3284162149' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-21T20:14:04.408 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-21T20:14:04.409 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-21T20:14:04.409 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2071367037' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-21T20:14:04.409 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: mgrmap e19: trial013.ogreni(active, since 44s), standbys: trial109.bjivcz 2026-02-21T20:14:04.409 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:04 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2352127482' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-21T20:14:04.505 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:04.505 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":26,"fsid":"a0f5aa36-0f61-11f1-ad6d-d404e6e7d460","created":"2026-02-21T20:12:34.401576+0000","modified":"2026-02-21T20:14:03.246158+0000","last_up_change":"2026-02-21T20:14:01.239663+0000","last_in_change":"2026-02-21T20:13:45.428136+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":12,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"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-21T20:13:55.346226+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":"26","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":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"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":"174eb4b8-b087-4bb2-8d8c-27b2e7eb284b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6800","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6801","nonce":2245921878}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6802","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6803","nonce":2245921878}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6806","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6807","nonce":2245921878}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6804","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6805","nonce":2245921878}]},"public_addr":"10.20.193.109:6801/2245921878","cluster_addr":"10.20.193.109:6803/2245921878","heartbeat_back_addr":"10.20.193.109:6807/2245921878","heartbeat_front_addr":"10.20.193.109:6805/2245921878","state":["exists","up"]},{"osd":1,"uuid":"e6eec321-e1d9-4e78-b628-3c481e779dbe","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6802","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6803","nonce":718078106}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6804","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6805","nonce":718078106}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6808","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6809","nonce":718078106}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6806","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6807","nonce":718078106}]},"public_addr":"10.20.193.13:6803/718078106","cluster_addr":"10.20.193.13:6805/718078106","heartbeat_back_addr":"10.20.193.13:6809/718078106","heartbeat_front_addr":"10.20.193.13:6807/718078106","state":["exists","up"]},{"osd":2,"uuid":"be4c038f-a78e-42bd-ba8f-8849d20530be","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":21,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6808","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6809","nonce":651929879}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6810","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6811","nonce":651929879}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6814","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6815","nonce":651929879}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6812","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6813","nonce":651929879}]},"public_addr":"10.20.193.109:6809/651929879","cluster_addr":"10.20.193.109:6811/651929879","heartbeat_back_addr":"10.20.193.109:6815/651929879","heartbeat_front_addr":"10.20.193.109:6813/651929879","state":["exists","up"]},{"osd":3,"uuid":"af667de4-1dd1-4780-9f2e-77be1ee22978","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6810","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6811","nonce":1509171993}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6812","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6813","nonce":1509171993}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6816","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6817","nonce":1509171993}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6814","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6815","nonce":1509171993}]},"public_addr":"10.20.193.13:6811/1509171993","cluster_addr":"10.20.193.13:6813/1509171993","heartbeat_back_addr":"10.20.193.13:6817/1509171993","heartbeat_front_addr":"10.20.193.13:6815/1509171993","state":["exists","up"]},{"osd":4,"uuid":"5158c012-8536-4d05-b0c8-b193760b3270","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6816","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6817","nonce":2193513713}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6818","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6819","nonce":2193513713}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6822","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6823","nonce":2193513713}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6820","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6821","nonce":2193513713}]},"public_addr":"10.20.193.109:6817/2193513713","cluster_addr":"10.20.193.109:6819/2193513713","heartbeat_back_addr":"10.20.193.109:6823/2193513713","heartbeat_front_addr":"10.20.193.109:6821/2193513713","state":["exists","up"]},{"osd":5,"uuid":"5eed88b3-f43a-431e-9d7a-9f3f692c146d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6818","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6819","nonce":998162284}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6820","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6821","nonce":998162284}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6824","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6825","nonce":998162284}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6822","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6823","nonce":998162284}]},"public_addr":"10.20.193.13:6819/998162284","cluster_addr":"10.20.193.13:6821/998162284","heartbeat_back_addr":"10.20.193.13:6825/998162284","heartbeat_front_addr":"10.20.193.13:6823/998162284","state":["exists","up"]},{"osd":6,"uuid":"cf041061-7cd2-4817-9e2b-e44c252d7683","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6824","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6825","nonce":4106533314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6826","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6827","nonce":4106533314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6830","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6831","nonce":4106533314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6828","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6829","nonce":4106533314}]},"public_addr":"10.20.193.109:6825/4106533314","cluster_addr":"10.20.193.109:6827/4106533314","heartbeat_back_addr":"10.20.193.109:6831/4106533314","heartbeat_front_addr":"10.20.193.109:6829/4106533314","state":["exists","up"]},{"osd":7,"uuid":"cf608fa4-0e9b-4869-b1fa-a0252909b4b1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6826","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6827","nonce":3514865246}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6828","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6829","nonce":3514865246}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6832","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6833","nonce":3514865246}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6830","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6831","nonce":3514865246}]},"public_addr":"10.20.193.13:6827/3514865246","cluster_addr":"10.20.193.13:6829/3514865246","heartbeat_back_addr":"10.20.193.13:6833/3514865246","heartbeat_front_addr":"10.20.193.13:6831/3514865246","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:51.501579+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:51.889979+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:53.969568+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:54.498496+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:56.659745+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-21T20:13:57.115740+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:59.014104+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:59.877661+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.13:0/830603460":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/2774232212":"2026-02-22T20:13:19.138154+0000","10.20.193.13:6800/1146540833":"2026-02-22T20:12:55.438251+0000","10.20.193.13:0/4149008739":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/1972923668":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6800/2042582401":"2026-02-22T20:12:44.324105+0000","10.20.193.13:6800/1094902887":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/3208872013":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/2198659440":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/3556686916":"2026-02-22T20:12:44.324105+0000","10.20.193.13:6801/2042582401":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/3754496495":"2026-02-22T20:12:55.438251+0000","10.20.193.13:0/447355393":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6801/1146540833":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6801/1094902887":"2026-02-22T20:13:19.138154+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-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: pgmap v36: 1 pgs: 1 unknown; 0 B data, 212 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: osdmap e26: 8 total, 8 up, 8 in 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/3284162149' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2071367037' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: mgrmap e19: trial013.ogreni(active, since 44s), standbys: trial109.bjivcz 2026-02-21T20:14:04.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:04 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2352127482' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-21T20:14:04.542 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-21T20:14:04.542 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd dump --format=json 2026-02-21T20:14:04.657 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:04.873 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:04.873 INFO:teuthology.orchestra.run.trial013.stdout:{"epoch":26,"fsid":"a0f5aa36-0f61-11f1-ad6d-d404e6e7d460","created":"2026-02-21T20:12:34.401576+0000","modified":"2026-02-21T20:14:03.246158+0000","last_up_change":"2026-02-21T20:14:01.239663+0000","last_in_change":"2026-02-21T20:13:45.428136+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":12,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"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-21T20:13:55.346226+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":"26","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":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"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":"174eb4b8-b087-4bb2-8d8c-27b2e7eb284b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6800","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6801","nonce":2245921878}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6802","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6803","nonce":2245921878}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6806","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6807","nonce":2245921878}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6804","nonce":2245921878},{"type":"v1","addr":"10.20.193.109:6805","nonce":2245921878}]},"public_addr":"10.20.193.109:6801/2245921878","cluster_addr":"10.20.193.109:6803/2245921878","heartbeat_back_addr":"10.20.193.109:6807/2245921878","heartbeat_front_addr":"10.20.193.109:6805/2245921878","state":["exists","up"]},{"osd":1,"uuid":"e6eec321-e1d9-4e78-b628-3c481e779dbe","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6802","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6803","nonce":718078106}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6804","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6805","nonce":718078106}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6808","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6809","nonce":718078106}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6806","nonce":718078106},{"type":"v1","addr":"10.20.193.13:6807","nonce":718078106}]},"public_addr":"10.20.193.13:6803/718078106","cluster_addr":"10.20.193.13:6805/718078106","heartbeat_back_addr":"10.20.193.13:6809/718078106","heartbeat_front_addr":"10.20.193.13:6807/718078106","state":["exists","up"]},{"osd":2,"uuid":"be4c038f-a78e-42bd-ba8f-8849d20530be","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":21,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6808","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6809","nonce":651929879}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6810","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6811","nonce":651929879}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6814","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6815","nonce":651929879}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6812","nonce":651929879},{"type":"v1","addr":"10.20.193.109:6813","nonce":651929879}]},"public_addr":"10.20.193.109:6809/651929879","cluster_addr":"10.20.193.109:6811/651929879","heartbeat_back_addr":"10.20.193.109:6815/651929879","heartbeat_front_addr":"10.20.193.109:6813/651929879","state":["exists","up"]},{"osd":3,"uuid":"af667de4-1dd1-4780-9f2e-77be1ee22978","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6810","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6811","nonce":1509171993}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6812","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6813","nonce":1509171993}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6816","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6817","nonce":1509171993}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6814","nonce":1509171993},{"type":"v1","addr":"10.20.193.13:6815","nonce":1509171993}]},"public_addr":"10.20.193.13:6811/1509171993","cluster_addr":"10.20.193.13:6813/1509171993","heartbeat_back_addr":"10.20.193.13:6817/1509171993","heartbeat_front_addr":"10.20.193.13:6815/1509171993","state":["exists","up"]},{"osd":4,"uuid":"5158c012-8536-4d05-b0c8-b193760b3270","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6816","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6817","nonce":2193513713}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6818","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6819","nonce":2193513713}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6822","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6823","nonce":2193513713}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6820","nonce":2193513713},{"type":"v1","addr":"10.20.193.109:6821","nonce":2193513713}]},"public_addr":"10.20.193.109:6817/2193513713","cluster_addr":"10.20.193.109:6819/2193513713","heartbeat_back_addr":"10.20.193.109:6823/2193513713","heartbeat_front_addr":"10.20.193.109:6821/2193513713","state":["exists","up"]},{"osd":5,"uuid":"5eed88b3-f43a-431e-9d7a-9f3f692c146d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6818","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6819","nonce":998162284}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6820","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6821","nonce":998162284}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6824","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6825","nonce":998162284}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6822","nonce":998162284},{"type":"v1","addr":"10.20.193.13:6823","nonce":998162284}]},"public_addr":"10.20.193.13:6819/998162284","cluster_addr":"10.20.193.13:6821/998162284","heartbeat_back_addr":"10.20.193.13:6825/998162284","heartbeat_front_addr":"10.20.193.13:6823/998162284","state":["exists","up"]},{"osd":6,"uuid":"cf041061-7cd2-4817-9e2b-e44c252d7683","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6824","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6825","nonce":4106533314}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6826","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6827","nonce":4106533314}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6830","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6831","nonce":4106533314}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.109:6828","nonce":4106533314},{"type":"v1","addr":"10.20.193.109:6829","nonce":4106533314}]},"public_addr":"10.20.193.109:6825/4106533314","cluster_addr":"10.20.193.109:6827/4106533314","heartbeat_back_addr":"10.20.193.109:6831/4106533314","heartbeat_front_addr":"10.20.193.109:6829/4106533314","state":["exists","up"]},{"osd":7,"uuid":"cf608fa4-0e9b-4869-b1fa-a0252909b4b1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6826","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6827","nonce":3514865246}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6828","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6829","nonce":3514865246}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6832","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6833","nonce":3514865246}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.13:6830","nonce":3514865246},{"type":"v1","addr":"10.20.193.13:6831","nonce":3514865246}]},"public_addr":"10.20.193.13:6827/3514865246","cluster_addr":"10.20.193.13:6829/3514865246","heartbeat_back_addr":"10.20.193.13:6833/3514865246","heartbeat_front_addr":"10.20.193.13:6831/3514865246","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:51.501579+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:51.889979+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:53.969568+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:54.498496+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:56.659745+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-21T20:13:57.115740+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:59.014104+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-21T20:13:59.877661+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.13:0/830603460":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/2774232212":"2026-02-22T20:13:19.138154+0000","10.20.193.13:6800/1146540833":"2026-02-22T20:12:55.438251+0000","10.20.193.13:0/4149008739":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/1972923668":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6800/2042582401":"2026-02-22T20:12:44.324105+0000","10.20.193.13:6800/1094902887":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/3208872013":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/2198659440":"2026-02-22T20:13:19.138154+0000","10.20.193.13:0/3556686916":"2026-02-22T20:12:44.324105+0000","10.20.193.13:6801/2042582401":"2026-02-22T20:12:44.324105+0000","10.20.193.13:0/3754496495":"2026-02-22T20:12:55.438251+0000","10.20.193.13:0/447355393":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6801/1146540833":"2026-02-22T20:12:55.438251+0000","10.20.193.13:6801/1094902887":"2026-02-22T20:13:19.138154+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-21T20:14:04.910 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.3 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.4 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.5 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.6 flush_pg_stats 2026-02-21T20:14:04.911 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph tell osd.7 flush_pg_stats 2026-02-21T20:14:05.036 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.037 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.040 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.041 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.056 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.065 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.090 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.116 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.251 INFO:teuthology.orchestra.run.trial013.stdout:90194313220 2026-02-21T20:14:05.251 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-21T20:14:05.254 INFO:teuthology.orchestra.run.trial013.stdout:90194313221 2026-02-21T20:14:05.255 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-21T20:14:05.272 INFO:teuthology.orchestra.run.trial013.stdout:68719476741 2026-02-21T20:14:05.272 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-21T20:14:05.280 INFO:teuthology.orchestra.run.trial013.stdout:77309411331 2026-02-21T20:14:05.280 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-21T20:14:05.288 INFO:teuthology.orchestra.run.trial013.stdout:81604378628 2026-02-21T20:14:05.288 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-21T20:14:05.289 INFO:teuthology.orchestra.run.trial013.stdout:98784247810 2026-02-21T20:14:05.290 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-21T20:14:05.294 INFO:teuthology.orchestra.run.trial013.stdout:68719476742 2026-02-21T20:14:05.294 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-21T20:14:05.300 INFO:teuthology.orchestra.run.trial013.stdout:103079215107 2026-02-21T20:14:05.300 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-21T20:14:05.376 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.399 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.399 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.402 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.418 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.419 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.425 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:05 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:14:05.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:05 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/370927687' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-21T20:14:05.440 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:05 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/4004504793' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-21T20:14:05.472 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:05.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:05 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:14:05.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:05 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/370927687' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-21T20:14:05.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:05 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/4004504793' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-21T20:14:05.624 INFO:teuthology.orchestra.run.trial013.stdout:77309411330 2026-02-21T20:14:05.626 INFO:teuthology.orchestra.run.trial013.stdout:90194313219 2026-02-21T20:14:05.635 INFO:teuthology.orchestra.run.trial013.stdout:68719476740 2026-02-21T20:14:05.636 INFO:teuthology.orchestra.run.trial013.stdout:90194313220 2026-02-21T20:14:05.637 INFO:teuthology.orchestra.run.trial013.stdout:68719476741 2026-02-21T20:14:05.653 INFO:teuthology.orchestra.run.trial013.stdout:98784247809 2026-02-21T20:14:05.656 INFO:teuthology.orchestra.run.trial013.stdout:81604378627 2026-02-21T20:14:05.671 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411331 got 77309411330 for osd.2 2026-02-21T20:14:05.686 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313220 got 90194313219 for osd.4 2026-02-21T20:14:05.691 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476740 for osd.0 2026-02-21T20:14:05.700 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247810 got 98784247809 for osd.6 2026-02-21T20:14:05.705 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378628 got 81604378627 for osd.3 2026-02-21T20:14:05.706 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313221 got 90194313220 for osd.5 2026-02-21T20:14:05.717 INFO:teuthology.orchestra.run.trial013.stdout:103079215106 2026-02-21T20:14:05.731 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476742 got 68719476741 for osd.1 2026-02-21T20:14:05.757 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215107 got 103079215106 for osd.7 2026-02-21T20:14:06.525 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 213 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3619727901' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2490627304' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1858868217' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1618712113' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2842403464' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2247653333' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2780003413' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-21T20:14:06.526 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:06 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3373393772' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 213 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3619727901' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2490627304' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1858868217' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1618712113' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2842403464' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-21T20:14:06.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2247653333' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-21T20:14:06.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2780003413' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-21T20:14:06.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:06 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3373393772' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-21T20:14:06.672 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-21T20:14:06.688 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-21T20:14:06.692 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-21T20:14:06.701 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-21T20:14:06.705 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-21T20:14:06.707 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-21T20:14:06.732 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-21T20:14:06.758 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-21T20:14:06.795 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.840 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.841 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.844 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.844 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.846 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.890 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:06.891 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:07.035 INFO:teuthology.orchestra.run.trial013.stdout:77309411330 2026-02-21T20:14:07.074 INFO:teuthology.orchestra.run.trial013.stdout:90194313220 2026-02-21T20:14:07.076 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411331 got 77309411330 for osd.2 2026-02-21T20:14:07.081 INFO:teuthology.orchestra.run.trial013.stdout:98784247809 2026-02-21T20:14:07.082 INFO:teuthology.orchestra.run.trial013.stdout:90194313219 2026-02-21T20:14:07.084 INFO:teuthology.orchestra.run.trial013.stdout:68719476740 2026-02-21T20:14:07.086 INFO:teuthology.orchestra.run.trial013.stdout:81604378627 2026-02-21T20:14:07.118 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313221 got 90194313220 for osd.5 2026-02-21T20:14:07.122 INFO:teuthology.orchestra.run.trial013.stdout:103079215106 2026-02-21T20:14:07.127 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247810 got 98784247809 for osd.6 2026-02-21T20:14:07.131 INFO:teuthology.orchestra.run.trial013.stdout:68719476741 2026-02-21T20:14:07.140 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476740 for osd.0 2026-02-21T20:14:07.144 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313220 got 90194313219 for osd.4 2026-02-21T20:14:07.162 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378628 got 81604378627 for osd.3 2026-02-21T20:14:07.175 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476742 got 68719476741 for osd.1 2026-02-21T20:14:07.179 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215107 got 103079215106 for osd.7 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2584863675' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/962073693' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/72413645' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3225640486' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2159909214' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2487979105' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2876468969' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-21T20:14:07.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:07 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2410737834' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2584863675' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/962073693' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/72413645' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3225640486' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2159909214' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2487979105' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2876468969' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-21T20:14:07.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:07 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2410737834' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-21T20:14:08.077 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-21T20:14:08.119 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-21T20:14:08.128 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-21T20:14:08.142 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-21T20:14:08.145 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-21T20:14:08.163 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-21T20:14:08.176 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-21T20:14:08.179 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-21T20:14:08.194 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.239 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.288 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.289 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.290 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.295 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.317 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.323 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.348 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:08 trial013 ceph-mon[35520]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:08.442 INFO:teuthology.orchestra.run.trial013.stdout:77309411332 2026-02-21T20:14:08.484 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411331 got 77309411332 for osd.2 2026-02-21T20:14:08.484 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.484 INFO:teuthology.orchestra.run.trial013.stdout:90194313221 2026-02-21T20:14:08.523 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313221 got 90194313221 for osd.5 2026-02-21T20:14:08.523 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.524 INFO:teuthology.orchestra.run.trial013.stdout:68719476741 2026-02-21T20:14:08.529 INFO:teuthology.orchestra.run.trial013.stdout:90194313220 2026-02-21T20:14:08.530 INFO:teuthology.orchestra.run.trial013.stdout:81604378628 2026-02-21T20:14:08.532 INFO:teuthology.orchestra.run.trial013.stdout:98784247811 2026-02-21T20:14:08.533 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:08 trial109 ceph-mon[40784]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:08.540 INFO:teuthology.orchestra.run.trial013.stdout:103079215108 2026-02-21T20:14:08.540 INFO:teuthology.orchestra.run.trial013.stdout:68719476742 2026-02-21T20:14:08.579 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476741 for osd.0 2026-02-21T20:14:08.579 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.587 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378628 got 81604378628 for osd.3 2026-02-21T20:14:08.587 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.590 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247810 got 98784247811 for osd.6 2026-02-21T20:14:08.590 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.595 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215107 got 103079215108 for osd.7 2026-02-21T20:14:08.595 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.604 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476742 got 68719476742 for osd.1 2026-02-21T20:14:08.604 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.625 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313220 got 90194313220 for osd.4 2026-02-21T20:14:08.625 DEBUG:teuthology.parallel:result is None 2026-02-21T20:14:08.625 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-21T20:14:08.625 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph pg dump --format=json 2026-02-21T20:14:08.779 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:08.990 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:08.990 INFO:teuthology.orchestra.run.trial013.stderr:dumped all 2026-02-21T20:14:09.027 INFO:teuthology.orchestra.run.trial013.stdout:{"pg_ready":true,"pg_map":{"version":39,"stamp":"2026-02-21T20:14:07.146187+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":146,"num_read_kb":127,"num_write":277,"num_write_kb":5804,"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":232,"ondisk_log_size":232,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":5871992832,"kb_used":219976,"kb_used_data":3700,"kb_used_omap":59,"kb_used_meta":215492,"kb_avail":5871772856,"statfs":{"total":6012920659968,"available":6012695404544,"internally_reserved":0,"allocated":3788800,"data_stored":2529126,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":60429,"internal_metadata":220664819},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[0,0,0,0,0,0,0,1],"upper_bound":256},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"25'232","reported_seq":288,"reported_epoch":26,"state":"active+clean","last_fresh":"2026-02-21T20:14:03.249955+0000","last_change":"2026-02-21T20:14:02.245965+0000","last_active":"2026-02-21T20:14:03.249955+0000","last_peered":"2026-02-21T20:14:03.249955+0000","last_clean":"2026-02-21T20:14:03.249955+0000","last_became_active":"2026-02-21T20:14:02.245099+0000","last_became_peered":"2026-02-21T20:14:02.245099+0000","last_unstale":"2026-02-21T20:14:03.249955+0000","last_undegraded":"2026-02-21T20:14:03.249955+0000","last_fullsized":"2026-02-21T20:14:03.249955+0000","mapping_epoch":24,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":25,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-21T20:13:56.228739+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-21T20:13:56.228739+0000","last_clean_scrub_stamp":"2026-02-21T20:13:56.228739+0000","objects_scrubbed":0,"log_size":232,"log_dups_size":0,"ondisk_log_size":232,"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-23T03:54:49.513662+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":146,"num_read_kb":127,"num_write":277,"num_write_kb":5804,"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},"up":[6,5,2],"acting":[6,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":6,"acting_primary":6,"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":146,"num_read_kb":127,"num_write":277,"num_write_kb":5804,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":232,"ondisk_log_size":232,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":7,"up_from":24,"seq":103079215108,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27212,"kb_used_data":248,"kb_used_omap":5,"kb_used_meta":26938,"kb_avail":733971892,"statfs":{"total":751615082496,"available":751587217408,"internally_reserved":0,"allocated":253952,"data_stored":96270,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":5514,"internal_metadata":27585142},"hb_peers":[0,1,2,3,4,5,6],"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":6,"up_from":23,"seq":98784247811,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27980,"kb_used_data":828,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971124,"statfs":{"total":751615082496,"available":751586430976,"internally_reserved":0,"allocated":847872,"data_stored":686638,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6167,"internal_metadata":27584489},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[0,0,0,0,0,0,0,1],"upper_bound":256},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":21,"seq":90194313221,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27980,"kb_used_data":828,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733971124,"statfs":{"total":751615082496,"available":751586430976,"internally_reserved":0,"allocated":847872,"data_stored":686638,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4225,"internal_metadata":27586431},"hb_peers":[0,1,2,3,4,6,7],"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":21,"seq":90194313220,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27212,"kb_used_data":248,"kb_used_omap":7,"kb_used_meta":26936,"kb_avail":733971892,"statfs":{"total":751615082496,"available":751587217408,"internally_reserved":0,"allocated":253952,"data_stored":96270,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":7475,"internal_metadata":27583181},"hb_peers":[0,1,2,3,5,6,7],"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":19,"seq":81604378628,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27212,"kb_used_data":248,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971892,"statfs":{"total":751615082496,"available":751587217408,"internally_reserved":0,"allocated":253952,"data_stored":96270,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8773,"internal_metadata":27581883},"hb_peers":[0,1,2,4,5,6,7],"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":18,"seq":77309411332,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27980,"kb_used_data":828,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971124,"statfs":{"total":751615082496,"available":751586430976,"internally_reserved":0,"allocated":847872,"data_stored":686638,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,3,4,5,6,7],"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":16,"seq":68719476742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27200,"kb_used_data":236,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971904,"statfs":{"total":751615082496,"available":751587229696,"internally_reserved":0,"allocated":241664,"data_stored":90201,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,2,3,4,5,6],"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":16,"seq":68719476741,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27200,"kb_used_data":236,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971904,"statfs":{"total":751615082496,"available":751587229696,"internally_reserved":0,"allocated":241664,"data_stored":90201,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8775,"internal_metadata":27581881},"hb_peers":[1,2,3,4,5,6],"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":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":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},{"poolid":1,"osd":6,"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-21T20:14:09.027 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph pg dump --format=json 2026-02-21T20:14:09.146 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:09.354 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:09.354 INFO:teuthology.orchestra.run.trial013.stderr:dumped all 2026-02-21T20:14:09.390 INFO:teuthology.orchestra.run.trial013.stdout:{"pg_ready":true,"pg_map":{"version":40,"stamp":"2026-02-21T20:14:09.146483+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":146,"num_read_kb":127,"num_write":277,"num_write_kb":5804,"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":232,"ondisk_log_size":232,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":5871992832,"kb_used":219976,"kb_used_data":3700,"kb_used_omap":59,"kb_used_meta":215492,"kb_avail":5871772856,"statfs":{"total":6012920659968,"available":6012695404544,"internally_reserved":0,"allocated":3788800,"data_stored":2529126,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":60429,"internal_metadata":220664819},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[0,0,0,0,0,0,0,1],"upper_bound":256},"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":"2.000296"},"pg_stats":[{"pgid":"1.0","version":"25'232","reported_seq":288,"reported_epoch":26,"state":"active+clean","last_fresh":"2026-02-21T20:14:03.249955+0000","last_change":"2026-02-21T20:14:02.245965+0000","last_active":"2026-02-21T20:14:03.249955+0000","last_peered":"2026-02-21T20:14:03.249955+0000","last_clean":"2026-02-21T20:14:03.249955+0000","last_became_active":"2026-02-21T20:14:02.245099+0000","last_became_peered":"2026-02-21T20:14:02.245099+0000","last_unstale":"2026-02-21T20:14:03.249955+0000","last_undegraded":"2026-02-21T20:14:03.249955+0000","last_fullsized":"2026-02-21T20:14:03.249955+0000","mapping_epoch":24,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":25,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-21T20:13:56.228739+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-21T20:13:56.228739+0000","last_clean_scrub_stamp":"2026-02-21T20:13:56.228739+0000","objects_scrubbed":0,"log_size":232,"log_dups_size":0,"ondisk_log_size":232,"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-23T03:54:49.513662+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":146,"num_read_kb":127,"num_write":277,"num_write_kb":5804,"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},"up":[6,5,2],"acting":[6,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":6,"acting_primary":6,"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":146,"num_read_kb":127,"num_write":277,"num_write_kb":5804,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":232,"ondisk_log_size":232,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":7,"up_from":24,"seq":103079215108,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27212,"kb_used_data":248,"kb_used_omap":5,"kb_used_meta":26938,"kb_avail":733971892,"statfs":{"total":751615082496,"available":751587217408,"internally_reserved":0,"allocated":253952,"data_stored":96270,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":5514,"internal_metadata":27585142},"hb_peers":[0,1,2,3,4,5,6],"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":6,"up_from":23,"seq":98784247811,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27980,"kb_used_data":828,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971124,"statfs":{"total":751615082496,"available":751586430976,"internally_reserved":0,"allocated":847872,"data_stored":686638,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6167,"internal_metadata":27584489},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[0,0,0,0,0,0,0,1],"upper_bound":256},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":21,"seq":90194313221,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27980,"kb_used_data":828,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733971124,"statfs":{"total":751615082496,"available":751586430976,"internally_reserved":0,"allocated":847872,"data_stored":686638,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4225,"internal_metadata":27586431},"hb_peers":[0,1,2,3,4,6,7],"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":21,"seq":90194313220,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27212,"kb_used_data":248,"kb_used_omap":7,"kb_used_meta":26936,"kb_avail":733971892,"statfs":{"total":751615082496,"available":751587217408,"internally_reserved":0,"allocated":253952,"data_stored":96270,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":7475,"internal_metadata":27583181},"hb_peers":[0,1,2,3,5,6,7],"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":19,"seq":81604378629,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27212,"kb_used_data":248,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971892,"statfs":{"total":751615082496,"available":751587217408,"internally_reserved":0,"allocated":253952,"data_stored":96270,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8773,"internal_metadata":27581883},"hb_peers":[0,1,2,4,5,6,7],"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":18,"seq":77309411332,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27980,"kb_used_data":828,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971124,"statfs":{"total":751615082496,"available":751586430976,"internally_reserved":0,"allocated":847872,"data_stored":686638,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,3,4,5,6,7],"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":16,"seq":68719476742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27200,"kb_used_data":236,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971904,"statfs":{"total":751615082496,"available":751587229696,"internally_reserved":0,"allocated":241664,"data_stored":90201,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,2,3,4,5,6],"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":16,"seq":68719476741,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27200,"kb_used_data":236,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971904,"statfs":{"total":751615082496,"available":751587229696,"internally_reserved":0,"allocated":241664,"data_stored":90201,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8775,"internal_metadata":27581881},"hb_peers":[1,2,3,4,5,6],"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":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":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},{"poolid":1,"osd":6,"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-21T20:14:09.390 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-21T20:14:09.390 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-21T20:14:09.390 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-21T20:14:09.390 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph health --format=json 2026-02-21T20:14:09.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3060225253' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-21T20:14:09.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2590726179' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-21T20:14:09.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1712841626' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-21T20:14:09.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1567072222' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-21T20:14:09.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1473018242' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-21T20:14:09.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1688857413' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-21T20:14:09.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/837813337' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-21T20:14:09.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:09 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/2544193621' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-21T20:14:09.506 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3060225253' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2590726179' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1712841626' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1567072222' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1473018242' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1688857413' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/837813337' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-21T20:14:09.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:09 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/2544193621' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-21T20:14:09.743 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:09.743 INFO:teuthology.orchestra.run.trial013.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-21T20:14:09.781 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-21T20:14:09.781 INFO:tasks.cephadm:Setup complete, yielding 2026-02-21T20:14:09.781 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-21T20:14:09.791 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:09.792 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch status' 2026-02-21T20:14:09.909 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:10.128 INFO:teuthology.orchestra.run.trial013.stdout:Backend: cephadm 2026-02-21T20:14:10.129 INFO:teuthology.orchestra.run.trial013.stdout:Available: Yes 2026-02-21T20:14:10.129 INFO:teuthology.orchestra.run.trial013.stdout:Paused: No 2026-02-21T20:14:10.164 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch ps' 2026-02-21T20:14:10.281 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:10.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:10 trial013 ceph-mon[35520]: from='client.14582 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:10.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:10 trial013 ceph-mon[35520]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:10.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:10 trial013 ceph-mon[35520]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:10.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:10 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3022641662' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-21T20:14:10.507 INFO:teuthology.orchestra.run.trial013.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-21T20:14:10.507 INFO:teuthology.orchestra.run.trial013.stdout:alertmanager.trial013 trial013 *:9093,9094 running (35s) 10s ago 64s 27.1M - 0.28.1 91c01b3cec9b ca4714c46979 2026-02-21T20:14:10.507 INFO:teuthology.orchestra.run.trial013.stdout:ceph-exporter.trial013 trial013 *:9926 running (68s) 10s ago 68s 8556k - 20.3.0-5291-g042df16c 9a39d96ac758 d8471fab90b2 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:ceph-exporter.trial109 trial109 *:9926 running (46s) 10s ago 46s 8892k - 20.3.0-5291-g042df16c 9a39d96ac758 bf5b247d0633 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:crash.trial013 trial013 running (67s) 10s ago 67s 7620k - 20.3.0-5291-g042df16c 9a39d96ac758 046223eb43d4 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:crash.trial109 trial109 running (46s) 10s ago 46s 7612k - 20.3.0-5291-g042df16c 9a39d96ac758 d79c1952dcb6 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:grafana.trial013 trial013 *:3000 running (34s) 10s ago 58s 119M - 12.3.1 5cdab57891ea 3e9618f669c6 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:mgr.trial013.ogreni trial013 *:9283,8765,8443 running (94s) 10s ago 94s 553M - 20.3.0-5291-g042df16c 9a39d96ac758 e8f1313cb3bf 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:mgr.trial109.bjivcz trial109 *:8443,9283,8765 running (44s) 10s ago 44s 493M - 20.3.0-5291-g042df16c 9a39d96ac758 dbac16e07dd4 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:mon.trial013 trial013 running (95s) 10s ago 96s 51.0M 2048M 20.3.0-5291-g042df16c 9a39d96ac758 54eab93856dc 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:mon.trial109 trial109 running (43s) 10s ago 43s 44.5M 2048M 20.3.0-5291-g042df16c 9a39d96ac758 82896cfcc8ec 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:node-exporter.trial013 trial013 *:9100 running (66s) 10s ago 66s 14.7M - 1.9.1 255ec253085f 2aa0b774b7d2 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:node-exporter.trial109 trial109 *:9100 running (44s) 10s ago 44s 10.9M - 1.9.1 255ec253085f d4829bde939c 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.0 trial109 running (20s) 10s ago 20s 31.9M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 06d8bc15f693 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.1 trial013 running (20s) 10s ago 20s 31.9M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 60b3326cdc3f 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.2 trial109 running (18s) 10s ago 18s 33.4M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 b07b9019099d 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.3 trial013 running (17s) 10s ago 17s 32.0M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 3fb271083978 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.4 trial109 running (15s) 10s ago 15s 32.0M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 22ea2895f666 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.5 trial013 running (15s) 10s ago 15s 32.3M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 7f17ede5c893 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.6 trial109 running (13s) 10s ago 13s 30.5M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 f518e238c082 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:osd.7 trial013 running (12s) 10s ago 12s 27.5M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 08bcd46f2c68 2026-02-21T20:14:10.508 INFO:teuthology.orchestra.run.trial013.stdout:prometheus.trial013 trial013 *:9095 running (34s) 10s ago 55s 40.5M - 3.6.0 4fcecf061b74 8dd67cfab515 2026-02-21T20:14:10.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:10 trial109 ceph-mon[40784]: from='client.14582 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:10.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:10 trial109 ceph-mon[40784]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:10.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:10 trial109 ceph-mon[40784]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:10.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:10 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3022641662' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-21T20:14:10.545 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch ls' 2026-02-21T20:14:10.661 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:alertmanager ?:9093,9094 1/1 10s ago 79s count:1 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:ceph-exporter ?:9926 2/2 10s ago 80s * 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:crash 2/2 10s ago 80s * 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:grafana ?:3000 1/1 10s ago 80s count:1 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:mgr 2/2 10s ago 81s count:2 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:mon 2/2 10s ago 47s trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109;count:2 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:node-exporter ?:9100 2/2 10s ago 79s * 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:osd.all-available-devices 8 10s ago 34s * 2026-02-21T20:14:10.882 INFO:teuthology.orchestra.run.trial013.stdout:prometheus ?:9095 1/1 10s ago 80s count:1 2026-02-21T20:14:10.918 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch host ls' 2026-02-21T20:14:11.032 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:11.243 INFO:teuthology.orchestra.run.trial013.stdout:HOST ADDR LABELS STATUS 2026-02-21T20:14:11.243 INFO:teuthology.orchestra.run.trial013.stdout:trial013 10.20.193.13 2026-02-21T20:14:11.243 INFO:teuthology.orchestra.run.trial013.stdout:trial109 10.20.193.109 2026-02-21T20:14:11.243 INFO:teuthology.orchestra.run.trial013.stdout:2 hosts in cluster 2026-02-21T20:14:11.278 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch device ls' 2026-02-21T20:14:11.396 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:11.418 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:11 trial013 ceph-mon[35520]: from='client.14594 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:11.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:11 trial109 ceph-mon[40784]: from='client.14594 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B47DEA 1788G No 10s ago Has a FileSystem, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B0025B 1788G No 10s ago Has a FileSystem, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme3n1 ssd Linux_91a04ec5617eeac2c55a 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme4n1 ssd Linux_72d94a858757ffe48f61 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme5n1 ssd Linux_18a780cc54c9143de407 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme6n1 ssd Linux_8e76149c786238411600 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_0325108BFCE7 1788G No 10s ago Has a FileSystem, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_0325108BFDDB 1788G No 10s ago Has a FileSystem, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme3n1 ssd Linux_c67515738102ad375fe6 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme4n1 ssd Linux_f24227909c28ec3c0eef 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme5n1 ssd Linux_bd924cdc5f66a5f30e41 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.614 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme6n1 ssd Linux_d9151203876c5759dc6d 700G No 10s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:11.652 INFO:teuthology.run_tasks:Running task vip... 2026-02-21T20:14:11.713 INFO:tasks.vip:Allocating static IPs for each host... 2026-02-21T20:14:11.713 INFO:tasks.vip:peername 10.20.193.13 2026-02-21T20:14:11.759 INFO:tasks.vip:10.20.193.13 in 10.20.192.0/20, pos 268 2026-02-21T20:14:11.761 INFO:tasks.vip:trial013.front.sepia.ceph.com static 192.168.1.13, vnet 192.168.0.0/16 2026-02-21T20:14:11.761 INFO:tasks.vip:VIPs are [IPv4Address('192.168.17.13')] 2026-02-21T20:14:11.761 DEBUG:teuthology.orchestra.run.trial013:> sudo ip route ls 2026-02-21T20:14:11.785 INFO:teuthology.orchestra.run.trial013.stdout:default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.13 metric 102 2026-02-21T20:14:11.785 INFO:teuthology.orchestra.run.trial013.stdout:10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.13 metric 102 2026-02-21T20:14:11.785 INFO:teuthology.orchestra.run.trial013.stdout:169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-21T20:14:11.786 INFO:tasks.vip:Configuring 192.168.1.13 on trial013.front.sepia.ceph.com iface enp1s0f0... 2026-02-21T20:14:11.786 DEBUG:teuthology.orchestra.run.trial013:> sudo ip addr add 192.168.1.13/16 dev enp1s0f0 2026-02-21T20:14:11.850 INFO:tasks.vip:peername 10.20.193.109 2026-02-21T20:14:11.852 INFO:tasks.vip:10.20.193.109 in 10.20.192.0/20, pos 364 2026-02-21T20:14:11.854 INFO:tasks.vip:trial109.front.sepia.ceph.com static 192.168.1.109, vnet 192.168.0.0/16 2026-02-21T20:14:11.854 DEBUG:teuthology.orchestra.run.trial109:> sudo ip route ls 2026-02-21T20:14:11.880 INFO:teuthology.orchestra.run.trial109.stdout:default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.109 metric 102 2026-02-21T20:14:11.880 INFO:teuthology.orchestra.run.trial109.stdout:10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.109 metric 102 2026-02-21T20:14:11.880 INFO:teuthology.orchestra.run.trial109.stdout:169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-21T20:14:11.881 INFO:tasks.vip:Configuring 192.168.1.109 on trial109.front.sepia.ceph.com iface enp1s0f0... 2026-02-21T20:14:11.881 DEBUG:teuthology.orchestra.run.trial109:> sudo ip addr add 192.168.1.109/16 dev enp1s0f0 2026-02-21T20:14:11.945 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-21T20:14:11.958 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:11.958 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch device ls --refresh' 2026-02-21T20:14:12.077 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B47DEA 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B0025B 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme3n1 ssd Linux_91a04ec5617eeac2c55a 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme4n1 ssd Linux_72d94a858757ffe48f61 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme5n1 ssd Linux_18a780cc54c9143de407 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme6n1 ssd Linux_8e76149c786238411600 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_0325108BFCE7 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_0325108BFDDB 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme3n1 ssd Linux_c67515738102ad375fe6 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme4n1 ssd Linux_f24227909c28ec3c0eef 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme5n1 ssd Linux_bd924cdc5f66a5f30e41 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.289 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme6n1 ssd Linux_d9151203876c5759dc6d 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:12.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:12 trial013 ceph-mon[35520]: from='client.14598 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:12.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:12 trial013 ceph-mon[35520]: from='client.14602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:12.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:12 trial013 ceph-mon[35520]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:12.305 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:12 trial013 ceph-mon[35520]: from='client.14606 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:12.326 INFO:teuthology.run_tasks:Running task exec... 2026-02-21T20:14:12.339 INFO:teuthology.task.exec:Executing custom commands... 2026-02-21T20:14:12.340 INFO:teuthology.task.exec:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:12.340 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -c 'systemctl stop nfs-server' 2026-02-21T20:14:12.369 INFO:teuthology.task.exec:Running commands on role host.b host ubuntu@trial109.front.sepia.ceph.com 2026-02-21T20:14:12.369 DEBUG:teuthology.orchestra.run.trial109:> sudo TESTDIR=/home/ubuntu/cephtest bash -c 'systemctl stop nfs-server' 2026-02-21T20:14:12.398 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-21T20:14:12.413 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:12.413 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2026-02-21T20:14:12.529 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:12.533 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:12 trial109 ceph-mon[40784]: from='client.14598 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:12.533 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:12 trial109 ceph-mon[40784]: from='client.14602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:12.533 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:12 trial109 ceph-mon[40784]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:12.533 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:12 trial109 ceph-mon[40784]: from='client.14606 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:12.754 INFO:teuthology.orchestra.run.trial013.stdout:Scheduled rgw.foorgw update... 2026-02-21T20:14:12.798 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 192.168.17.13/16' 2026-02-21T20:14:12.917 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:13.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:13.452 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='client.14614 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:13 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='client.14614 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:13.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:13 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='client.14618 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: Saving service rgw.foorgw spec with placement count:2 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "192.168.17.13/16", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: osdmap e27: 8 total, 8 up, 8 in 2026-02-21T20:14:14.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:14 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2026-02-21T20:14:14.702 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='client.14618 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: Saving service rgw.foorgw spec with placement count:2 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "192.168.17.13/16", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: osdmap e27: 8 total, 8 up, 8 in 2026-02-21T20:14:14.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:14 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2026-02-21T20:14:15.123 INFO:teuthology.run_tasks:Running task exec... 2026-02-21T20:14:15.140 INFO:teuthology.task.exec:Executing custom commands... 2026-02-21T20:14:15.140 INFO:teuthology.task.exec:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:15.140 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2026-02-21T20:14:15.460 INFO:teuthology.orchestra.run.trial013.stdout:Last metadata expiration check: 0:02:28 ago on Sat 21 Feb 2026 08:11:47 PM UTC. 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:Dependencies resolved. 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: Package Arch Version Repository Size 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:Installing: 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:Installing dependencies: 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:Transaction Summary 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:================================================================================ 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout:Install 5 Packages 2026-02-21T20:14:15.548 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:15.549 INFO:teuthology.orchestra.run.trial013.stdout:Total download size: 6.6 M 2026-02-21T20:14:15.549 INFO:teuthology.orchestra.run.trial013.stdout:Installed size: 86 M 2026-02-21T20:14:15.549 INFO:teuthology.orchestra.run.trial013.stdout:Downloading Packages: 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial109.kbjgjv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial109.kbjgjv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: Deploying daemon rgw.foorgw.trial109.kbjgjv on trial109 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: osdmap e28: 8 total, 8 up, 8 in 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: Saving service nfs.foo spec with placement count:1 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: Saving service ingress.nfs.foo spec with placement count:2 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: pgmap v45: 33 pgs: 21 creating+peering, 11 unknown, 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial013.nloqma", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-21T20:14:15.613 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial013.nloqma", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-21T20:14:15.614 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.614 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:15.614 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:15 trial013 ceph-mon[35520]: Deploying daemon rgw.foorgw.trial013.nloqma on trial013 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial109.kbjgjv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial109.kbjgjv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: Deploying daemon rgw.foorgw.trial109.kbjgjv on trial109 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: osdmap e28: 8 total, 8 up, 8 in 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: Saving service nfs.foo spec with placement count:1 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: Saving service ingress.nfs.foo spec with placement count:2 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: pgmap v45: 33 pgs: 21 creating+peering, 11 unknown, 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial013.nloqma", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial013.nloqma", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-21T20:14:15.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:15.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:15.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:15 trial109 ceph-mon[40784]: Deploying daemon rgw.foorgw.trial013.nloqma on trial013 2026-02-21T20:14:16.098 INFO:teuthology.orchestra.run.trial013.stdout:(1/5): python3-jmespath-1.0.1-1.el9.noarch.rpm 707 kB/s | 48 kB 00:00 2026-02-21T20:14:16.186 INFO:teuthology.orchestra.run.trial013.stdout:(2/5): python3-urllib3-1.26.5-7.el9.noarch.rpm 1.4 MB/s | 218 kB 00:00 2026-02-21T20:14:16.561 INFO:teuthology.orchestra.run.trial013.stdout:(3/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 301 kB/s | 113 kB 00:00 2026-02-21T20:14:16.581 INFO:teuthology.orchestra.run.trial013.stdout:(4/5): python3-boto3-1.28.62-1.el9.noarch.rpm 298 kB/s | 164 kB 00:00 2026-02-21T20:14:16.955 INFO:teuthology.orchestra.run.trial013.stdout:(5/5): python3-botocore-1.31.62-2.el9.noarch.rp 7.1 MB/s | 6.1 MB 00:00 2026-02-21T20:14:16.957 INFO:teuthology.orchestra.run.trial013.stdout:-------------------------------------------------------------------------------- 2026-02-21T20:14:16.957 INFO:teuthology.orchestra.run.trial013.stdout:Total 4.7 MB/s | 6.6 MB 00:01 2026-02-21T20:14:16.974 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction check 2026-02-21T20:14:16.981 INFO:teuthology.orchestra.run.trial013.stdout:Transaction check succeeded. 2026-02-21T20:14:16.981 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction test 2026-02-21T20:14:17.026 INFO:teuthology.orchestra.run.trial013.stdout:Transaction test succeeded. 2026-02-21T20:14:17.027 INFO:teuthology.orchestra.run.trial013.stdout:Running transaction 2026-02-21T20:14:17.097 INFO:teuthology.orchestra.run.trial013.stdout: Preparing : 1/1 2026-02-21T20:14:17.122 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 1/5 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: Saving service rgw.foorgw spec with placement count:2 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:17.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: osdmap e29: 8 total, 8 up, 8 in 2026-02-21T20:14:17.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/1927545179' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-21T20:14:17.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1288740425' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-21T20:14:17.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-21T20:14:17.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: mgrmap e20: trial013.ogreni(active, since 56s), standbys: trial109.bjivcz 2026-02-21T20:14:17.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:16 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: Saving service rgw.foorgw spec with placement count:2 2026-02-21T20:14:17.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: osdmap e29: 8 total, 8 up, 8 in 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/1927545179' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1288740425' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: mgrmap e20: trial013.ogreni(active, since 56s), standbys: trial109.bjivcz 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:16 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:17.697 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 2/5 2026-02-21T20:14:17.716 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2026-02-21T20:14:17.744 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2026-02-21T20:14:17.760 INFO:teuthology.orchestra.run.trial013.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2026-02-21T20:14:17.896 INFO:teuthology.orchestra.run.trial013.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2026-02-21T20:14:17.896 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 1/5 2026-02-21T20:14:17.896 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 2/5 2026-02-21T20:14:17.897 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2026-02-21T20:14:17.897 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout:Installed: 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout: python3-jmespath-1.0.1-1.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:17.951 INFO:teuthology.orchestra.run.trial013.stdout:Complete! 2026-02-21T20:14:17.982 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2026-02-21T20:14:18.103 INFO:teuthology.orchestra.run.trial013.stderr:Inferring fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:14:18.103 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: Checking dashboard <-> RGW credentials 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1288740425' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-21T20:14:18.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-21T20:14:18.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: osdmap e30: 8 total, 8 up, 8 in 2026-02-21T20:14:18.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: pgmap v48: 65 pgs: 9 active+clean, 22 creating+peering, 34 unknown; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:18.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:17 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:18.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:18.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:18.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:18.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:18.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: Checking dashboard <-> RGW credentials 2026-02-21T20:14:18.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1288740425' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-21T20:14:18.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-21T20:14:18.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: osdmap e30: 8 total, 8 up, 8 in 2026-02-21T20:14:18.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: pgmap v48: 65 pgs: 9 active+clean, 22 creating+peering, 34 unknown; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-21T20:14:18.285 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:17 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:19.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:19 trial013 ceph-mon[35520]: osdmap e31: 8 total, 8 up, 8 in 2026-02-21T20:14:19.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:19 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/4117904011' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:19 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:19 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:19 trial013 ceph-mon[35520]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:19 trial109 ceph-mon[40784]: osdmap e31: 8 total, 8 up, 8 in 2026-02-21T20:14:19.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:19 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/4117904011' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:19 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:19 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:19.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:19 trial109 ceph-mon[40784]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-21T20:14:20.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:20 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-21T20:14:20.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:20 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-21T20:14:20.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:20 trial013 ceph-mon[35520]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-21T20:14:20.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:20 trial013 ceph-mon[35520]: osdmap e32: 8 total, 8 up, 8 in 2026-02-21T20:14:20.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:20 trial013 ceph-mon[35520]: pgmap v51: 97 pgs: 18 active+clean, 22 creating+peering, 57 unknown; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail; 0 B/s wr, 0 op/s 2026-02-21T20:14:20.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:20 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:14:20.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:20 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-21T20:14:20.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:20 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-21T20:14:20.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:20 trial109 ceph-mon[40784]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-21T20:14:20.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:20 trial109 ceph-mon[40784]: osdmap e32: 8 total, 8 up, 8 in 2026-02-21T20:14:20.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:20 trial109 ceph-mon[40784]: pgmap v51: 97 pgs: 18 active+clean, 22 creating+peering, 57 unknown; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail; 0 B/s wr, 0 op/s 2026-02-21T20:14:20.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:20 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:14:21.174 INFO:teuthology.run_tasks:Running task python... 2026-02-21T20:14:21.195 INFO:tasks.python:Running python on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:21.195 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2026-02-21T20:14:21.196 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest python3 2026-02-21T20:14:21.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: osdmap e33: 8 total, 8 up, 8 in 2026-02-21T20:14:21.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.109:0/4117904011' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1657110477' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-21T20:14:21.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/1657110477' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-21T20:14:21.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-21T20:14:21.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-21T20:14:21.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-21T20:14:21.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: osdmap e34: 8 total, 8 up, 8 in 2026-02-21T20:14:21.454 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:21 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-21T20:14:21.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: osdmap e33: 8 total, 8 up, 8 in 2026-02-21T20:14:21.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.109:0/4117904011' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1657110477' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/1657110477' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? ' entity='client.rgw.foorgw.trial109.kbjgjv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: osdmap e34: 8 total, 8 up, 8 in 2026-02-21T20:14:21.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:21 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-21T20:14:22.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:22 trial013 ceph-mon[35520]: pgmap v54: 161 pgs: 91 active+clean, 14 creating+peering, 56 unknown; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 6.0 KiB/s rd, 2.7 KiB/s wr, 10 op/s 2026-02-21T20:14:22.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:22 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-21T20:14:22.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:22 trial013 ceph-mon[35520]: osdmap e35: 8 total, 8 up, 8 in 2026-02-21T20:14:22.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:22 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2026-02-21T20:14:22.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:22 trial109 ceph-mon[40784]: pgmap v54: 161 pgs: 91 active+clean, 14 creating+peering, 56 unknown; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 6.0 KiB/s rd, 2.7 KiB/s wr, 10 op/s 2026-02-21T20:14:22.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:22 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/665538522' entity='mgr.trial013.ogreni' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-21T20:14:22.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:22 trial109 ceph-mon[40784]: osdmap e35: 8 total, 8 up, 8 in 2026-02-21T20:14:22.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:22 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2026-02-21T20:14:23.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: Creating key for client.nfs.foo.0.0.trial013.huutpu 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: Ensuring 0 is in the ganesha grace table 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2026-02-21T20:14:23.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: Rados config object exists: conf-nfs.foo 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: Creating key for client.nfs.foo.0.0.trial013.huutpu-rgw 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: Bind address in nfs.foo.0.0.trial013.huutpu's ganesha conf is defaulting to empty 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: Deploying daemon nfs.foo.0.0.trial013.huutpu on trial013 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.536 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-21T20:14:23.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2026-02-21T20:14:23.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: osdmap e36: 8 total, 8 up, 8 in 2026-02-21T20:14:23.537 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:23 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-21T20:14:23.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:23.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: Creating key for client.nfs.foo.0.0.trial013.huutpu 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: Ensuring 0 is in the ganesha grace table 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: Rados config object exists: conf-nfs.foo 2026-02-21T20:14:23.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: Creating key for client.nfs.foo.0.0.trial013.huutpu-rgw 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial013.huutpu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: Bind address in nfs.foo.0.0.trial013.huutpu's ganesha conf is defaulting to empty 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: Deploying daemon nfs.foo.0.0.trial013.huutpu on trial013 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2026-02-21T20:14:23.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: osdmap e36: 8 total, 8 up, 8 in 2026-02-21T20:14:23.706 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:23 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-21T20:14:24.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:24 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-21T20:14:24.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:24 trial109 ceph-mon[40784]: Deploying daemon haproxy.nfs.foo.trial013.geketp on trial013 2026-02-21T20:14:24.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:24 trial109 ceph-mon[40784]: pgmap v57: 193 pgs: 115 active+clean, 18 creating+peering, 60 unknown; 580 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 48 KiB/s rd, 5.2 KiB/s wr, 102 op/s 2026-02-21T20:14:24.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:24 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-21T20:14:24.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:24 trial109 ceph-mon[40784]: osdmap e37: 8 total, 8 up, 8 in 2026-02-21T20:14:24.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:24 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-21T20:14:24.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:24 trial013 ceph-mon[35520]: Deploying daemon haproxy.nfs.foo.trial013.geketp on trial013 2026-02-21T20:14:24.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:24 trial013 ceph-mon[35520]: pgmap v57: 193 pgs: 115 active+clean, 18 creating+peering, 60 unknown; 580 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 48 KiB/s rd, 5.2 KiB/s wr, 102 op/s 2026-02-21T20:14:24.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:24 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-21T20:14:24.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:24 trial013 ceph-mon[35520]: osdmap e37: 8 total, 8 up, 8 in 2026-02-21T20:14:26.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:26 trial013 ceph-mon[35520]: osdmap e38: 8 total, 8 up, 8 in 2026-02-21T20:14:26.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:26 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2026-02-21T20:14:26.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:26 trial013 ceph-mon[35520]: pgmap v60: 225 pgs: 160 active+clean, 18 creating+peering, 47 unknown; 587 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 279 KiB/s rd, 15 KiB/s wr, 604 op/s 2026-02-21T20:14:26.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:26.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:26.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:26 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:26.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:26 trial109 ceph-mon[40784]: osdmap e38: 8 total, 8 up, 8 in 2026-02-21T20:14:26.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:26 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2026-02-21T20:14:26.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:26 trial109 ceph-mon[40784]: pgmap v60: 225 pgs: 160 active+clean, 18 creating+peering, 47 unknown; 587 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 279 KiB/s rd, 15 KiB/s wr, 604 op/s 2026-02-21T20:14:26.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:26 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:26.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:26 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:26.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:26 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:27.127 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-21T20:14:27.144 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:27.144 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2026-02-21T20:14:27.262 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:27.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:27 trial013 ceph-mon[35520]: Deploying daemon haproxy.nfs.foo.trial109.isgmkh on trial109 2026-02-21T20:14:27.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:27 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2026-02-21T20:14:27.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:27 trial013 ceph-mon[35520]: osdmap e39: 8 total, 8 up, 8 in 2026-02-21T20:14:27.378 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:27 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2026-02-21T20:14:27.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:27 trial109 ceph-mon[40784]: Deploying daemon haproxy.nfs.foo.trial109.isgmkh on trial109 2026-02-21T20:14:27.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2026-02-21T20:14:27.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:27 trial109 ceph-mon[40784]: osdmap e39: 8 total, 8 up, 8 in 2026-02-21T20:14:27.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:27 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout:{ 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout: "bind": "/foouser", 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout: "cluster": "foo", 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout: "mode": "RW", 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout: "path": "/", 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout: "squash": "none" 2026-02-21T20:14:27.600 INFO:teuthology.orchestra.run.trial013.stdout:} 2026-02-21T20:14:27.640 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-21T20:14:27.656 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2026-02-21T20:14:27.656 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch ls -f json 2026-02-21T20:14:27.778 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:28.000 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:28.000 INFO:teuthology.orchestra.run.trial013.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:51.180605Z", "last_refresh": "2026-02-21T20:14:16.930881Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:23.653307Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"certificate_source": "cephadm-signed", "prio_limit": 5, "ssl": true, "stats_period": 5}, "status": {"created": "2026-02-21T20:12:50.171247Z", "last_refresh": "2026-02-21T20:14:16.614033Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:24.319964Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-21T20:12:49.915385Z", "last_refresh": "2026-02-21T20:14:16.614109Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "certificate_source": "cephadm-signed", "protocol": "https", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.674943Z", "last_refresh": "2026-02-21T20:14:16.930937Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:27.259723Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "enable_haproxy_protocol": true, "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_cert_source": "reuse_service_cert", "monitor_port": 9049, "virtual_ip": "192.168.17.13/16"}, "status": {"created": "2026-02-21T20:14:15.082348Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.13/16"}}, {"events": ["2026-02-21T20:13:26.339728Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-21T20:12:49.670354Z", "last_refresh": "2026-02-21T20:14:16.614202Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:32.204025Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial013:10.20.193.13=trial013", "trial109:10.20.193.109=trial109"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-21T20:13:23.846895Z", "last_refresh": "2026-02-21T20:14:16.614243Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:14:23.067122Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"enable_haproxy_protocol": true, "port": 12049, "virtual_ip": "192.168.17.13"}, "status": {"created": "2026-02-21T20:14:15.079891Z", "ports": [12049, 9587], "running": 0, "size": 1}}, {"events": ["2026-02-21T20:13:25.634075Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.944413Z", "last_refresh": "2026-02-21T20:14:16.614158Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:36.242091Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore", "osd_type": "classic", "termination_grace_period_seconds": 30}, "status": {"created": "2026-02-21T20:13:36.239319Z", "last_refresh": "2026-02-21T20:14:16.614283Z", "running": 8, "size": 8}}, {"events": ["2026-02-21T20:13:32.206450Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.418191Z", "last_refresh": "2026-02-21T20:14:16.930983Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:15.936409Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-21T20:14:15.933744Z", "last_refresh": "2026-02-21T20:14:16.614438Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-21T20:14:28.037 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-21T20:14:28.202 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: osdmap e40: 8 total, 8 up, 8 in 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: pgmap v63: 225 pgs: 193 active+clean, 15 creating+peering, 17 unknown; 588 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 281 KiB/s rd, 17 KiB/s wr, 604 op/s 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: Deploying daemon keepalived.nfs.foo.trial109.bgqykw on trial109 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:28.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:28 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:28.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='client.? 10.20.193.13:0/3370265064' entity='client.rgw.foorgw.trial013.nloqma' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2026-02-21T20:14:28.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: osdmap e40: 8 total, 8 up, 8 in 2026-02-21T20:14:28.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: pgmap v63: 225 pgs: 193 active+clean, 15 creating+peering, 17 unknown; 588 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 281 KiB/s rd, 17 KiB/s wr, 604 op/s 2026-02-21T20:14:28.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: Deploying daemon keepalived.nfs.foo.trial109.bgqykw on trial109 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:28.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:28 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:29.038 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch ls -f json 2026-02-21T20:14:29.157 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:29.168 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:29 trial109 ceph-mon[40784]: from='client.14716 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:29.168 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:29 trial109 ceph-mon[40784]: from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:29.383 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:29 trial013 ceph-mon[35520]: from='client.14716 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:29.384 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:29 trial013 ceph-mon[35520]: from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:29.384 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:29.384 INFO:teuthology.orchestra.run.trial013.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:51.180605Z", "last_refresh": "2026-02-21T20:14:16.930881Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:23.653307Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"certificate_source": "cephadm-signed", "prio_limit": 5, "ssl": true, "stats_period": 5}, "status": {"created": "2026-02-21T20:12:50.171247Z", "last_refresh": "2026-02-21T20:14:16.614033Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:24.319964Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-21T20:12:49.915385Z", "last_refresh": "2026-02-21T20:14:16.614109Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "certificate_source": "cephadm-signed", "protocol": "https", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.674943Z", "last_refresh": "2026-02-21T20:14:16.930937Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:27.259723Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "enable_haproxy_protocol": true, "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_cert_source": "reuse_service_cert", "monitor_port": 9049, "virtual_ip": "192.168.17.13/16"}, "status": {"created": "2026-02-21T20:14:15.082348Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.13/16"}}, {"events": ["2026-02-21T20:13:26.339728Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-21T20:12:49.670354Z", "last_refresh": "2026-02-21T20:14:16.614202Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:32.204025Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial013:10.20.193.13=trial013", "trial109:10.20.193.109=trial109"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-21T20:13:23.846895Z", "last_refresh": "2026-02-21T20:14:16.614243Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:14:23.067122Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"enable_haproxy_protocol": true, "port": 12049, "virtual_ip": "192.168.17.13"}, "status": {"created": "2026-02-21T20:14:15.079891Z", "ports": [12049, 9587], "running": 0, "size": 1}}, {"events": ["2026-02-21T20:13:25.634075Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.944413Z", "last_refresh": "2026-02-21T20:14:16.614158Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:36.242091Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore", "osd_type": "classic", "termination_grace_period_seconds": 30}, "status": {"created": "2026-02-21T20:13:36.239319Z", "last_refresh": "2026-02-21T20:14:16.614283Z", "running": 8, "size": 8}}, {"events": ["2026-02-21T20:13:32.206450Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.418191Z", "last_refresh": "2026-02-21T20:14:16.930983Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:15.936409Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-21T20:14:15.933744Z", "last_refresh": "2026-02-21T20:14:16.614438Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-21T20:14:29.422 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-21T20:14:30.423 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch ls -f json 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: pgmap v64: 225 pgs: 202 active+clean, 10 creating+peering, 13 unknown; 588 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 222 KiB/s rd, 14 KiB/s wr, 478 op/s 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:30.446 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:30 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:30.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: pgmap v64: 225 pgs: 202 active+clean, 10 creating+peering, 13 unknown; 588 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 222 KiB/s rd, 14 KiB/s wr, 478 op/s 2026-02-21T20:14:30.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:30.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:30.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:30.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:30.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:30.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:30 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:30.790 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:31.020 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:31.020 INFO:teuthology.orchestra.run.trial013.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:51.180605Z", "last_refresh": "2026-02-21T20:14:16.930881Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:23.653307Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"certificate_source": "cephadm-signed", "prio_limit": 5, "ssl": true, "stats_period": 5}, "status": {"created": "2026-02-21T20:12:50.171247Z", "last_refresh": "2026-02-21T20:14:16.614033Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:24.319964Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-21T20:12:49.915385Z", "last_refresh": "2026-02-21T20:14:16.614109Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "certificate_source": "cephadm-signed", "protocol": "https", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.674943Z", "last_refresh": "2026-02-21T20:14:16.930937Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:29.419662Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "enable_haproxy_protocol": true, "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_cert_source": "reuse_service_cert", "monitor_port": 9049, "virtual_ip": "192.168.17.13/16"}, "status": {"created": "2026-02-21T20:14:15.082348Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.13/16"}}, {"events": ["2026-02-21T20:13:26.339728Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-21T20:12:49.670354Z", "last_refresh": "2026-02-21T20:14:16.614202Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:32.204025Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial013:10.20.193.13=trial013", "trial109:10.20.193.109=trial109"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-21T20:13:23.846895Z", "last_refresh": "2026-02-21T20:14:16.614243Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:14:23.067122Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"enable_haproxy_protocol": true, "port": 12049, "virtual_ip": "192.168.17.13"}, "status": {"created": "2026-02-21T20:14:15.079891Z", "ports": [12049, 9587], "running": 0, "size": 1}}, {"events": ["2026-02-21T20:13:25.634075Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.944413Z", "last_refresh": "2026-02-21T20:14:16.614158Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:36.242091Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore", "osd_type": "classic", "termination_grace_period_seconds": 30}, "status": {"created": "2026-02-21T20:13:36.239319Z", "last_refresh": "2026-02-21T20:14:16.614283Z", "running": 8, "size": 8}}, {"events": ["2026-02-21T20:13:32.206450Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.418191Z", "last_refresh": "2026-02-21T20:14:16.930983Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:15.936409Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-21T20:14:15.933744Z", "last_refresh": "2026-02-21T20:14:16.614438Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-21T20:14:31.059 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: Deploying daemon keepalived.nfs.foo.trial013.uerfgp on trial013 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:31.453 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:31 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial013 interface enp1s0f0 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: 192.168.17.13 is in 192.168.0.0/16 on trial109 interface enp1s0f0 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: Deploying daemon keepalived.nfs.foo.trial013.uerfgp on trial013 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:31.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:31 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:32.060 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch ls -f json 2026-02-21T20:14:32.179 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:32.414 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:32.414 INFO:teuthology.orchestra.run.trial013.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:51.180605Z", "last_refresh": "2026-02-21T20:14:16.930881Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:23.653307Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"certificate_source": "cephadm-signed", "prio_limit": 5, "ssl": true, "stats_period": 5}, "status": {"created": "2026-02-21T20:12:50.171247Z", "last_refresh": "2026-02-21T20:14:16.930750Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:24.319964Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-21T20:12:49.915385Z", "last_refresh": "2026-02-21T20:14:16.930797Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "certificate_source": "cephadm-signed", "protocol": "https", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.674943Z", "last_refresh": "2026-02-21T20:14:16.930937Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:31.350685Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "enable_haproxy_protocol": true, "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_cert_source": "reuse_service_cert", "monitor_port": 9049, "virtual_ip": "192.168.17.13/16"}, "status": {"created": "2026-02-21T20:14:15.082348Z", "last_refresh": "2026-02-21T20:14:32.204958Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "192.168.17.13/16"}}, {"events": ["2026-02-21T20:13:26.339728Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-21T20:12:49.670354Z", "last_refresh": "2026-02-21T20:14:16.930699Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:32.204025Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial013:10.20.193.13=trial013", "trial109:10.20.193.109=trial109"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-21T20:13:23.846895Z", "last_refresh": "2026-02-21T20:14:16.930626Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:14:23.067122Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"enable_haproxy_protocol": true, "port": 12049, "virtual_ip": "192.168.17.13"}, "status": {"created": "2026-02-21T20:14:15.079891Z", "ports": [12049, 9587], "running": 0, "size": 1}}, {"events": ["2026-02-21T20:13:25.634075Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.944413Z", "last_refresh": "2026-02-21T20:14:16.930840Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:36.242091Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore", "osd_type": "classic", "termination_grace_period_seconds": 30}, "status": {"created": "2026-02-21T20:13:36.239319Z", "last_refresh": "2026-02-21T20:14:16.931028Z", "running": 8, "size": 8}}, {"events": ["2026-02-21T20:13:32.206450Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.418191Z", "last_refresh": "2026-02-21T20:14:16.930983Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:15.936409Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-21T20:14:15.933744Z", "last_refresh": "2026-02-21T20:14:16.931185Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-21T20:14:32.423 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: pgmap v65: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 60 KiB/s rd, 3.6 KiB/s wr, 119 op/s 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.424 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:32 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.455 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-21T20:14:32.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:32.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: pgmap v65: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 60 KiB/s rd, 3.6 KiB/s wr, 119 op/s 2026-02-21T20:14:32.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:32.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:32.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:32 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.456 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch ls -f json 2026-02-21T20:14:33.584 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:33.608 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:33.608 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:33.608 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.609 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.609 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:33.609 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:33.609 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.609 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:33.609 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:33 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.753 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:33.753 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:33.753 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.753 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.753 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:33.754 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:33.754 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.754 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:33.754 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:33 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:33.807 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:33.807 INFO:teuthology.orchestra.run.trial013.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:51.180605Z", "last_refresh": "2026-02-21T20:14:32.623902Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:23.653307Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"certificate_source": "cephadm-signed", "prio_limit": 5, "ssl": true, "stats_period": 5}, "status": {"created": "2026-02-21T20:12:50.171247Z", "last_refresh": "2026-02-21T20:14:32.204643Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:24.319964Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-21T20:12:49.915385Z", "last_refresh": "2026-02-21T20:14:32.204695Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "certificate_source": "cephadm-signed", "protocol": "https", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.674943Z", "last_refresh": "2026-02-21T20:14:32.623945Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:31.350685Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "enable_haproxy_protocol": true, "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_cert_source": "reuse_service_cert", "monitor_port": 9049, "virtual_ip": "192.168.17.13/16"}, "status": {"created": "2026-02-21T20:14:15.082348Z", "last_refresh": "2026-02-21T20:14:32.204958Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "192.168.17.13/16"}}, {"events": ["2026-02-21T20:13:26.339728Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-21T20:12:49.670354Z", "last_refresh": "2026-02-21T20:14:32.204758Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:32.204025Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial013:10.20.193.13=trial013", "trial109:10.20.193.109=trial109"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-21T20:13:23.846895Z", "last_refresh": "2026-02-21T20:14:32.204786Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:14:32.861705Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"enable_haproxy_protocol": true, "port": 12049, "virtual_ip": "192.168.17.13"}, "status": {"created": "2026-02-21T20:14:15.079891Z", "last_refresh": "2026-02-21T20:14:32.624177Z", "ports": [12049, 9587], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:25.634075Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.944413Z", "last_refresh": "2026-02-21T20:14:32.204727Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:36.242091Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore", "osd_type": "classic", "termination_grace_period_seconds": 30}, "status": {"created": "2026-02-21T20:13:36.239319Z", "last_refresh": "2026-02-21T20:14:32.204812Z", "running": 8, "size": 8}}, {"events": ["2026-02-21T20:13:32.206450Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.418191Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2026-02-21T20:14:15.936409Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-21T20:14:15.933744Z", "last_refresh": "2026-02-21T20:14:32.204916Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-21T20:14:33.849 INFO:tasks.cephadm:nfs.foo has 1/1 2026-02-21T20:14:33.849 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-21T20:14:33.867 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2026-02-21T20:14:33.867 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph orch ls -f json 2026-02-21T20:14:33.986 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:34.221 INFO:teuthology.orchestra.run.trial013.stdout: 2026-02-21T20:14:34.221 INFO:teuthology.orchestra.run.trial013.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:51.180605Z", "last_refresh": "2026-02-21T20:14:32.623902Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:23.653307Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"certificate_source": "cephadm-signed", "prio_limit": 5, "ssl": true, "stats_period": 5}, "status": {"created": "2026-02-21T20:12:50.171247Z", "last_refresh": "2026-02-21T20:14:32.204643Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:24.319964Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-21T20:12:49.915385Z", "last_refresh": "2026-02-21T20:14:32.204695Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "certificate_source": "cephadm-signed", "protocol": "https", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.674943Z", "last_refresh": "2026-02-21T20:14:32.623945Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:14:31.350685Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "enable_haproxy_protocol": true, "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_cert_source": "reuse_service_cert", "monitor_port": 9049, "virtual_ip": "192.168.17.13/16"}, "status": {"created": "2026-02-21T20:14:15.082348Z", "last_refresh": "2026-02-21T20:14:32.204958Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "192.168.17.13/16"}}, {"events": ["2026-02-21T20:13:26.339728Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-21T20:12:49.670354Z", "last_refresh": "2026-02-21T20:14:32.204758Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:32.204025Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial013:10.20.193.13=trial013", "trial109:10.20.193.109=trial109"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-21T20:13:23.846895Z", "last_refresh": "2026-02-21T20:14:32.204786Z", "running": 2, "size": 2}}, {"events": ["2026-02-21T20:14:32.861705Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"enable_haproxy_protocol": true, "port": 12049, "virtual_ip": "192.168.17.13"}, "status": {"created": "2026-02-21T20:14:15.079891Z", "last_refresh": "2026-02-21T20:14:32.624177Z", "ports": [12049, 9587], "running": 1, "size": 1}}, {"events": ["2026-02-21T20:13:25.634075Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.944413Z", "last_refresh": "2026-02-21T20:14:32.204727Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-21T20:13:36.242091Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore", "osd_type": "classic", "termination_grace_period_seconds": 30}, "status": {"created": "2026-02-21T20:13:36.239319Z", "last_refresh": "2026-02-21T20:14:32.204812Z", "running": 8, "size": 8}}, {"events": ["2026-02-21T20:13:32.206450Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "spec": {"certificate_source": "cephadm-signed", "ssl": true}, "status": {"created": "2026-02-21T20:12:50.418191Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2026-02-21T20:14:15.936409Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-21T20:14:15.933744Z", "last_refresh": "2026-02-21T20:14:32.204916Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-21T20:14:34.265 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2026-02-21T20:14:34.266 INFO:teuthology.run_tasks:Running task template.exec... 2026-02-21T20:14:34.282 INFO:tasks.template:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:34.282 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2026-02-21T20:14:34.308 INFO:teuthology.orchestra.run.trial013.stderr:+ mkdir /mnt/foo 2026-02-21T20:14:34.310 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2026-02-21T20:14:34.375 INFO:teuthology.orchestra.run.trial013.stderr:+ sleep 5 2026-02-21T20:14:34.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:34.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: Reconfiguring prometheus.trial013 deps ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:False', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'nfs_configured:False', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] -> ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:True', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'nfs_configured:True', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] (diff {'nfs_configured:False', 'ingress_configured:True', 'nfs_configured:True', 'ingress_configured:False'}) 2026-02-21T20:14:34.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: Reconfiguring daemon prometheus.trial013 on trial013 2026-02-21T20:14:34.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: pgmap v66: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 48 KiB/s rd, 2.9 KiB/s wr, 95 op/s 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:34 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: Reconfiguring prometheus.trial013 deps ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:False', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'nfs_configured:False', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] -> ['8765', 'alertmanager_configured:True', 'ceph-exporter_configured:True', 'ingress_configured:True', 'mgmt-gateway_configured:False', 'mgr.trial013.ogreni', 'mgr.trial109.bjivcz', 'nfs_configured:True', 'node-exporter_configured:True', 'nvmeof_configured:False', 'oauth2-proxy_configured:False', 'secure_monitoring_stack:False', 'smb_configured:False'] (diff {'nfs_configured:False', 'ingress_configured:True', 'nfs_configured:True', 'ingress_configured:False'}) 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: Reconfiguring daemon prometheus.trial013 on trial013 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: pgmap v66: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 48 KiB/s rd, 2.9 KiB/s wr, 95 op/s 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.599 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:34.600 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:34 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-21T20:14:35.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:35.704 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.705 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:35 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:35.785 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:35 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-21T20:14:36.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:36 trial013 ceph-mon[35520]: Checking dashboard <-> RGW credentials 2026-02-21T20:14:36.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:36 trial013 ceph-mon[35520]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-21T20:14:36.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:36 trial013 ceph-mon[35520]: pgmap v67: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 24 KiB/s rd, 791 B/s wr, 45 op/s 2026-02-21T20:14:36.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:36 trial109 ceph-mon[40784]: Checking dashboard <-> RGW credentials 2026-02-21T20:14:36.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:36 trial109 ceph-mon[40784]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-21T20:14:36.784 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:36 trial109 ceph-mon[40784]: pgmap v67: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 24 KiB/s rd, 791 B/s wr, 45 op/s 2026-02-21T20:14:38.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:38 trial109 ceph-mon[40784]: pgmap v68: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 22 KiB/s rd, 610 B/s wr, 40 op/s 2026-02-21T20:14:38.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:38 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:38.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:38 trial013 ceph-mon[35520]: pgmap v68: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 22 KiB/s rd, 610 B/s wr, 40 op/s 2026-02-21T20:14:38.703 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:38 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:39.381 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 192.168.17.13:/foouser /mnt/foo' 2026-02-21T20:14:39.405 INFO:teuthology.orchestra.run.trial013.stderr:+ mount -t nfs 192.168.17.13:/foouser /mnt/foo 2026-02-21T20:14:39.601 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2026-02-21T20:14:39.665 INFO:teuthology.orchestra.run.trial013.stderr:+ test -d /mnt/foo/foobucket 2026-02-21T20:14:39.669 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2026-02-21T20:14:39.733 INFO:teuthology.orchestra.run.trial013.stderr:+ find /mnt/foo -ls 2026-02-21T20:14:39.736 INFO:teuthology.orchestra.run.trial013.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Feb 21 20:14 /mnt/foo 2026-02-21T20:14:39.736 INFO:teuthology.orchestra.run.trial013.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Feb 21 20:14 /mnt/foo/foobucket 2026-02-21T20:14:39.736 INFO:teuthology.orchestra.run.trial013.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Feb 21 20:14 /mnt/foo/foobucket/myobject 2026-02-21T20:14:39.737 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2026-02-21T20:14:39.800 INFO:teuthology.orchestra.run.trial013.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2026-02-21T20:14:39.802 INFO:teuthology.orchestra.run.trial013.stdout:thebody 2026-02-21T20:14:39.804 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2026-02-21T20:14:39.866 INFO:teuthology.orchestra.run.trial013.stderr:+ echo test 2026-02-21T20:14:39.874 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2026-02-21T20:14:39.937 INFO:teuthology.orchestra.run.trial013.stderr:+ sync 2026-02-21T20:14:40.061 INFO:teuthology.run_tasks:Running task python... 2026-02-21T20:14:40.082 INFO:tasks.python:Running python on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:40.082 INFO:tasks.python:import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2026-02-21T20:14:40.082 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest python3 2026-02-21T20:14:40.291 INFO:teuthology.orchestra.run.trial013.stdout:b'test\n' 2026-02-21T20:14:40.312 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:40 trial013 ceph-mon[35520]: pgmap v69: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 19 KiB/s rd, 511 B/s wr, 35 op/s 2026-02-21T20:14:40.313 INFO:teuthology.run_tasks:Running task exec... 2026-02-21T20:14:40.331 INFO:teuthology.task.exec:Executing custom commands... 2026-02-21T20:14:40.332 INFO:teuthology.task.exec:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:40.332 DEBUG:teuthology.orchestra.run.trial013:> sudo TESTDIR=/home/ubuntu/cephtest bash -c 'umount /mnt/foo' 2026-02-21T20:14:40.373 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-21T20:14:40.390 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:40.391 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph nfs export rm foo /foouser' 2026-02-21T20:14:40.530 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:40.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:40 trial109 ceph-mon[40784]: pgmap v69: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 19 KiB/s rd, 511 B/s wr, 35 op/s 2026-02-21T20:14:40.813 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph nfs cluster rm foo' 2026-02-21T20:14:40.931 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:41.220 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-21T20:14:41.237 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:14:41.238 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2026-02-21T20:14:41.355 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:41.432 INFO:teuthology.orchestra.run.trial013.stdout:167 167 2026-02-21T20:14:41.464 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch status' 2026-02-21T20:14:41.581 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:41.824 INFO:teuthology.orchestra.run.trial013.stdout:Backend: cephadm 2026-02-21T20:14:41.824 INFO:teuthology.orchestra.run.trial013.stdout:Available: Yes 2026-02-21T20:14:41.824 INFO:teuthology.orchestra.run.trial013.stdout:Paused: No 2026-02-21T20:14:41.881 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch ps' 2026-02-21T20:14:42.003 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:42.239 INFO:teuthology.orchestra.run.trial013.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:alertmanager.trial013 trial013 *:9093,9094 running (67s) 7s ago 95s 27.1M - 0.28.1 91c01b3cec9b ca4714c46979 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:ceph-exporter.trial013 trial013 *:9926 running (99s) 7s ago 99s 9164k - 20.3.0-5291-g042df16c 9a39d96ac758 d8471fab90b2 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:ceph-exporter.trial109 trial109 *:9926 running (78s) 0s ago 78s 9517k - 20.3.0-5291-g042df16c 9a39d96ac758 bf5b247d0633 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:crash.trial013 trial013 running (99s) 7s ago 99s 7620k - 20.3.0-5291-g042df16c 9a39d96ac758 046223eb43d4 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:crash.trial109 trial109 running (77s) 0s ago 77s 7612k - 20.3.0-5291-g042df16c 9a39d96ac758 d79c1952dcb6 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:grafana.trial013 trial013 *:3000 running (66s) 7s ago 89s 119M - 12.3.1 5cdab57891ea 3e9618f669c6 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:haproxy.nfs.foo.trial013.geketp trial013 *:2049,9049 running (16s) 7s ago 16s 7738k - 2.3.17-d1c9119 e85424b0d443 116a3a48825c 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:haproxy.nfs.foo.trial109.isgmkh trial109 *:2049,9049 running (15s) 0s ago 15s 10.8M - 2.3.17-d1c9119 e85424b0d443 e86adebed87a 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:keepalived.nfs.foo.trial013.uerfgp trial013 running (10s) 7s ago 10s 2373k - 2.2.4 4a3a1ff181d9 b77b14516eac 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:keepalived.nfs.foo.trial109.bgqykw trial109 running (12s) 0s ago 12s 2386k - 2.2.4 4a3a1ff181d9 169bd1c24cf1 2026-02-21T20:14:42.240 INFO:teuthology.orchestra.run.trial013.stdout:mgr.trial013.ogreni trial013 *:9283,8765,8443 running (2m) 7s ago 2m 570M - 20.3.0-5291-g042df16c 9a39d96ac758 e8f1313cb3bf 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:mgr.trial109.bjivcz trial109 *:8443,9283,8765 running (75s) 0s ago 75s 494M - 20.3.0-5291-g042df16c 9a39d96ac758 dbac16e07dd4 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:mon.trial013 trial013 running (2m) 7s ago 2m 59.1M 2048M 20.3.0-5291-g042df16c 9a39d96ac758 54eab93856dc 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:mon.trial109 trial109 running (75s) 0s ago 75s 51.8M 2048M 20.3.0-5291-g042df16c 9a39d96ac758 82896cfcc8ec 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:nfs.foo.0.0.trial013.huutpu trial013 *:12049,9587 running (19s) 7s ago 19s 123M - 5.9 9a39d96ac758 120d1c1f5a52 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:node-exporter.trial013 trial013 *:9100 running (97s) 7s ago 97s 14.9M - 1.9.1 255ec253085f 2aa0b774b7d2 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:node-exporter.trial109 trial109 *:9100 running (76s) 0s ago 76s 13.2M - 1.9.1 255ec253085f d4829bde939c 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:osd.0 trial109 running (52s) 0s ago 52s 50.4M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 06d8bc15f693 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:osd.1 trial013 running (52s) 7s ago 52s 55.6M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 60b3326cdc3f 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:osd.2 trial109 running (49s) 0s ago 49s 53.4M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 b07b9019099d 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:osd.3 trial013 running (49s) 7s ago 49s 52.0M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 3fb271083978 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:osd.4 trial109 running (47s) 0s ago 47s 54.6M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 22ea2895f666 2026-02-21T20:14:42.241 INFO:teuthology.orchestra.run.trial013.stdout:osd.5 trial013 running (46s) 7s ago 46s 54.9M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 7f17ede5c893 2026-02-21T20:14:42.242 INFO:teuthology.orchestra.run.trial013.stdout:osd.6 trial109 running (44s) 0s ago 44s 54.5M 19.9G 20.3.0-5291-g042df16c 9a39d96ac758 f518e238c082 2026-02-21T20:14:42.242 INFO:teuthology.orchestra.run.trial013.stdout:osd.7 trial013 running (44s) 7s ago 44s 50.5M 19.2G 20.3.0-5291-g042df16c 9a39d96ac758 08bcd46f2c68 2026-02-21T20:14:42.242 INFO:teuthology.orchestra.run.trial013.stdout:prometheus.trial013 trial013 *:9095 running (8s) 7s ago 86s 41.8M - 3.6.0 4fcecf061b74 71c69b4a9f37 2026-02-21T20:14:42.242 INFO:teuthology.orchestra.run.trial013.stdout:rgw.foorgw.trial013.nloqma trial013 *:8800 running (26s) 7s ago 26s 101M - 20.3.0-5291-g042df16c 9a39d96ac758 cba4b5a44d95 2026-02-21T20:14:42.242 INFO:teuthology.orchestra.run.trial013.stdout:rgw.foorgw.trial109.kbjgjv trial109 *:8800 running (27s) 0s ago 27s 100M - 20.3.0-5291-g042df16c 9a39d96ac758 45ed815d1d71 2026-02-21T20:14:42.242 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:42.242 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: pgmap v70: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 27 KiB/s rd, 426 B/s wr, 46 op/s 2026-02-21T20:14:42.242 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='client.14796 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:42.242 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: Remove service ingress.nfs.foo 2026-02-21T20:14:42.243 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.243 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: Remove service nfs.foo 2026-02-21T20:14:42.243 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:42.243 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.243 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.243 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:42 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.282 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch ls' 2026-02-21T20:14:42.403 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:42.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:42.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: pgmap v70: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 27 KiB/s rd, 426 B/s wr, 46 op/s 2026-02-21T20:14:42.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='client.14796 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:42.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: Remove service ingress.nfs.foo 2026-02-21T20:14:42.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: Remove service nfs.foo 2026-02-21T20:14:42.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-21T20:14:42.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:42 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:alertmanager ?:9093,9094 1/1 0s ago 111s count:1 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:ceph-exporter ?:9926 2/2 0s ago 112s * 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:crash 2/2 0s ago 112s * 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:grafana ?:3000 1/1 0s ago 111s count:1 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:ingress.nfs.foo 192.168.17.13:2049,9049 4/4 27s count:2 2026-02-21T20:14:42.636 INFO:teuthology.orchestra.run.trial013.stdout:mgr 2/2 0s ago 112s count:2 2026-02-21T20:14:42.637 INFO:teuthology.orchestra.run.trial013.stdout:mon 2/2 0s ago 78s trial013:10.20.193.13=trial013;trial109:10.20.193.109=trial109;count:2 2026-02-21T20:14:42.637 INFO:teuthology.orchestra.run.trial013.stdout:nfs.foo ?:9587,12049 1/1 27s count:1 2026-02-21T20:14:42.637 INFO:teuthology.orchestra.run.trial013.stdout:node-exporter ?:9100 2/2 0s ago 111s * 2026-02-21T20:14:42.637 INFO:teuthology.orchestra.run.trial013.stdout:osd.all-available-devices 8 0s ago 66s * 2026-02-21T20:14:42.637 INFO:teuthology.orchestra.run.trial013.stdout:prometheus ?:9095 1/1 0s ago 112s count:1 2026-02-21T20:14:42.637 INFO:teuthology.orchestra.run.trial013.stdout:rgw.foorgw ?:8800 2/2 0s ago 26s count:2 2026-02-21T20:14:42.676 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch host ls' 2026-02-21T20:14:42.796 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:43.022 INFO:teuthology.orchestra.run.trial013.stdout:HOST ADDR LABELS STATUS 2026-02-21T20:14:43.022 INFO:teuthology.orchestra.run.trial013.stdout:trial013 10.20.193.13 2026-02-21T20:14:43.022 INFO:teuthology.orchestra.run.trial013.stdout:trial109 10.20.193.109 2026-02-21T20:14:43.022 INFO:teuthology.orchestra.run.trial013.stdout:2 hosts in cluster 2026-02-21T20:14:43.059 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch device ls' 2026-02-21T20:14:43.179 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B47DEA 1788G No 28s ago Has a FileSystem, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B0025B 1788G No 28s ago Has a FileSystem, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme3n1 ssd Linux_91a04ec5617eeac2c55a 700G No 28s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme4n1 ssd Linux_72d94a858757ffe48f61 700G No 28s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme5n1 ssd Linux_18a780cc54c9143de407 700G No 28s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial013 /dev/nvme6n1 ssd Linux_8e76149c786238411600 700G No 28s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_0325108BFCE7 1788G No 29s ago Has a FileSystem, LVM detected 2026-02-21T20:14:43.404 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_0325108BFDDB 1788G No 29s ago Has a FileSystem, LVM detected 2026-02-21T20:14:43.405 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme3n1 ssd Linux_c67515738102ad375fe6 700G No 29s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.405 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme4n1 ssd Linux_f24227909c28ec3c0eef 700G No 29s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.405 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme5n1 ssd Linux_bd924cdc5f66a5f30e41 700G No 29s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.405 INFO:teuthology.orchestra.run.trial013.stdout:trial109 /dev/nvme6n1 ssd Linux_d9151203876c5759dc6d 700G No 29s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-21T20:14:43.405 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:43.405 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:43.405 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:43.405 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:43.405 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:43.406 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:43.406 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:43.406 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:43.406 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:43.406 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:43 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:43.441 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2026-02-21T20:14:43.534 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:43.535 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:43 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:43.560 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:43.786 INFO:teuthology.orchestra.run.trial013.stdout:osd.all-available-devices 8 1s ago 67s * 2026-02-21T20:14:43.815 DEBUG:teuthology.run_tasks:Unwinding manager vip 2026-02-21T20:14:43.835 INFO:tasks.vip:Removing 192.168.1.13 (and any VIPs) on trial013.front.sepia.ceph.com iface enp1s0f0... 2026-02-21T20:14:43.835 DEBUG:teuthology.orchestra.run.trial013:> sudo ip addr del 192.168.1.13/16 dev enp1s0f0 2026-02-21T20:14:43.862 DEBUG:teuthology.orchestra.run.trial013:> sudo ip addr del 192.168.17.13/16 dev enp1s0f0 2026-02-21T20:14:43.927 INFO:tasks.vip:Removing 192.168.1.109 (and any VIPs) on trial109.front.sepia.ceph.com iface enp1s0f0... 2026-02-21T20:14:43.928 DEBUG:teuthology.orchestra.run.trial109:> sudo ip addr del 192.168.1.109/16 dev enp1s0f0 2026-02-21T20:14:43.958 DEBUG:teuthology.orchestra.run.trial109:> sudo ip addr del 192.168.17.13/16 dev enp1s0f0 2026-02-21T20:14:44.021 INFO:teuthology.orchestra.run.trial109.stderr:Error: ipv4: Address not found. 2026-02-21T20:14:44.022 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-21T20:14:44.023 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-21T20:14:44.040 INFO:tasks.cephadm:Teardown begin 2026-02-21T20:14:44.041 DEBUG:teuthology.orchestra.run.trial013:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:14:44.066 DEBUG:teuthology.orchestra.run.trial109:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:14:44.091 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-21T20:14:44.091 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-21T20:14:44.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: Removing orphan daemon nfs.foo.0.0.trial013.huutpu... 2026-02-21T20:14:44.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: Removing daemon nfs.foo.0.0.trial013.huutpu from trial013 -- ports [12049, 9587] 2026-02-21T20:14:44.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:44.203 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:44.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: pgmap v71: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 13 KiB/s rd, 85 B/s wr, 20 op/s 2026-02-21T20:14:44.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:44.204 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-mon[35520]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:44.221 INFO:teuthology.orchestra.run.trial013.stderr:Inferring config /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/mon.trial013/config 2026-02-21T20:14:44.240 INFO:teuthology.orchestra.run.trial013.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-21T20:14:44.255 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-21T20:14:44.256 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-21T20:14:44.256 DEBUG:teuthology.orchestra.run.trial013:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-21T20:14:44.273 DEBUG:teuthology.orchestra.run.trial109:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: Removing orphan daemon nfs.foo.0.0.trial013.huutpu... 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: Removing daemon nfs.foo.0.0.trial013.huutpu from trial013 -- ports [12049, 9587] 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: pgmap v71: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 13 KiB/s rd, 85 B/s wr, 20 op/s 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial013.nloqma", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:44.284 INFO:journalctl@ceph.mon.trial109.trial109.stdout:Feb 21 20:14:44 trial109 ceph-mon[40784]: from='mgr.14213 10.20.193.13:0/2375009987' entity='mgr.trial013.ogreni' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial109.kbjgjv", "name": "rgw_frontends"} : dispatch 2026-02-21T20:14:44.289 INFO:tasks.cephadm:Stopping all daemons... 2026-02-21T20:14:44.290 INFO:tasks.cephadm.mon.trial013:Stopping mon.trial013... 2026-02-21T20:14:44.290 DEBUG:teuthology.orchestra.run.trial013:> sudo systemctl stop ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013 2026-02-21T20:14:44.522 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 systemd[1]: Stopping Ceph mon.trial013 for a0f5aa36-0f61-11f1-ad6d-d404e6e7d460... 2026-02-21T20:14:44.522 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013[35514]: 2026-02-21T20:14:44.408+0000 7f8a35579640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial013 -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-21T20:14:44.522 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013[35514]: 2026-02-21T20:14:44.408+0000 7f8a35579640 -1 mon.trial013@0(leader) e2 *** Got Signal Terminated *** 2026-02-21T20:14:44.522 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 podman[91315]: 2026-02-21 20:14:44.450561195 +0000 UTC m=+0.053422976 container died 54eab93856dcc68f6279af25b90ddd6df688813d732471b82c66456c274cba4b (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.label-schema.license=GPLv2, CEPH_REF=wip-adk3-testing-2026-02-12-2007, OSD_FLAVOR=default, io.buildah.version=1.41.3, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260209, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-21T20:14:44.522 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 podman[91315]: 2026-02-21 20:14:44.459696337 +0000 UTC m=+0.062558108 container remove 54eab93856dcc68f6279af25b90ddd6df688813d732471b82c66456c274cba4b (image=quay.ceph.io/ceph-ci/ceph:042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, name=ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-adk3-testing-2026-02-12-2007, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=042df16cd9ee8a8df553b188fef8a8c4a9e7ab01, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260209, ceph=True, io.buildah.version=1.41.3, org.label-schema.vendor=CentOS) 2026-02-21T20:14:44.522 INFO:journalctl@ceph.mon.trial013.trial013.stdout:Feb 21 20:14:44 trial013 bash[91315]: ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460-mon-trial013 2026-02-21T20:14:44.541 DEBUG:teuthology.orchestra.run.trial013:> sudo pkill -f 'journalctl -f -n 0 -u ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial013.service' 2026-02-21T20:14:44.580 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-21T20:14:44.581 INFO:tasks.cephadm.mon.trial013:Stopped mon.trial013 2026-02-21T20:14:44.581 INFO:tasks.cephadm.mon.trial109:Stopping mon.trial109... 2026-02-21T20:14:44.581 DEBUG:teuthology.orchestra.run.trial109:> sudo systemctl stop ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial109 2026-02-21T20:14:44.825 DEBUG:teuthology.orchestra.run.trial109:> sudo pkill -f 'journalctl -f -n 0 -u ceph-a0f5aa36-0f61-11f1-ad6d-d404e6e7d460@mon.trial109.service' 2026-02-21T20:14:44.863 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-21T20:14:44.863 INFO:tasks.cephadm.mon.trial109:Stopped mon.trial109 2026-02-21T20:14:44.863 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 --force --keep-logs 2026-02-21T20:14:53.043 INFO:teuthology.orchestra.run.trial013.stdout:Deleting cluster with fsid: a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:15:30.549 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 --force --keep-logs 2026-02-21T20:15:30.669 INFO:teuthology.orchestra.run.trial109.stdout:Deleting cluster with fsid: a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:16:07.064 DEBUG:teuthology.orchestra.run.trial013:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:16:07.094 DEBUG:teuthology.orchestra.run.trial109:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-21T20:16:07.121 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-21T20:16:07.123 DEBUG:teuthology.misc:Transferring archived files from trial013:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950/remote/trial013/crash 2026-02-21T20:16:07.124 DEBUG:teuthology.orchestra.run.trial013:> sudo tar c -f - -C /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/crash -- . 2026-02-21T20:16:07.160 INFO:teuthology.orchestra.run.trial013.stderr:tar: /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-21T20:16:07.160 INFO:teuthology.orchestra.run.trial013.stderr:tar: Error is not recoverable: exiting now 2026-02-21T20:16:07.163 DEBUG:teuthology.misc:Transferring archived files from trial109:/var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950/remote/trial109/crash 2026-02-21T20:16:07.164 DEBUG:teuthology.orchestra.run.trial109:> sudo tar c -f - -C /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/crash -- . 2026-02-21T20:16:07.189 INFO:teuthology.orchestra.run.trial109.stderr:tar: /var/lib/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-21T20:16:07.189 INFO:teuthology.orchestra.run.trial109.stderr:tar: Error is not recoverable: exiting now 2026-02-21T20:16:07.191 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-21T20:16:07.191 DEBUG:teuthology.orchestra.run.trial013:> sudo grep -E '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log | grep -E CEPHADM_ | grep -E -v '\(MDS_ALL_DOWN\)' | grep -E -v '\(MDS_UP_LESS_THAN_MAX\)' | grep -E -v CEPHADM_DAEMON_PLACE_FAIL | grep -E -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-21T20:16:07.227 INFO:tasks.cephadm:Compressing logs... 2026-02-21T20:16:07.227 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:16:07.269 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:16:07.291 INFO:teuthology.orchestra.run.trial013.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.3.log 2026-02-21T20:16:07.291 INFO:teuthology.orchestra.run.trial013.stderr:: No such file or directory 2026-02-21T20:16:07.291 INFO:teuthology.orchestra.run.trial013.stderr:gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mgr.trial013.ogreni.log 2026-02-21T20:16:07.295 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.5.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mgr.trial013.ogreni.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.7.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.cephadm.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.ceph-exporter.trial013.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mon.trial013.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.ceph-exporter.trial013.log: 84.3% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.cephadm.log.gz 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial013.nloqma.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr: 89.8% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.ceph-exporter.trial013.log.gz 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.audit.log 2026-02-21T20:16:07.296 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mon.trial013.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-volume.log 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial013.nloqma.log: 77.8% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial013.nloqma.log.gz 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.1.log 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.rgw.foorgw.trial013.nloqma.log 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log: /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.rgw.foorgw.trial013.nloqma.log: 83.9% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log.gz 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr: 70.8% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.rgw.foorgw.trial013.nloqma.log.gz 2026-02-21T20:16:07.297 INFO:teuthology.orchestra.run.trial013.stderr:/var/log/ceph/cephadm.log: 91.0% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.audit.log.gz 2026-02-21T20:16:07.301 INFO:teuthology.orchestra.run.trial109.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.2.log 2026-02-21T20:16:07.301 INFO:teuthology.orchestra.run.trial109.stderr:: No such file or directory 2026-02-21T20:16:07.301 INFO:teuthology.orchestra.run.trial109.stderr:gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.0.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mgr.trial109.bjivcz.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.2.log: /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.cephadm.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mgr.trial109.bjivcz.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.4.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.audit.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr: 83.6% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.cephadm.log.gz 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-volume.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.4.log: /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.6.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mon.trial109.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.ceph-exporter.trial109.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mon.trial109.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log 2026-02-21T20:16:07.302 INFO:teuthology.orchestra.run.trial109.stderr: 91.1% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.audit.log.gz 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.ceph-exporter.trial109.log: gzip -5 --verbose -- /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.rgw.foorgw.trial109.kbjgjv.log 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr: 90.7% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mgr.trial109.bjivcz.log.gz 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr: 90.9% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.ceph-exporter.trial109.log.gz 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr: 82.9% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph.log.gz 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.rgw.foorgw.trial109.kbjgjv.log: 60.0% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-client.rgw.foorgw.trial109.kbjgjv.log.gz 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr:/var/log/ceph/cephadm.log: 90.8% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-21T20:16:07.303 INFO:teuthology.orchestra.run.trial109.stderr: 94.0% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-volume.log.gz 2026-02-21T20:16:07.304 INFO:teuthology.orchestra.run.trial013.stderr: 94.1% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-volume.log.gz 2026-02-21T20:16:07.318 INFO:teuthology.orchestra.run.trial013.stderr: 93.1% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-21T20:16:07.325 INFO:teuthology.orchestra.run.trial109.stderr: 92.8% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mon.trial109.log.gz 2026-02-21T20:16:07.364 INFO:teuthology.orchestra.run.trial013.stderr: 90.5% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mgr.trial013.ogreni.log.gz 2026-02-21T20:16:07.376 INFO:teuthology.orchestra.run.trial013.stderr: 93.5% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.7.log.gz 2026-02-21T20:16:07.384 INFO:teuthology.orchestra.run.trial109.stderr: 93.5% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.0.log.gz 2026-02-21T20:16:07.398 INFO:teuthology.orchestra.run.trial013.stderr: 91.9% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-mon.trial013.log.gz 2026-02-21T20:16:07.401 INFO:teuthology.orchestra.run.trial109.stderr: 93.6% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.2.log.gz 2026-02-21T20:16:07.412 INFO:teuthology.orchestra.run.trial013.stderr: 93.6% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.3.log.gz 2026-02-21T20:16:07.425 INFO:teuthology.orchestra.run.trial013.stderr: 93.7% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.5.log.gz 2026-02-21T20:16:07.439 INFO:teuthology.orchestra.run.trial109.stderr: 93.8% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.6.log.gz 2026-02-21T20:16:07.454 INFO:teuthology.orchestra.run.trial013.stderr: 93.7% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.1.log.gz 2026-02-21T20:16:07.455 INFO:teuthology.orchestra.run.trial013.stderr: 2026-02-21T20:16:07.455 INFO:teuthology.orchestra.run.trial013.stderr:real 0m0.174s 2026-02-21T20:16:07.455 INFO:teuthology.orchestra.run.trial013.stderr:user 0m0.665s 2026-02-21T20:16:07.456 INFO:teuthology.orchestra.run.trial013.stderr:sys 0m0.062s 2026-02-21T20:16:07.457 INFO:teuthology.orchestra.run.trial109.stderr: 93.5% -- replaced with /var/log/ceph/a0f5aa36-0f61-11f1-ad6d-d404e6e7d460/ceph-osd.4.log.gz 2026-02-21T20:16:07.459 INFO:teuthology.orchestra.run.trial109.stderr: 2026-02-21T20:16:07.459 INFO:teuthology.orchestra.run.trial109.stderr:real 0m0.174s 2026-02-21T20:16:07.459 INFO:teuthology.orchestra.run.trial109.stderr:user 0m0.529s 2026-02-21T20:16:07.459 INFO:teuthology.orchestra.run.trial109.stderr:sys 0m0.041s 2026-02-21T20:16:07.460 INFO:tasks.cephadm:Archiving logs... 2026-02-21T20:16:07.460 DEBUG:teuthology.misc:Transferring archived files from trial013:/var/log/ceph to /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950/remote/trial013/log 2026-02-21T20:16:07.461 DEBUG:teuthology.orchestra.run.trial013:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-21T20:16:07.665 DEBUG:teuthology.misc:Transferring archived files from trial109:/var/log/ceph to /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950/remote/trial109/log 2026-02-21T20:16:07.666 DEBUG:teuthology.orchestra.run.trial109:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-21T20:16:07.765 INFO:tasks.cephadm:Removing cluster... 2026-02-21T20:16:07.765 DEBUG:teuthology.orchestra.run.trial013:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 --force 2026-02-21T20:16:07.885 INFO:teuthology.orchestra.run.trial013.stdout:Deleting cluster with fsid: a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:16:07.943 DEBUG:teuthology.orchestra.run.trial109:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 --force 2026-02-21T20:16:08.063 INFO:teuthology.orchestra.run.trial109.stdout:Deleting cluster with fsid: a0f5aa36-0f61-11f1-ad6d-d404e6e7d460 2026-02-21T20:16:08.120 INFO:tasks.cephadm:Removing cephadm ... 2026-02-21T20:16:08.120 DEBUG:teuthology.orchestra.run.trial013:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-21T20:16:08.139 DEBUG:teuthology.orchestra.run.trial109:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-21T20:16:08.156 INFO:tasks.cephadm:Teardown complete 2026-02-21T20:16:08.156 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2026-02-21T20:16:08.176 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial013:/dev/vg_nvme/lv_1... 2026-02-21T20:16:08.176 DEBUG:teuthology.orchestra.run.trial013:> sudo nvme disconnect -n lv_1 2026-02-21T20:16:08.427 INFO:teuthology.orchestra.run.trial013.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-21T20:16:08.429 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial013:/dev/vg_nvme/lv_2... 2026-02-21T20:16:08.430 DEBUG:teuthology.orchestra.run.trial013:> sudo nvme disconnect -n lv_2 2026-02-21T20:16:08.682 INFO:teuthology.orchestra.run.trial013.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-21T20:16:08.684 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial013:/dev/vg_nvme/lv_3... 2026-02-21T20:16:08.684 DEBUG:teuthology.orchestra.run.trial013:> sudo nvme disconnect -n lv_3 2026-02-21T20:16:08.935 INFO:teuthology.orchestra.run.trial013.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-21T20:16:08.937 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial013:/dev/vg_nvme/lv_4... 2026-02-21T20:16:08.937 DEBUG:teuthology.orchestra.run.trial013:> sudo nvme disconnect -n lv_4 2026-02-21T20:16:09.185 INFO:teuthology.orchestra.run.trial013.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-21T20:16:09.187 DEBUG:teuthology.orchestra.run.trial013:> set -ex 2026-02-21T20:16:09.188 DEBUG:teuthology.orchestra.run.trial013:> sudo dd of=/scratch_devs 2026-02-21T20:16:09.211 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial109:/dev/vg_nvme/lv_1... 2026-02-21T20:16:09.211 DEBUG:teuthology.orchestra.run.trial109:> sudo nvme disconnect -n lv_1 2026-02-21T20:16:09.468 INFO:teuthology.orchestra.run.trial109.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-21T20:16:09.470 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial109:/dev/vg_nvme/lv_2... 2026-02-21T20:16:09.471 DEBUG:teuthology.orchestra.run.trial109:> sudo nvme disconnect -n lv_2 2026-02-21T20:16:09.719 INFO:teuthology.orchestra.run.trial109.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-21T20:16:09.721 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial109:/dev/vg_nvme/lv_3... 2026-02-21T20:16:09.721 DEBUG:teuthology.orchestra.run.trial109:> sudo nvme disconnect -n lv_3 2026-02-21T20:16:09.967 INFO:teuthology.orchestra.run.trial109.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-21T20:16:09.969 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial109:/dev/vg_nvme/lv_4... 2026-02-21T20:16:09.969 DEBUG:teuthology.orchestra.run.trial109:> sudo nvme disconnect -n lv_4 2026-02-21T20:16:10.222 INFO:teuthology.orchestra.run.trial109.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-21T20:16:10.224 DEBUG:teuthology.orchestra.run.trial109:> set -ex 2026-02-21T20:16:10.224 DEBUG:teuthology.orchestra.run.trial109:> sudo dd of=/scratch_devs 2026-02-21T20:16:10.248 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-21T20:16:10.266 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-21T20:16:10.267 DEBUG:teuthology.orchestra.run.trial013:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-21T20:16:10.269 DEBUG:teuthology.orchestra.run.trial109:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-21T20:16:10.283 INFO:teuthology.orchestra.run.trial013.stderr:bash: line 1: ntpq: command not found 2026-02-21T20:16:10.303 INFO:teuthology.orchestra.run.trial109.stderr:bash: line 1: ntpq: command not found 2026-02-21T20:16:10.458 INFO:teuthology.orchestra.run.trial109.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-21T20:16:10.458 INFO:teuthology.orchestra.run.trial109.stdout:=============================================================================== 2026-02-21T20:16:10.458 INFO:teuthology.orchestra.run.trial109.stdout:^+ 23.186.168.132 2 6 173 38 +8296us[+8296us] +/- 65ms 2026-02-21T20:16:10.458 INFO:teuthology.orchestra.run.trial109.stdout:^+ mail.mlevin.net 2 6 177 39 +309us[+1136us] +/- 44ms 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial109.stdout:^+ tick.nowherenet.org 1 6 177 39 +5886us[+6713us] +/- 21ms 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial109.stdout:^* ntp1.wiktel.com 1 6 177 38 -3079us[-2251us] +/- 20ms 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial013.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial013.stdout:=============================================================================== 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial013.stdout:^+ 23.186.168.132 2 6 173 38 -1367us[-1414us] +/- 56ms 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial013.stdout:^+ mail.mlevin.net 2 6 177 38 +31us[ +31us] +/- 44ms 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial013.stdout:^+ tick.nowherenet.org 1 6 177 38 +4542us[+4542us] +/- 19ms 2026-02-21T20:16:10.459 INFO:teuthology.orchestra.run.trial013.stdout:^* ntp1.wiktel.com 1 6 177 38 -3736us[-3782us] +/- 21ms 2026-02-21T20:16:10.461 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-21T20:16:10.479 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-21T20:16:10.480 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-21T20:16:10.498 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:16:10.559 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:16:10.617 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:16:10.644 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:16:10.645 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:16:10.671 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:16:10.672 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-21T20:16:10.690 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-21T20:16:10.708 INFO:teuthology.task.internal:Duration was 397.384082 seconds 2026-02-21T20:16:10.709 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-21T20:16:10.727 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-21T20:16:10.727 DEBUG:teuthology.orchestra.run.trial013:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-21T20:16:10.730 DEBUG:teuthology.orchestra.run.trial109:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-21T20:16:10.765 INFO:teuthology.orchestra.run.trial013.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-21T20:16:10.768 INFO:teuthology.orchestra.run.trial109.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-21T20:16:11.068 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-21T20:16:11.068 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial013.front.sepia.ceph.com 2026-02-21T20:16:11.069 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:16:11.087 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial109.front.sepia.ceph.com 2026-02-21T20:16:11.088 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:16:11.128 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-21T20:16:11.128 DEBUG:teuthology.orchestra.run.trial013:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-21T20:16:11.130 DEBUG:teuthology.orchestra.run.trial109:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-21T20:16:11.282 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-21T20:16:11.282 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:16:11.284 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:16:11.305 INFO:teuthology.orchestra.run.trial013.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-21T20:16:11.307 INFO:teuthology.orchestra.run.trial013.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-21T20:16:11.307 INFO:teuthology.orchestra.run.trial013.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-21T20:16:11.307 INFO:teuthology.orchestra.run.trial013.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-21T20:16:11.307 INFO:teuthology.orchestra.run.trial013.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-21T20:16:11.308 INFO:teuthology.orchestra.run.trial109.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-21T20:16:11.309 INFO:teuthology.orchestra.run.trial109.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-21T20:16:11.309 INFO:teuthology.orchestra.run.trial109.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-21T20:16:11.309 INFO:teuthology.orchestra.run.trial109.stderr: -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-21T20:16:11.309 INFO:teuthology.orchestra.run.trial109.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-21T20:16:11.323 INFO:teuthology.orchestra.run.trial109.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 85.5% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-21T20:16:11.335 INFO:teuthology.orchestra.run.trial013.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 87.7% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-21T20:16:11.337 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-21T20:16:11.357 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-21T20:16:11.357 DEBUG:teuthology.orchestra.run.trial013:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-21T20:16:11.400 DEBUG:teuthology.orchestra.run.trial109:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-21T20:16:11.426 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-21T20:16:11.447 DEBUG:teuthology.orchestra.run.trial013:> 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-21T20:16:11.449 DEBUG:teuthology.orchestra.run.trial109:> 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-21T20:16:11.471 INFO:teuthology.orchestra.run.trial013.stdout:kernel.core_pattern = core 2026-02-21T20:16:11.490 INFO:teuthology.orchestra.run.trial109.stdout:kernel.core_pattern = core 2026-02-21T20:16:11.509 DEBUG:teuthology.orchestra.run.trial013:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-21T20:16:11.542 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:16:11.543 DEBUG:teuthology.orchestra.run.trial109:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-21T20:16:11.563 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-21T20:16:11.564 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-21T20:16:11.583 INFO:teuthology.task.internal:Transferring archived files... 2026-02-21T20:16:11.584 DEBUG:teuthology.misc:Transferring archived files from trial013:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950/remote/trial013 2026-02-21T20:16:11.585 DEBUG:teuthology.orchestra.run.trial013:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-21T20:16:11.626 DEBUG:teuthology.misc:Transferring archived files from trial109:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/adking-2026-02-21_19:52:04-orch:cephadm-wip-adk3-testing-2026-02-12-2007-distro-default-trial/62950/remote/trial109 2026-02-21T20:16:11.626 DEBUG:teuthology.orchestra.run.trial109:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-21T20:16:11.664 INFO:teuthology.task.internal:Removing archive directory... 2026-02-21T20:16:11.664 DEBUG:teuthology.orchestra.run.trial013:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-21T20:16:11.667 DEBUG:teuthology.orchestra.run.trial109:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-21T20:16:11.711 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-21T20:16:11.732 INFO:teuthology.task.internal:Not uploading archives. 2026-02-21T20:16:11.732 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-21T20:16:11.751 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-21T20:16:11.752 DEBUG:teuthology.orchestra.run.trial013:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-21T20:16:11.754 DEBUG:teuthology.orchestra.run.trial109:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-21T20:16:11.769 INFO:teuthology.orchestra.run.trial013.stdout: 917522 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 21 20:16 /home/ubuntu/cephtest 2026-02-21T20:16:11.772 INFO:teuthology.orchestra.run.trial109.stdout: 917572 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 21 20:16 /home/ubuntu/cephtest 2026-02-21T20:16:11.773 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-21T20:16:11.793 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-21T20:16:11.833 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 397.38408184051514 owner: scheduled_adking@soko04.front.sepia.ceph.com success: true 2026-02-21T20:16:11.834 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-21T20:16:11.943 INFO:teuthology.run:pass