2026-02-20T23:03:36.447 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-20T23:03:36.463 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-20T23:03:36.539 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702 branch: wip-pdonnell-testing-20260219.182737-tentacle description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: yweinste@redhat.com first_in_suite: false flavor: default job_id: '61702' kernel: branch: distro kdb: true sha1: distro last_in_suite: false machine_type: trial name: yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-pdonnell-testing-20260219.182737-tentacle 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: f7870454149f22574086dd2ff55d050585136531 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f7870454149f22574086dd2ff55d050585136531 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-pdonnell-testing-20260219.182737-tentacle sha1: f7870454149f22574086dd2ff55d050585136531 owner: scheduled_yuriw@soko04.front.sepia.ceph.com priority: 69 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 2599 sha1: f7870454149f22574086dd2ff55d050585136531 sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: wip-pdonnell-testing-20260219.182737-tentacle suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: f7870454149f22574086dd2ff55d050585136531 targets: trial047.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLQKA9xlEqunsaM1/EyMwFGpm1osq7NHE1rPxqoTbxY8GxoOZM4dxV6NxA2DgLnWz/lN+XPjycaUC3fHjIaHE6M= trial152.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGZF0GgNvGPTb7M7t40M1BY8C/ht+R3tTlv3/WzqW7/0K+kvfAUnX6LcmJvJlbGejVEblRrarpD0eZZst2/gUGw= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install runc nvmetcli nvme-cli -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - 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 - vip.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}} - vip.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 - vip.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" - vip.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-20_16:19:15 tube: trial user: yuriw verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.1540699 2026-02-20T23:03:36.539 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa; will attempt to use it 2026-02-20T23:03:36.540 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa/tasks 2026-02-20T23:03:36.540 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-20T23:03:36.542 INFO:teuthology.task.internal:Checking packages... 2026-02-20T23:03:36.542 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'f7870454149f22574086dd2ff55d050585136531' 2026-02-20T23:03:36.542 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-20T23:03:36.542 INFO:teuthology.packaging:ref: None 2026-02-20T23:03:36.542 INFO:teuthology.packaging:tag: None 2026-02-20T23:03:36.542 INFO:teuthology.packaging:branch: wip-pdonnell-testing-20260219.182737-tentacle 2026-02-20T23:03:36.542 INFO:teuthology.packaging:sha1: f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:03:36.542 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-pdonnell-testing-20260219.182737-tentacle 2026-02-20T23:03:36.659 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-677.gf7870454 2026-02-20T23:03:36.660 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-20T23:03:36.672 INFO:teuthology.task.internal:no buildpackages task found 2026-02-20T23:03:36.673 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-20T23:03:36.687 INFO:teuthology.task.internal:Saving configuration 2026-02-20T23:03:36.700 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-20T23:03:36.713 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-20T23:03:36.790 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial047.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 23:00:08.732602', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLQKA9xlEqunsaM1/EyMwFGpm1osq7NHE1rPxqoTbxY8GxoOZM4dxV6NxA2DgLnWz/lN+XPjycaUC3fHjIaHE6M='} 2026-02-20T23:03:36.846 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial152.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 23:00:08.733126', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGZF0GgNvGPTb7M7t40M1BY8C/ht+R3tTlv3/WzqW7/0K+kvfAUnX6LcmJvJlbGejVEblRrarpD0eZZst2/gUGw='} 2026-02-20T23:03:36.846 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-20T23:03:36.858 INFO:teuthology.task.internal:roles: ubuntu@trial047.front.sepia.ceph.com - ['host.a', 'client.0'] 2026-02-20T23:03:36.858 INFO:teuthology.task.internal:roles: ubuntu@trial152.front.sepia.ceph.com - ['host.b', 'client.1'] 2026-02-20T23:03:36.858 INFO:teuthology.run_tasks:Running task console_log... 2026-02-20T23:03:36.995 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x73677a9f8720>, signals=[15]) 2026-02-20T23:03:36.996 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-20T23:03:37.011 INFO:teuthology.task.internal:Opening connections... 2026-02-20T23:03:37.011 DEBUG:teuthology.task.internal:connecting to ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:03:37.012 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T23:03:37.075 DEBUG:teuthology.task.internal:connecting to ubuntu@trial152.front.sepia.ceph.com 2026-02-20T23:03:37.076 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T23:03:37.140 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-20T23:03:37.153 DEBUG:teuthology.orchestra.run.trial047:> uname -m 2026-02-20T23:03:37.168 INFO:teuthology.orchestra.run.trial047.stdout:x86_64 2026-02-20T23:03:37.169 DEBUG:teuthology.orchestra.run.trial047:> cat /etc/os-release 2026-02-20T23:03:37.223 INFO:teuthology.orchestra.run.trial047.stdout:NAME="CentOS Stream" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:VERSION="9" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:ID="centos" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:ID_LIKE="rhel fedora" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:VERSION_ID="9" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:PLATFORM_ID="platform:el9" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:ANSI_COLOR="0;31" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:LOGO="fedora-logo-icon" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:HOME_URL="https://centos.org/" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T23:03:37.224 INFO:teuthology.orchestra.run.trial047.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T23:03:37.224 INFO:teuthology.lock.ops:Updating trial047.front.sepia.ceph.com on lock server 2026-02-20T23:03:37.290 DEBUG:teuthology.orchestra.run.trial152:> uname -m 2026-02-20T23:03:37.305 INFO:teuthology.orchestra.run.trial152.stdout:x86_64 2026-02-20T23:03:37.305 DEBUG:teuthology.orchestra.run.trial152:> cat /etc/os-release 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:NAME="CentOS Stream" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:VERSION="9" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:ID="centos" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:ID_LIKE="rhel fedora" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:VERSION_ID="9" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:PLATFORM_ID="platform:el9" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:ANSI_COLOR="0;31" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:LOGO="fedora-logo-icon" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:HOME_URL="https://centos.org/" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T23:03:37.361 INFO:teuthology.orchestra.run.trial152.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T23:03:37.362 INFO:teuthology.lock.ops:Updating trial152.front.sepia.ceph.com on lock server 2026-02-20T23:03:37.424 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-20T23:03:37.437 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-20T23:03:37.451 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-20T23:03:37.451 DEBUG:teuthology.orchestra.run.trial047:> test '!' -e /home/ubuntu/cephtest 2026-02-20T23:03:37.452 DEBUG:teuthology.orchestra.run.trial152:> test '!' -e /home/ubuntu/cephtest 2026-02-20T23:03:37.467 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-20T23:03:37.478 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-20T23:03:37.478 DEBUG:teuthology.orchestra.run.trial047:> test -z $(ls -A /var/lib/ceph) 2026-02-20T23:03:37.508 DEBUG:teuthology.orchestra.run.trial152:> test -z $(ls -A /var/lib/ceph) 2026-02-20T23:03:37.524 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-20T23:03:37.691 INFO:teuthology.run_tasks:Running task kernel... 2026-02-20T23:03:37.714 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': True, 'sha1': 'distro'} 2026-02-20T23:03:37.714 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}}, timeout 300 2026-02-20T23:03:37.714 DEBUG:teuthology.orchestra.run.trial047:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T23:03:37.714 DEBUG:teuthology.orchestra.run.trial152:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T23:03:37.728 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:03:37.729 DEBUG:teuthology.orchestra.run.trial047:> uname -r 2026-02-20T23:03:37.729 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:03:37.729 DEBUG:teuthology.orchestra.run.trial152:> uname -r 2026-02-20T23:03:37.784 INFO:teuthology.orchestra.run.trial152.stdout:5.14.0-681.el9.x86_64 2026-02-20T23:03:37.784 INFO:teuthology.task.kernel:Running kernel on trial152: 5.14.0-681.el9.x86_64 2026-02-20T23:03:37.785 DEBUG:teuthology.orchestra.run.trial152:> sudo yum install -y kernel 2026-02-20T23:03:37.785 INFO:teuthology.orchestra.run.trial047.stdout:5.14.0-681.el9.x86_64 2026-02-20T23:03:37.785 INFO:teuthology.task.kernel:Running kernel on trial047: 5.14.0-681.el9.x86_64 2026-02-20T23:03:37.785 DEBUG:teuthology.orchestra.run.trial047:> sudo yum install -y kernel 2026-02-20T23:03:38.476 INFO:teuthology.orchestra.run.trial047.stdout:CentOS Stream 9 - BaseOS 29 MB/s | 8.9 MB 00:00 2026-02-20T23:03:39.560 INFO:teuthology.orchestra.run.trial047.stdout:CentOS Stream 9 - AppStream 48 MB/s | 27 MB 00:00 2026-02-20T23:03:39.770 INFO:teuthology.orchestra.run.trial152.stdout:CentOS Stream 9 - BaseOS 5.5 MB/s | 8.9 MB 00:01 2026-02-20T23:03:42.834 INFO:teuthology.orchestra.run.trial152.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-20T23:03:43.292 INFO:teuthology.orchestra.run.trial047.stdout:CentOS Stream 9 - CRB 5.6 MB/s | 7.8 MB 00:01 2026-02-20T23:03:44.890 INFO:teuthology.orchestra.run.trial047.stdout:CentOS Stream 9 - Extras packages 23 kB/s | 20 kB 00:00 2026-02-20T23:03:45.688 INFO:teuthology.orchestra.run.trial047.stdout:Extra Packages for Enterprise Linux 28 MB/s | 20 MB 00:00 2026-02-20T23:03:48.862 INFO:teuthology.orchestra.run.trial047.stdout:lab-extras 1.7 MB/s | 50 kB 00:00 2026-02-20T23:03:49.865 INFO:teuthology.orchestra.run.trial047.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T23:03:49.865 INFO:teuthology.orchestra.run.trial047.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T23:03:49.884 INFO:teuthology.orchestra.run.trial047.stdout:Dependencies resolved. 2026-02-20T23:03:49.884 INFO:teuthology.orchestra.run.trial047.stdout:Nothing to do. 2026-02-20T23:03:49.884 INFO:teuthology.orchestra.run.trial047.stdout:Complete! 2026-02-20T23:03:49.908 DEBUG:teuthology.orchestra.run.trial047:> echo no | sudo yum reinstall kernel || true 2026-02-20T23:03:50.203 INFO:teuthology.orchestra.run.trial047.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 11:03:48 PM UTC. 2026-02-20T23:03:50.283 INFO:teuthology.orchestra.run.trial047.stdout:Dependencies resolved. 2026-02-20T23:03:50.284 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:03:50.284 INFO:teuthology.orchestra.run.trial047.stdout: Package Architecture Version Repository Size 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout:Reinstalling: 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout:Transaction Summary 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout:Total download size: 803 k 2026-02-20T23:03:50.285 INFO:teuthology.orchestra.run.trial047.stdout:Installed size: 0 2026-02-20T23:03:50.286 INFO:teuthology.orchestra.run.trial047.stderr:Operation aborted. 2026-02-20T23:03:50.304 INFO:teuthology.orchestra.run.trial047.stdout:Is this ok [y/N]: 2026-02-20T23:03:50.304 DEBUG:teuthology.orchestra.run.trial047:> sudo yum reinstall -y kernel || true 2026-02-20T23:03:50.601 INFO:teuthology.orchestra.run.trial047.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 11:03:48 PM UTC. 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:Dependencies resolved. 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout: Package Architecture Version Repository Size 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:Reinstalling: 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:Transaction Summary 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:Total download size: 803 k 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:Installed size: 0 2026-02-20T23:03:50.681 INFO:teuthology.orchestra.run.trial047.stdout:Downloading Packages: 2026-02-20T23:03:50.846 INFO:teuthology.orchestra.run.trial047.stdout:kernel-5.14.0-681.el9.x86_64.rpm 11 MB/s | 803 kB 00:00 2026-02-20T23:03:50.847 INFO:teuthology.orchestra.run.trial047.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:03:50.847 INFO:teuthology.orchestra.run.trial047.stdout:Total 4.8 MB/s | 803 kB 00:00 2026-02-20T23:03:50.856 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction check 2026-02-20T23:03:50.889 INFO:teuthology.orchestra.run.trial047.stdout:Transaction check succeeded. 2026-02-20T23:03:50.889 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction test 2026-02-20T23:03:50.894 INFO:teuthology.orchestra.run.trial047.stdout:Transaction test succeeded. 2026-02-20T23:03:50.894 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction 2026-02-20T23:03:50.918 INFO:teuthology.orchestra.run.trial047.stdout: Preparing : 1/1 2026-02-20T23:03:50.922 INFO:teuthology.orchestra.run.trial047.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T23:03:50.922 INFO:teuthology.orchestra.run.trial047.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T23:03:51.035 INFO:teuthology.orchestra.run.trial047.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T23:03:51.036 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T23:03:51.086 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T23:03:51.086 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:03:51.086 INFO:teuthology.orchestra.run.trial047.stdout:Reinstalled: 2026-02-20T23:03:51.086 INFO:teuthology.orchestra.run.trial047.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T23:03:51.086 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:03:51.086 INFO:teuthology.orchestra.run.trial047.stdout:Complete! 2026-02-20T23:03:51.112 DEBUG:teuthology.orchestra.run.trial047:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T23:03:51.136 INFO:teuthology.orchestra.run.trial047.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T23:03:51.137 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T23:03:51.137 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T23:03:51.137 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-20T23:03:51.137 DEBUG:teuthology.orchestra.run.trial047:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T23:03:51.200 INFO:teuthology.orchestra.run.trial047.stdout:ttyS1 2026-02-20T23:03:51.221 DEBUG:teuthology.parallel:result is None 2026-02-20T23:03:53.703 INFO:teuthology.orchestra.run.trial152.stdout:CentOS Stream 9 - CRB 939 kB/s | 7.8 MB 00:08 2026-02-20T23:03:54.915 INFO:teuthology.orchestra.run.trial152.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 20 kB 00:00 2026-02-20T23:03:55.619 INFO:teuthology.orchestra.run.trial152.stdout:Extra Packages for Enterprise Linux 32 MB/s | 20 MB 00:00 2026-02-20T23:03:58.839 INFO:teuthology.orchestra.run.trial152.stdout:lab-extras 1.5 MB/s | 50 kB 00:00 2026-02-20T23:03:59.848 INFO:teuthology.orchestra.run.trial152.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T23:03:59.848 INFO:teuthology.orchestra.run.trial152.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T23:03:59.867 INFO:teuthology.orchestra.run.trial152.stdout:Dependencies resolved. 2026-02-20T23:03:59.868 INFO:teuthology.orchestra.run.trial152.stdout:Nothing to do. 2026-02-20T23:03:59.868 INFO:teuthology.orchestra.run.trial152.stdout:Complete! 2026-02-20T23:03:59.891 DEBUG:teuthology.orchestra.run.trial152:> echo no | sudo yum reinstall kernel || true 2026-02-20T23:04:00.191 INFO:teuthology.orchestra.run.trial152.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 11:03:58 PM UTC. 2026-02-20T23:04:00.271 INFO:teuthology.orchestra.run.trial152.stdout:Dependencies resolved. 2026-02-20T23:04:00.272 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:04:00.272 INFO:teuthology.orchestra.run.trial152.stdout: Package Architecture Version Repository Size 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout:Reinstalling: 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout:Transaction Summary 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout:Total download size: 803 k 2026-02-20T23:04:00.273 INFO:teuthology.orchestra.run.trial152.stdout:Installed size: 0 2026-02-20T23:04:00.274 INFO:teuthology.orchestra.run.trial152.stderr:Operation aborted. 2026-02-20T23:04:00.293 INFO:teuthology.orchestra.run.trial152.stdout:Is this ok [y/N]: 2026-02-20T23:04:00.293 DEBUG:teuthology.orchestra.run.trial152:> sudo yum reinstall -y kernel || true 2026-02-20T23:04:00.589 INFO:teuthology.orchestra.run.trial152.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 11:03:58 PM UTC. 2026-02-20T23:04:00.668 INFO:teuthology.orchestra.run.trial152.stdout:Dependencies resolved. 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout: Package Architecture Version Repository Size 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:Reinstalling: 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:Transaction Summary 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:Total download size: 803 k 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:Installed size: 0 2026-02-20T23:04:00.669 INFO:teuthology.orchestra.run.trial152.stdout:Downloading Packages: 2026-02-20T23:04:01.184 INFO:teuthology.orchestra.run.trial152.stdout:kernel-5.14.0-681.el9.x86_64.rpm 3.7 MB/s | 803 kB 00:00 2026-02-20T23:04:01.184 INFO:teuthology.orchestra.run.trial152.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:04:01.184 INFO:teuthology.orchestra.run.trial152.stdout:Total 1.5 MB/s | 803 kB 00:00 2026-02-20T23:04:01.193 INFO:teuthology.orchestra.run.trial152.stdout:Running transaction check 2026-02-20T23:04:01.227 INFO:teuthology.orchestra.run.trial152.stdout:Transaction check succeeded. 2026-02-20T23:04:01.227 INFO:teuthology.orchestra.run.trial152.stdout:Running transaction test 2026-02-20T23:04:01.232 INFO:teuthology.orchestra.run.trial152.stdout:Transaction test succeeded. 2026-02-20T23:04:01.232 INFO:teuthology.orchestra.run.trial152.stdout:Running transaction 2026-02-20T23:04:01.255 INFO:teuthology.orchestra.run.trial152.stdout: Preparing : 1/1 2026-02-20T23:04:01.259 INFO:teuthology.orchestra.run.trial152.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T23:04:01.259 INFO:teuthology.orchestra.run.trial152.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T23:04:01.372 INFO:teuthology.orchestra.run.trial152.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T23:04:01.372 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T23:04:01.429 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T23:04:01.429 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:04:01.429 INFO:teuthology.orchestra.run.trial152.stdout:Reinstalled: 2026-02-20T23:04:01.430 INFO:teuthology.orchestra.run.trial152.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T23:04:01.430 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:04:01.430 INFO:teuthology.orchestra.run.trial152.stdout:Complete! 2026-02-20T23:04:01.457 DEBUG:teuthology.orchestra.run.trial152:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T23:04:01.520 INFO:teuthology.orchestra.run.trial152.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T23:04:01.520 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T23:04:01.521 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T23:04:01.521 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-20T23:04:01.521 DEBUG:teuthology.orchestra.run.trial152:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T23:04:01.584 INFO:teuthology.orchestra.run.trial152.stdout:ttyS1 2026-02-20T23:04:01.609 DEBUG:teuthology.parallel:result is None 2026-02-20T23:04:01.609 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-20T23:04:01.620 INFO:teuthology.task.internal:Creating test directory... 2026-02-20T23:04:01.620 DEBUG:teuthology.orchestra.run.trial047:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T23:04:01.622 DEBUG:teuthology.orchestra.run.trial152:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T23:04:01.664 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-20T23:04:01.676 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-20T23:04:01.690 INFO:teuthology.task.internal:Creating archive directory... 2026-02-20T23:04:01.690 DEBUG:teuthology.orchestra.run.trial047:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T23:04:01.692 DEBUG:teuthology.orchestra.run.trial152:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T23:04:01.722 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-20T23:04:01.734 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-20T23:04:01.734 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:04:01.748 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:04:01.771 INFO:teuthology.orchestra.run.trial047.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T23:04:01.779 INFO:teuthology.orchestra.run.trial047.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T23:04:01.784 INFO:teuthology.orchestra.run.trial152.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T23:04:01.793 INFO:teuthology.orchestra.run.trial152.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T23:04:01.794 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-20T23:04:01.804 INFO:teuthology.task.internal:Configuring sudo... 2026-02-20T23:04:01.805 DEBUG:teuthology.orchestra.run.trial047:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T23:04:01.822 DEBUG:teuthology.orchestra.run.trial152:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T23:04:01.857 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-20T23:04:01.870 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-20T23:04:01.870 DEBUG:teuthology.orchestra.run.trial047:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T23:04:01.886 DEBUG:teuthology.orchestra.run.trial152:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T23:04:01.913 DEBUG:teuthology.orchestra.run.trial047:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:02.050 DEBUG:teuthology.orchestra.run.trial047:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:02.074 DEBUG:teuthology.orchestra.run.trial047:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:02.225 DEBUG:teuthology.orchestra.run.trial047:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:02.248 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:04:02.248 DEBUG:teuthology.orchestra.run.trial047:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T23:04:02.313 DEBUG:teuthology.orchestra.run.trial152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:02.664 DEBUG:teuthology.orchestra.run.trial152:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:02.688 DEBUG:teuthology.orchestra.run.trial152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:02.807 DEBUG:teuthology.orchestra.run.trial152:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:02.831 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:04:02.831 DEBUG:teuthology.orchestra.run.trial152:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T23:04:02.895 DEBUG:teuthology.orchestra.run.trial047:> sudo service rsyslog restart 2026-02-20T23:04:02.897 DEBUG:teuthology.orchestra.run.trial152:> sudo service rsyslog restart 2026-02-20T23:04:02.923 INFO:teuthology.orchestra.run.trial047.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:04:02.963 INFO:teuthology.orchestra.run.trial152.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:04:03.403 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-20T23:04:03.416 INFO:teuthology.task.internal:Starting timer... 2026-02-20T23:04:03.416 INFO:teuthology.run_tasks:Running task pcp... 2026-02-20T23:04:03.440 INFO:teuthology.run_tasks:Running task selinux... 2026-02-20T23:04:03.458 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2026-02-20T23:04:03.458 DEBUG:teuthology.orchestra.run.trial047:> sudo service auditd rotate 2026-02-20T23:04:03.487 INFO:teuthology.orchestra.run.trial047.stdout:Rotating logs: 2026-02-20T23:04:03.488 DEBUG:teuthology.orchestra.run.trial152:> sudo service auditd rotate 2026-02-20T23:04:03.515 INFO:teuthology.orchestra.run.trial152.stdout:Rotating logs: 2026-02-20T23:04:03.517 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-20T23:04:03.517 DEBUG:teuthology.orchestra.run.trial047:> /usr/sbin/getenforce 2026-02-20T23:04:03.545 INFO:teuthology.orchestra.run.trial047.stdout:Permissive 2026-02-20T23:04:03.545 DEBUG:teuthology.orchestra.run.trial152:> /usr/sbin/getenforce 2026-02-20T23:04:03.574 INFO:teuthology.orchestra.run.trial152.stdout:Permissive 2026-02-20T23:04:03.575 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial047.front.sepia.ceph.com': 'permissive', 'ubuntu@trial152.front.sepia.ceph.com': 'permissive'} 2026-02-20T23:04:03.575 DEBUG:teuthology.orchestra.run.trial047:> 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 2026-02-20T23:04:03.610 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:03.611 DEBUG:teuthology.orchestra.run.trial152:> 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 2026-02-20T23:04:03.639 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:03.639 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-20T23:04:03.640 DEBUG:teuthology.orchestra.run.trial047:> sudo /usr/sbin/setenforce permissive 2026-02-20T23:04:03.674 DEBUG:teuthology.orchestra.run.trial152:> sudo /usr/sbin/setenforce permissive 2026-02-20T23:04:03.703 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-20T23:04:03.719 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2026-02-20T23:04:03.722 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2026-02-20T23:04:03.835 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-20T23:04:03.846 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-20T23:04:03.848 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial047.front.sepia.ceph.com,trial152.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-20T23:06:45.225 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial047.front.sepia.ceph.com'), Remote(name='ubuntu@trial152.front.sepia.ceph.com')] 2026-02-20T23:06:45.225 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial047.front.sepia.ceph.com' 2026-02-20T23:06:45.226 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T23:06:45.291 DEBUG:teuthology.orchestra.run.trial047:> true 2026-02-20T23:06:45.372 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial047.front.sepia.ceph.com' 2026-02-20T23:06:45.372 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial152.front.sepia.ceph.com' 2026-02-20T23:06:45.373 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T23:06:45.448 DEBUG:teuthology.orchestra.run.trial152:> true 2026-02-20T23:06:45.526 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial152.front.sepia.ceph.com' 2026-02-20T23:06:45.526 INFO:teuthology.run_tasks:Running task clock... 2026-02-20T23:06:45.539 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-20T23:06:45.539 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T23:06:45.539 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:06:45.541 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T23:06:45.541 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:06:45.567 INFO:teuthology.orchestra.run.trial047.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T23:06:45.580 INFO:teuthology.orchestra.run.trial047.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T23:06:45.592 INFO:teuthology.orchestra.run.trial152.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T23:06:45.601 INFO:teuthology.orchestra.run.trial047.stderr:sudo: ntpd: command not found 2026-02-20T23:06:45.604 INFO:teuthology.orchestra.run.trial152.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T23:06:45.611 INFO:teuthology.orchestra.run.trial047.stdout:506 Cannot talk to daemon 2026-02-20T23:06:45.622 INFO:teuthology.orchestra.run.trial047.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T23:06:45.625 INFO:teuthology.orchestra.run.trial152.stderr:sudo: ntpd: command not found 2026-02-20T23:06:45.635 INFO:teuthology.orchestra.run.trial047.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T23:06:45.635 INFO:teuthology.orchestra.run.trial152.stdout:506 Cannot talk to daemon 2026-02-20T23:06:45.647 INFO:teuthology.orchestra.run.trial152.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T23:06:45.659 INFO:teuthology.orchestra.run.trial152.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T23:06:45.686 INFO:teuthology.orchestra.run.trial047.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:06:45.688 INFO:teuthology.orchestra.run.trial047.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:06:45.688 INFO:teuthology.orchestra.run.trial047.stdout:=============================================================================== 2026-02-20T23:06:45.705 INFO:teuthology.orchestra.run.trial152.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:06:45.726 INFO:teuthology.orchestra.run.trial152.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:06:45.726 INFO:teuthology.orchestra.run.trial152.stdout:=============================================================================== 2026-02-20T23:06:45.726 INFO:teuthology.orchestra.run.trial152.stdout:^? ip212-227-240-160.pbiaas> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T23:06:45.726 INFO:teuthology.orchestra.run.trial152.stdout:^? 149.28.200.179.vultruser> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T23:06:45.726 INFO:teuthology.orchestra.run.trial152.stdout:^? 96-19-94-82.cpe.sparklig> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T23:06:45.726 INFO:teuthology.orchestra.run.trial152.stdout:^? ntp.maxhost.io 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T23:06:45.727 INFO:teuthology.run_tasks:Running task pexec... 2026-02-20T23:06:45.748 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-20T23:06:45.748 DEBUG:teuthology.orchestra.run.trial047:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T23:06:45.749 DEBUG:teuthology.orchestra.run.trial152:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T23:06:45.752 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:06:45.752 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T23:06:45.752 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-20T23:06:45.752 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-20T23:06:45.752 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-20T23:06:45.769 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial152.front.sepia.ceph.com 2026-02-20T23:06:45.769 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T23:06:45.769 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-20T23:06:45.769 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-20T23:06:45.769 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-20T23:06:45.921 INFO:teuthology.orchestra.run.trial047.stdout:No match for argument: nvme-cli 2026-02-20T23:06:45.921 INFO:teuthology.orchestra.run.trial047.stderr:No packages marked for removal. 2026-02-20T23:06:45.923 INFO:teuthology.orchestra.run.trial047.stdout:Dependencies resolved. 2026-02-20T23:06:45.923 INFO:teuthology.orchestra.run.trial047.stdout:Nothing to do. 2026-02-20T23:06:45.923 INFO:teuthology.orchestra.run.trial047.stdout:Complete! 2026-02-20T23:06:45.937 INFO:teuthology.orchestra.run.trial152.stdout:No match for argument: nvme-cli 2026-02-20T23:06:45.937 INFO:teuthology.orchestra.run.trial152.stderr:No packages marked for removal. 2026-02-20T23:06:45.939 INFO:teuthology.orchestra.run.trial152.stdout:Dependencies resolved. 2026-02-20T23:06:45.940 INFO:teuthology.orchestra.run.trial152.stdout:Nothing to do. 2026-02-20T23:06:45.940 INFO:teuthology.orchestra.run.trial152.stdout:Complete! 2026-02-20T23:06:46.224 INFO:teuthology.orchestra.run.trial047.stdout:Last metadata expiration check: 0:00:29 ago on Fri 20 Feb 2026 11:06:17 PM UTC. 2026-02-20T23:06:46.244 INFO:teuthology.orchestra.run.trial152.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 11:06:18 PM UTC. 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout:Dependencies resolved. 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout: Package Arch Version Repository Size 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout:Installing: 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T23:06:46.305 INFO:teuthology.orchestra.run.trial047.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:Installing dependencies: 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:Transaction Summary 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:Install 7 Packages 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:Total download size: 6.3 M 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:Installed size: 24 M 2026-02-20T23:06:46.306 INFO:teuthology.orchestra.run.trial047.stdout:Downloading Packages: 2026-02-20T23:06:46.325 INFO:teuthology.orchestra.run.trial152.stdout:Dependencies resolved. 2026-02-20T23:06:46.325 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:06:46.325 INFO:teuthology.orchestra.run.trial152.stdout: Package Arch Version Repository Size 2026-02-20T23:06:46.325 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:06:46.325 INFO:teuthology.orchestra.run.trial152.stdout:Installing: 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout:Installing dependencies: 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout:Transaction Summary 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout:================================================================================ 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout:Install 7 Packages 2026-02-20T23:06:46.326 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:06:46.327 INFO:teuthology.orchestra.run.trial152.stdout:Total download size: 6.3 M 2026-02-20T23:06:46.327 INFO:teuthology.orchestra.run.trial152.stdout:Installed size: 24 M 2026-02-20T23:06:46.327 INFO:teuthology.orchestra.run.trial152.stdout:Downloading Packages: 2026-02-20T23:06:46.724 INFO:teuthology.orchestra.run.trial152.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 991 kB/s | 44 kB 00:00 2026-02-20T23:06:46.730 INFO:teuthology.orchestra.run.trial152.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 1.4 MB/s | 72 kB 00:00 2026-02-20T23:06:46.745 INFO:teuthology.orchestra.run.trial152.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 4.0 MB/s | 84 kB 00:00 2026-02-20T23:06:46.754 INFO:teuthology.orchestra.run.trial152.stdout:(4/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 6.1 MB/s | 150 kB 00:00 2026-02-20T23:06:46.767 INFO:teuthology.orchestra.run.trial152.stdout:(5/7): nvme-cli-2.16-1.el9.x86_64.rpm 13 MB/s | 1.2 MB 00:00 2026-02-20T23:06:46.784 INFO:teuthology.orchestra.run.trial152.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 21 MB/s | 837 kB 00:00 2026-02-20T23:06:46.837 INFO:teuthology.orchestra.run.trial047.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 297 kB/s | 44 kB 00:00 2026-02-20T23:06:46.851 INFO:teuthology.orchestra.run.trial047.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 443 kB/s | 72 kB 00:00 2026-02-20T23:06:46.892 INFO:teuthology.orchestra.run.trial047.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.5 MB/s | 84 kB 00:00 2026-02-20T23:06:46.917 INFO:teuthology.orchestra.run.trial047.stdout:(4/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 2.2 MB/s | 150 kB 00:00 2026-02-20T23:06:46.951 INFO:teuthology.orchestra.run.trial047.stdout:(5/7): nvme-cli-2.16-1.el9.x86_64.rpm 4.4 MB/s | 1.2 MB 00:00 2026-02-20T23:06:46.994 INFO:teuthology.orchestra.run.trial047.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 8.0 MB/s | 837 kB 00:00 2026-02-20T23:06:46.999 INFO:teuthology.orchestra.run.trial152.stdout:(7/7): runc-1.4.0-1.el9.x86_64.rpm 16 MB/s | 4.0 MB 00:00 2026-02-20T23:06:46.999 INFO:teuthology.orchestra.run.trial152.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:06:46.999 INFO:teuthology.orchestra.run.trial152.stdout:Total 9.3 MB/s | 6.3 MB 00:00 2026-02-20T23:06:47.069 INFO:teuthology.orchestra.run.trial152.stdout:Running transaction check 2026-02-20T23:06:47.076 INFO:teuthology.orchestra.run.trial047.stdout:(7/7): runc-1.4.0-1.el9.x86_64.rpm 25 MB/s | 4.0 MB 00:00 2026-02-20T23:06:47.076 INFO:teuthology.orchestra.run.trial152.stdout:Transaction check succeeded. 2026-02-20T23:06:47.076 INFO:teuthology.orchestra.run.trial152.stdout:Running transaction test 2026-02-20T23:06:47.076 INFO:teuthology.orchestra.run.trial047.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:06:47.076 INFO:teuthology.orchestra.run.trial047.stdout:Total 8.1 MB/s | 6.3 MB 00:00 2026-02-20T23:06:47.145 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction check 2026-02-20T23:06:47.153 INFO:teuthology.orchestra.run.trial047.stdout:Transaction check succeeded. 2026-02-20T23:06:47.153 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction test 2026-02-20T23:06:47.157 INFO:teuthology.orchestra.run.trial152.stdout:Transaction test succeeded. 2026-02-20T23:06:47.158 INFO:teuthology.orchestra.run.trial152.stdout:Running transaction 2026-02-20T23:06:47.234 INFO:teuthology.orchestra.run.trial047.stdout:Transaction test succeeded. 2026-02-20T23:06:47.235 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction 2026-02-20T23:06:47.300 INFO:teuthology.orchestra.run.trial152.stdout: Preparing : 1/1 2026-02-20T23:06:47.307 INFO:teuthology.orchestra.run.trial152.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2026-02-20T23:06:47.316 INFO:teuthology.orchestra.run.trial152.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/7 2026-02-20T23:06:47.322 INFO:teuthology.orchestra.run.trial152.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T23:06:47.327 INFO:teuthology.orchestra.run.trial152.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T23:06:47.328 INFO:teuthology.orchestra.run.trial152.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T23:06:47.374 INFO:teuthology.orchestra.run.trial152.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T23:06:47.378 INFO:teuthology.orchestra.run.trial047.stdout: Preparing : 1/1 2026-02-20T23:06:47.387 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2026-02-20T23:06:47.395 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/7 2026-02-20T23:06:47.401 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T23:06:47.407 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T23:06:47.408 INFO:teuthology.orchestra.run.trial047.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T23:06:47.454 INFO:teuthology.orchestra.run.trial047.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T23:06:47.487 INFO:teuthology.orchestra.run.trial152.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 6/7 2026-02-20T23:06:47.489 INFO:teuthology.orchestra.run.trial152.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T23:06:47.568 INFO:teuthology.orchestra.run.trial047.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 6/7 2026-02-20T23:06:47.571 INFO:teuthology.orchestra.run.trial047.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T23:06:47.769 INFO:teuthology.orchestra.run.trial152.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T23:06:47.769 INFO:teuthology.orchestra.run.trial152.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T23:06:47.769 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:06:47.859 INFO:teuthology.orchestra.run.trial047.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T23:06:47.859 INFO:teuthology.orchestra.run.trial047.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T23:06:47.859 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:06:48.019 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/7 2026-02-20T23:06:48.020 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/7 2026-02-20T23:06:48.020 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T23:06:48.020 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T23:06:48.020 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/7 2026-02-20T23:06:48.020 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/7 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout:Installed: 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:06:48.078 INFO:teuthology.orchestra.run.trial152.stdout:Complete! 2026-02-20T23:06:48.104 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/7 2026-02-20T23:06:48.104 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/7 2026-02-20T23:06:48.104 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T23:06:48.104 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T23:06:48.104 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/7 2026-02-20T23:06:48.104 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2026-02-20T23:06:48.129 DEBUG:teuthology.parallel:result is None 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/7 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout:Installed: 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:06:48.157 INFO:teuthology.orchestra.run.trial047.stdout:Complete! 2026-02-20T23:06:48.209 DEBUG:teuthology.parallel:result is None 2026-02-20T23:06:48.210 INFO:teuthology.run_tasks:Running task nvme_loop... 2026-02-20T23:06:48.223 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2026-02-20T23:06:48.224 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:06:48.224 DEBUG:teuthology.orchestra.run.trial047:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:06:48.240 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-02-20T23:06:48.240 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/vg_nvme/lv_1 2026-02-20T23:06:48.300 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T23:06:48.300 INFO:teuthology.orchestra.run.trial047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:48.300 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1310 Links: 1 2026-02-20T23:06:48.300 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:48.300 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:48.301 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:06:48.014211408 +0000 2026-02-20T23:06:48.301 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:47.887216352 +0000 2026-02-20T23:06:48.301 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:47.887216352 +0000 2026-02-20T23:06:48.301 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:47.887216352 +0000 2026-02-20T23:06:48.301 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T23:06:48.363 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:06:48.363 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:06:48.364 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000174333 s, 2.9 MB/s 2026-02-20T23:06:48.365 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T23:06:48.424 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/vg_nvme/lv_2 2026-02-20T23:06:48.480 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T23:06:48.480 INFO:teuthology.orchestra.run.trial047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:48.480 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1298 Links: 1 2026-02-20T23:06:48.480 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:48.481 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:48.481 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:06:48.014211408 +0000 2026-02-20T23:06:48.481 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:47.886216391 +0000 2026-02-20T23:06:48.481 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:47.886216391 +0000 2026-02-20T23:06:48.481 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:47.886216391 +0000 2026-02-20T23:06:48.481 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T23:06:48.543 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:06:48.543 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:06:48.543 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000149918 s, 3.4 MB/s 2026-02-20T23:06:48.544 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T23:06:48.601 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/vg_nvme/lv_3 2026-02-20T23:06:48.659 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1314 Links: 1 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:06:48.015211369 +0000 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:47.887216352 +0000 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:47.887216352 +0000 2026-02-20T23:06:48.660 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:47.887216352 +0000 2026-02-20T23:06:48.661 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T23:06:48.722 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:06:48.722 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:06:48.722 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.00016188 s, 3.2 MB/s 2026-02-20T23:06:48.723 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T23:06:48.782 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/vg_nvme/lv_4 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1296 Links: 1 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:06:48.015211369 +0000 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:47.886216391 +0000 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:47.886216391 +0000 2026-02-20T23:06:48.839 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:47.886216391 +0000 2026-02-20T23:06:48.840 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T23:06:48.901 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:06:48.902 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:06:48.902 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000141743 s, 3.6 MB/s 2026-02-20T23:06:48.903 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T23:06:48.958 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:06:49.061 INFO:teuthology.orchestra.run.trial047.stdout:loop 2026-02-20T23:06:49.063 INFO:tasks.nvme_loop:Connecting nvme_loop trial047:/dev/vg_nvme/lv_1... 2026-02-20T23:06:49.063 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:06:49.093 INFO:teuthology.orchestra.run.trial047.stdout:1 2026-02-20T23:06:49.119 INFO:teuthology.orchestra.run.trial047.stdout:/dev/vg_nvme/lv_11 2026-02-20T23:06:49.149 INFO:teuthology.orchestra.run.trial047.stdout:connecting to device: nvme3 2026-02-20T23:06:49.150 INFO:tasks.nvme_loop:Connecting nvme_loop trial047:/dev/vg_nvme/lv_2... 2026-02-20T23:06:49.151 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:06:49.223 INFO:teuthology.orchestra.run.trial047.stdout:1 2026-02-20T23:06:49.249 INFO:teuthology.orchestra.run.trial047.stdout:/dev/vg_nvme/lv_21 2026-02-20T23:06:49.283 INFO:teuthology.orchestra.run.trial047.stdout:connecting to device: nvme4 2026-02-20T23:06:49.284 INFO:tasks.nvme_loop:Connecting nvme_loop trial047:/dev/vg_nvme/lv_3... 2026-02-20T23:06:49.284 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:06:49.356 INFO:teuthology.orchestra.run.trial047.stdout:1 2026-02-20T23:06:49.380 INFO:teuthology.orchestra.run.trial047.stdout:/dev/vg_nvme/lv_31 2026-02-20T23:06:49.414 INFO:teuthology.orchestra.run.trial047.stdout:connecting to device: nvme5 2026-02-20T23:06:49.415 INFO:tasks.nvme_loop:Connecting nvme_loop trial047:/dev/vg_nvme/lv_4... 2026-02-20T23:06:49.415 DEBUG:teuthology.orchestra.run.trial047:> 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-20T23:06:49.487 INFO:teuthology.orchestra.run.trial047.stdout:1 2026-02-20T23:06:49.511 INFO:teuthology.orchestra.run.trial047.stdout:/dev/vg_nvme/lv_41 2026-02-20T23:06:49.545 INFO:teuthology.orchestra.run.trial047.stdout:connecting to device: nvme6 2026-02-20T23:06:49.547 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:06:49.547 DEBUG:teuthology.orchestra.run.trial047:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:06:49.602 DEBUG:teuthology.orchestra.run.trial047:> lsblk 2026-02-20T23:06:49.662 INFO:teuthology.orchestra.run.trial047.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:nvme0n1 259:0 0 894.3G 0 disk 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:├─nvme0n1p1 259:2 0 512M 0 part /boot/efi 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:└─nvme0n1p2 259:3 0 893.8G 0 part / 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:nvme1n1 259:1 0 1.7T 0 disk 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:nvme2n1 259:4 0 1.7T 0 disk 2026-02-20T23:06:49.663 INFO:teuthology.orchestra.run.trial047.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-20T23:06:49.664 INFO:teuthology.orchestra.run.trial047.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-20T23:06:49.664 INFO:teuthology.orchestra.run.trial047.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-20T23:06:49.664 INFO:teuthology.orchestra.run.trial047.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-20T23:06:49.664 INFO:teuthology.orchestra.run.trial047.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-20T23:06:49.664 INFO:teuthology.orchestra.run.trial047.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-20T23:06:49.664 DEBUG:teuthology.orchestra.run.trial047:> sudo nvme list -o json 2026-02-20T23:06:49.728 INFO:teuthology.orchestra.run.trial047.stdout:{ 2026-02-20T23:06:49.728 INFO:teuthology.orchestra.run.trial047.stdout: "Devices":[ 2026-02-20T23:06:49.728 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.728 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.728 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-20T23:06:49.728 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng0n1", 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"E2MU200", 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"25174FCD6979", 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":447475445760, 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":1875385008, 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":960197124096, 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: }, 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.729 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng1n1", 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"E3MQ000", 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"112510AB5118", 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":140259729408, 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":3750748848, 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":1920383410176, 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: }, 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.730 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng2n1", 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"E3MQ000", 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"112510AB50FC", 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":140305395712, 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":3750748848, 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":1920383410176, 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: }, 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.731 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng3n1", 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"6638df0397660a8f4b03", 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: }, 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-20T23:06:49.732 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng4n1", 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"bcdb55a4bfea5a21e174", 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: }, 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng5n1", 2026-02-20T23:06:49.733 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"776edb3157486601cbab", 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: }, 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: { 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "NameSpace":1, 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "GenericPath":"/dev/ng6n1", 2026-02-20T23:06:49.734 INFO:teuthology.orchestra.run.trial047.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: "SerialNumber":"1507417cb26311f42d0a", 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: "SectorSize":512 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: } 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout: ] 2026-02-20T23:06:49.735 INFO:teuthology.orchestra.run.trial047.stdout:} 2026-02-20T23:06:49.736 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-20T23:06:49.805 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:49.805 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:49.805 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.004388 s, 933 kB/s 2026-02-20T23:06:49.806 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-20T23:06:49.869 INFO:teuthology.orchestra.run.trial047.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:49.869 INFO:teuthology.orchestra.run.trial047.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:49.869 INFO:teuthology.orchestra.run.trial047.stdout:00000016 2026-02-20T23:06:49.870 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:49.938 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:49.938 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:49.938 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00492751 s, 831 kB/s 2026-02-20T23:06:49.939 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-20T23:06:50.001 INFO:teuthology.orchestra.run.trial047.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.001 INFO:teuthology.orchestra.run.trial047.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.001 INFO:teuthology.orchestra.run.trial047.stdout:40000016 2026-02-20T23:06:50.002 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:50.069 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.069 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.070 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00446023 s, 918 kB/s 2026-02-20T23:06:50.071 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-20T23:06:50.134 INFO:teuthology.orchestra.run.trial047.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.134 INFO:teuthology.orchestra.run.trial047.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.134 INFO:teuthology.orchestra.run.trial047.stdout:280000016 2026-02-20T23:06:50.135 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-20T23:06:50.209 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.209 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.209 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00468606 s, 874 kB/s 2026-02-20T23:06:50.210 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-20T23:06:50.282 INFO:teuthology.orchestra.run.trial047.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.282 INFO:teuthology.orchestra.run.trial047.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.282 INFO:teuthology.orchestra.run.trial047.stdout:00000016 2026-02-20T23:06:50.283 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:50.352 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.352 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.352 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00460336 s, 890 kB/s 2026-02-20T23:06:50.354 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-20T23:06:50.416 INFO:teuthology.orchestra.run.trial047.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.416 INFO:teuthology.orchestra.run.trial047.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.416 INFO:teuthology.orchestra.run.trial047.stdout:40000016 2026-02-20T23:06:50.417 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:50.484 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.485 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.485 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00485706 s, 843 kB/s 2026-02-20T23:06:50.486 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-20T23:06:50.549 INFO:teuthology.orchestra.run.trial047.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.549 INFO:teuthology.orchestra.run.trial047.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.549 INFO:teuthology.orchestra.run.trial047.stdout:280000016 2026-02-20T23:06:50.550 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-20T23:06:50.618 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.618 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.618 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00466521 s, 878 kB/s 2026-02-20T23:06:50.619 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-20T23:06:50.680 INFO:teuthology.orchestra.run.trial047.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.680 INFO:teuthology.orchestra.run.trial047.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.680 INFO:teuthology.orchestra.run.trial047.stdout:00000016 2026-02-20T23:06:50.681 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:50.747 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.747 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.747 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00445917 s, 919 kB/s 2026-02-20T23:06:50.749 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-20T23:06:50.812 INFO:teuthology.orchestra.run.trial047.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.812 INFO:teuthology.orchestra.run.trial047.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.812 INFO:teuthology.orchestra.run.trial047.stdout:40000016 2026-02-20T23:06:50.813 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:50.879 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:50.879 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:50.879 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00468433 s, 874 kB/s 2026-02-20T23:06:50.880 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-20T23:06:50.943 INFO:teuthology.orchestra.run.trial047.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:50.943 INFO:teuthology.orchestra.run.trial047.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:50.943 INFO:teuthology.orchestra.run.trial047.stdout:280000016 2026-02-20T23:06:50.944 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-20T23:06:51.011 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:51.011 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:51.011 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00460729 s, 889 kB/s 2026-02-20T23:06:51.013 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-20T23:06:51.075 INFO:teuthology.orchestra.run.trial047.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:51.075 INFO:teuthology.orchestra.run.trial047.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:51.075 INFO:teuthology.orchestra.run.trial047.stdout:00000016 2026-02-20T23:06:51.076 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:51.143 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:51.143 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:51.143 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00481075 s, 851 kB/s 2026-02-20T23:06:51.144 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-20T23:06:51.206 INFO:teuthology.orchestra.run.trial047.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:51.206 INFO:teuthology.orchestra.run.trial047.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:51.207 INFO:teuthology.orchestra.run.trial047.stdout:40000016 2026-02-20T23:06:51.207 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:51.275 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records in 2026-02-20T23:06:51.275 INFO:teuthology.orchestra.run.trial047.stderr:4096+0 records out 2026-02-20T23:06:51.275 INFO:teuthology.orchestra.run.trial047.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00488587 s, 838 kB/s 2026-02-20T23:06:51.276 DEBUG:teuthology.orchestra.run.trial047:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-20T23:06:51.338 INFO:teuthology.orchestra.run.trial047.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:51.338 INFO:teuthology.orchestra.run.trial047.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:51.338 INFO:teuthology.orchestra.run.trial047.stdout:280000016 2026-02-20T23:06:51.339 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-20T23:06:51.339 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:06:51.339 DEBUG:teuthology.orchestra.run.trial047:> sudo dd of=/scratch_devs 2026-02-20T23:06:51.403 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:06:51.403 DEBUG:teuthology.orchestra.run.trial152:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:06:51.420 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-02-20T23:06:51.421 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/vg_nvme/lv_1 2026-02-20T23:06:51.479 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T23:06:51.479 INFO:teuthology.orchestra.run.trial152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:51.479 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1300 Links: 1 2026-02-20T23:06:51.479 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:51.480 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:51.480 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:06:47.928323682 +0000 2026-02-20T23:06:51.480 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:47.798324099 +0000 2026-02-20T23:06:51.480 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:47.798324099 +0000 2026-02-20T23:06:51.480 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:47.798324099 +0000 2026-02-20T23:06:51.480 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T23:06:51.545 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:06:51.545 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:06:51.545 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000150092 s, 3.4 MB/s 2026-02-20T23:06:51.546 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T23:06:51.603 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/vg_nvme/lv_2 2026-02-20T23:06:51.660 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T23:06:51.661 INFO:teuthology.orchestra.run.trial152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:51.661 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1312 Links: 1 2026-02-20T23:06:51.661 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:51.661 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:51.662 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:06:47.928323682 +0000 2026-02-20T23:06:51.662 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:47.798324099 +0000 2026-02-20T23:06:51.662 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:47.798324099 +0000 2026-02-20T23:06:51.662 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:47.798324099 +0000 2026-02-20T23:06:51.663 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T23:06:51.723 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:06:51.724 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:06:51.724 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000146614 s, 3.5 MB/s 2026-02-20T23:06:51.725 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T23:06:51.781 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/vg_nvme/lv_3 2026-02-20T23:06:51.839 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T23:06:51.839 INFO:teuthology.orchestra.run.trial152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:51.839 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1297 Links: 1 2026-02-20T23:06:51.839 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:51.839 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:51.840 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:06:47.928323682 +0000 2026-02-20T23:06:51.840 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:47.796324105 +0000 2026-02-20T23:06:51.840 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:47.796324105 +0000 2026-02-20T23:06:51.840 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:47.796324105 +0000 2026-02-20T23:06:51.840 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T23:06:51.901 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:06:51.902 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:06:51.902 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000157724 s, 3.2 MB/s 2026-02-20T23:06:51.903 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T23:06:51.960 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/vg_nvme/lv_4 2026-02-20T23:06:52.015 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T23:06:52.015 INFO:teuthology.orchestra.run.trial152.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:06:52.015 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1287 Links: 1 2026-02-20T23:06:52.016 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:06:52.016 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:06:52.016 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:06:47.929323679 +0000 2026-02-20T23:06:52.016 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:47.795324108 +0000 2026-02-20T23:06:52.016 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:47.795324108 +0000 2026-02-20T23:06:52.016 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:47.795324108 +0000 2026-02-20T23:06:52.016 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T23:06:52.077 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:06:52.078 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:06:52.078 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000163305 s, 3.1 MB/s 2026-02-20T23:06:52.079 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T23:06:52.136 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:06:52.240 INFO:teuthology.orchestra.run.trial152.stdout:loop 2026-02-20T23:06:52.241 INFO:tasks.nvme_loop:Connecting nvme_loop trial152:/dev/vg_nvme/lv_1... 2026-02-20T23:06:52.241 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:06:52.272 INFO:teuthology.orchestra.run.trial152.stdout:1 2026-02-20T23:06:52.302 INFO:teuthology.orchestra.run.trial152.stdout:/dev/vg_nvme/lv_11 2026-02-20T23:06:52.332 INFO:teuthology.orchestra.run.trial152.stdout:connecting to device: nvme3 2026-02-20T23:06:52.334 INFO:tasks.nvme_loop:Connecting nvme_loop trial152:/dev/vg_nvme/lv_2... 2026-02-20T23:06:52.335 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:06:52.407 INFO:teuthology.orchestra.run.trial152.stdout:1 2026-02-20T23:06:52.433 INFO:teuthology.orchestra.run.trial152.stdout:/dev/vg_nvme/lv_21 2026-02-20T23:06:52.467 INFO:teuthology.orchestra.run.trial152.stdout:connecting to device: nvme4 2026-02-20T23:06:52.471 INFO:tasks.nvme_loop:Connecting nvme_loop trial152:/dev/vg_nvme/lv_3... 2026-02-20T23:06:52.472 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:06:52.545 INFO:teuthology.orchestra.run.trial152.stdout:1 2026-02-20T23:06:52.570 INFO:teuthology.orchestra.run.trial152.stdout:/dev/vg_nvme/lv_31 2026-02-20T23:06:52.604 INFO:teuthology.orchestra.run.trial152.stdout:connecting to device: nvme5 2026-02-20T23:06:52.605 INFO:tasks.nvme_loop:Connecting nvme_loop trial152:/dev/vg_nvme/lv_4... 2026-02-20T23:06:52.605 DEBUG:teuthology.orchestra.run.trial152:> 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-20T23:06:52.680 INFO:teuthology.orchestra.run.trial152.stdout:1 2026-02-20T23:06:52.706 INFO:teuthology.orchestra.run.trial152.stdout:/dev/vg_nvme/lv_41 2026-02-20T23:06:52.741 INFO:teuthology.orchestra.run.trial152.stdout:connecting to device: nvme6 2026-02-20T23:06:52.742 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:06:52.742 DEBUG:teuthology.orchestra.run.trial152:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:06:52.800 DEBUG:teuthology.orchestra.run.trial152:> lsblk 2026-02-20T23:06:52.858 INFO:teuthology.orchestra.run.trial152.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme2n1 259:0 0 1.7T 0 disk 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme1n1 259:1 0 1.7T 0 disk 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme0n1 259:2 0 894.3G 0 disk 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:├─nvme0n1p1 259:3 0 512M 0 part /boot/efi 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:└─nvme0n1p2 259:4 0 893.8G 0 part / 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-20T23:06:52.859 INFO:teuthology.orchestra.run.trial152.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-20T23:06:52.859 DEBUG:teuthology.orchestra.run.trial152:> sudo nvme list -o json 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout:{ 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "Devices":[ 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng0n1", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"E2MU200", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"25174FCD4660", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":217417293824, 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":1875385008, 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":960197124096, 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: }, 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng1n1", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"E3MQ000", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"012510B002CB", 2026-02-20T23:06:52.925 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":140752183296, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":3750748848, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":1920383410176, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: }, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng2n1", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"E3MQ000", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"012510B0024F", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":140614176768, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":3750748848, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":1920383410176, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: }, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng3n1", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"b98e95ebca46742ac984", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: }, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng4n1", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"c7aceee46128a1e78ff3", 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:52.926 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: }, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng5n1", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"9822ee0a9d6714372db2", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: }, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: { 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "NameSpace":1, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "GenericPath":"/dev/ng6n1", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "Firmware":"5.14.0-6", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "ModelNumber":"Linux", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "SerialNumber":"b7ba16fa9e65a0972c70", 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "UsedBytes":751619276800, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "MaximumLBA":1468006400, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "PhysicalSize":751619276800, 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: "SectorSize":512 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: } 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout: ] 2026-02-20T23:06:52.927 INFO:teuthology.orchestra.run.trial152.stdout:} 2026-02-20T23:06:52.928 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-20T23:06:52.994 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:52.994 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:52.994 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00434804 s, 942 kB/s 2026-02-20T23:06:52.996 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-20T23:06:53.058 INFO:teuthology.orchestra.run.trial152.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.058 INFO:teuthology.orchestra.run.trial152.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.058 INFO:teuthology.orchestra.run.trial152.stdout:00000016 2026-02-20T23:06:53.059 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:53.126 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.126 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.127 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0046967 s, 872 kB/s 2026-02-20T23:06:53.128 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-20T23:06:53.190 INFO:teuthology.orchestra.run.trial152.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.190 INFO:teuthology.orchestra.run.trial152.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.191 INFO:teuthology.orchestra.run.trial152.stdout:40000016 2026-02-20T23:06:53.192 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:53.261 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.261 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.261 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00522959 s, 783 kB/s 2026-02-20T23:06:53.263 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-20T23:06:53.325 INFO:teuthology.orchestra.run.trial152.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.325 INFO:teuthology.orchestra.run.trial152.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.325 INFO:teuthology.orchestra.run.trial152.stdout:280000016 2026-02-20T23:06:53.326 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-20T23:06:53.396 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.397 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.397 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00513568 s, 798 kB/s 2026-02-20T23:06:53.398 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-20T23:06:53.461 INFO:teuthology.orchestra.run.trial152.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.461 INFO:teuthology.orchestra.run.trial152.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.462 INFO:teuthology.orchestra.run.trial152.stdout:00000016 2026-02-20T23:06:53.462 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:53.530 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.530 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.530 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00485947 s, 843 kB/s 2026-02-20T23:06:53.531 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-20T23:06:53.593 INFO:teuthology.orchestra.run.trial152.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.593 INFO:teuthology.orchestra.run.trial152.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.593 INFO:teuthology.orchestra.run.trial152.stdout:40000016 2026-02-20T23:06:53.594 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:53.662 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.663 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.663 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00499911 s, 819 kB/s 2026-02-20T23:06:53.664 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-20T23:06:53.728 INFO:teuthology.orchestra.run.trial152.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.729 INFO:teuthology.orchestra.run.trial152.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.729 INFO:teuthology.orchestra.run.trial152.stdout:280000016 2026-02-20T23:06:53.730 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-20T23:06:53.800 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.800 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.800 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0048272 s, 849 kB/s 2026-02-20T23:06:53.801 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-20T23:06:53.865 INFO:teuthology.orchestra.run.trial152.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:53.865 INFO:teuthology.orchestra.run.trial152.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:53.865 INFO:teuthology.orchestra.run.trial152.stdout:00000016 2026-02-20T23:06:53.866 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:53.934 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:53.935 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:53.935 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00492567 s, 832 kB/s 2026-02-20T23:06:53.936 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-20T23:06:53.999 INFO:teuthology.orchestra.run.trial152.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:54.000 INFO:teuthology.orchestra.run.trial152.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:54.000 INFO:teuthology.orchestra.run.trial152.stdout:40000016 2026-02-20T23:06:54.001 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:54.070 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:54.071 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:54.071 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00453126 s, 904 kB/s 2026-02-20T23:06:54.072 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-20T23:06:54.135 INFO:teuthology.orchestra.run.trial152.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:54.136 INFO:teuthology.orchestra.run.trial152.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:54.136 INFO:teuthology.orchestra.run.trial152.stdout:280000016 2026-02-20T23:06:54.136 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-20T23:06:54.205 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:54.205 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:54.205 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00491683 s, 833 kB/s 2026-02-20T23:06:54.206 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-20T23:06:54.268 INFO:teuthology.orchestra.run.trial152.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:54.268 INFO:teuthology.orchestra.run.trial152.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:54.269 INFO:teuthology.orchestra.run.trial152.stdout:00000016 2026-02-20T23:06:54.269 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-20T23:06:54.336 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:54.336 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:54.336 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00466504 s, 878 kB/s 2026-02-20T23:06:54.337 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-20T23:06:54.400 INFO:teuthology.orchestra.run.trial152.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:54.400 INFO:teuthology.orchestra.run.trial152.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:54.400 INFO:teuthology.orchestra.run.trial152.stdout:40000016 2026-02-20T23:06:54.401 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-20T23:06:54.469 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records in 2026-02-20T23:06:54.469 INFO:teuthology.orchestra.run.trial152.stderr:4096+0 records out 2026-02-20T23:06:54.469 INFO:teuthology.orchestra.run.trial152.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.004939 s, 829 kB/s 2026-02-20T23:06:54.470 DEBUG:teuthology.orchestra.run.trial152:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-20T23:06:54.532 INFO:teuthology.orchestra.run.trial152.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-20T23:06:54.532 INFO:teuthology.orchestra.run.trial152.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-20T23:06:54.532 INFO:teuthology.orchestra.run.trial152.stdout:280000016 2026-02-20T23:06:54.533 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-20T23:06:54.533 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:06:54.533 DEBUG:teuthology.orchestra.run.trial152:> sudo dd of=/scratch_devs 2026-02-20T23:06:54.596 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-20T23:06:54.691 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': 'f7870454149f22574086dd2ff55d050585136531'} 2026-02-20T23:06:54.691 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:06:54.693 INFO:tasks.cephadm:Cluster fsid is d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:06:54.693 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-20T23:06:54.693 INFO:tasks.cephadm:No mon roles; fabricating mons 2026-02-20T23:06:54.693 INFO:tasks.cephadm:Monitor IPs: {'mon.trial047': '10.20.193.47', 'mon.trial152': '10.20.193.152'} 2026-02-20T23:06:54.693 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-20T23:06:54.693 DEBUG:teuthology.orchestra.run.trial047:> sudo hostname $(hostname -s) 2026-02-20T23:06:54.720 DEBUG:teuthology.orchestra.run.trial152:> sudo hostname $(hostname -s) 2026-02-20T23:06:54.745 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-20T23:06:54.746 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:06:54.870 INFO:tasks.cephadm:builder_project result: [{'url': 'https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/', 'ref': 'wip-pdonnell-testing-20260219.182737-tentacle', 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-20 13:26:37.513007', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['source', 'x86_64'], 'extra': {'version': '20.2.0-677-gf7870454', 'package_manager_version': '20.2.0-677.gf7870454', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3114/', 'root_build_cause': '', 'node_name': '10.20.192.18+soko08', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-20T23:06:55.001 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-pdonnell-testing-20260219.182737-tentacle, sha1 f7870454149f22574086dd2ff55d050585136531 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:06:55.003 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm 2026-02-20T23:06:55.003 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm 2026-02-20T23:06:55.003 DEBUG:teuthology.orchestra.run.trial047:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-20T23:06:55.319 INFO:teuthology.orchestra.run.trial047.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 23:06 /home/ubuntu/cephtest/cephadm 2026-02-20T23:06:55.319 DEBUG:teuthology.orchestra.run.trial152:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-20T23:06:55.648 INFO:teuthology.orchestra.run.trial152.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 23:06 /home/ubuntu/cephtest/cephadm 2026-02-20T23:06:55.648 DEBUG:teuthology.orchestra.run.trial047:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T23:06:55.666 DEBUG:teuthology.orchestra.run.trial152:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T23:06:55.695 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 on all hosts... 2026-02-20T23:06:55.695 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T23:06:55.709 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T23:06:55.947 INFO:teuthology.orchestra.run.trial047.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:06:55.960 INFO:teuthology.orchestra.run.trial152.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:07:04.843 INFO:teuthology.orchestra.run.trial152.stdout:{ 2026-02-20T23:07:04.843 INFO:teuthology.orchestra.run.trial152.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T23:07:04.843 INFO:teuthology.orchestra.run.trial152.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T23:07:04.844 INFO:teuthology.orchestra.run.trial152.stdout: "repo_digests": [ 2026-02-20T23:07:04.844 INFO:teuthology.orchestra.run.trial152.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T23:07:04.844 INFO:teuthology.orchestra.run.trial152.stdout: ] 2026-02-20T23:07:04.844 INFO:teuthology.orchestra.run.trial152.stdout:} 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout:{ 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout: "repo_digests": [ 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout: ] 2026-02-20T23:07:04.863 INFO:teuthology.orchestra.run.trial047.stdout:} 2026-02-20T23:07:04.879 DEBUG:teuthology.orchestra.run.trial047:> sudo mkdir -p /etc/ceph 2026-02-20T23:07:04.941 DEBUG:teuthology.orchestra.run.trial152:> sudo mkdir -p /etc/ceph 2026-02-20T23:07:04.966 DEBUG:teuthology.orchestra.run.trial047:> sudo chmod 777 /etc/ceph 2026-02-20T23:07:04.989 DEBUG:teuthology.orchestra.run.trial152:> sudo chmod 777 /etc/ceph 2026-02-20T23:07:05.032 INFO:tasks.cephadm:Writing seed config... 2026-02-20T23:07:05.034 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-20T23:07:05.035 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2026-02-20T23:07:05.036 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:07:05.036 DEBUG:teuthology.orchestra.run.trial047:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-20T23:07:05.053 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 = d93d7c13-0eb0-11f1-a7cb-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-20T23:07:05.053 DEBUG:teuthology.orchestra.run.trial047:mon.trial047> sudo journalctl -f -n 0 -u ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service 2026-02-20T23:07:05.095 INFO:tasks.cephadm:Bootstrapping... 2026-02-20T23:07:05.095 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 -v bootstrap --fsid d93d7c13-0eb0-11f1-a7cb-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.47 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:05.231 INFO:teuthology.orchestra.run.trial047.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:07:05.231 INFO:teuthology.orchestra.run.trial047.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531', '-v', 'bootstrap', '--fsid', 'd93d7c13-0eb0-11f1-a7cb-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.47', '--skip-admin-label'] 2026-02-20T23:07:05.232 INFO:teuthology.orchestra.run.trial047.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-20T23:07:05.232 INFO:teuthology.orchestra.run.trial047.stdout:Verifying podman|docker is present... 2026-02-20T23:07:05.247 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stdout 5.6.0 2026-02-20T23:07:05.247 INFO:teuthology.orchestra.run.trial047.stdout:Verifying lvm2 is present... 2026-02-20T23:07:05.247 INFO:teuthology.orchestra.run.trial047.stdout:Verifying time synchronization is in place... 2026-02-20T23:07:05.253 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-20T23:07:05.253 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-20T23:07:05.258 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-20T23:07:05.258 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:05.264 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout enabled 2026-02-20T23:07:05.270 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout active 2026-02-20T23:07:05.270 INFO:teuthology.orchestra.run.trial047.stdout:Unit chronyd.service is enabled and running 2026-02-20T23:07:05.270 INFO:teuthology.orchestra.run.trial047.stdout:Repeating the final host check... 2026-02-20T23:07:05.285 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stdout 5.6.0 2026-02-20T23:07:05.285 INFO:teuthology.orchestra.run.trial047.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-20T23:07:05.286 INFO:teuthology.orchestra.run.trial047.stdout:systemctl is present 2026-02-20T23:07:05.286 INFO:teuthology.orchestra.run.trial047.stdout:lvcreate is present 2026-02-20T23:07:05.291 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-20T23:07:05.291 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-20T23:07:05.296 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-20T23:07:05.296 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:05.302 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout enabled 2026-02-20T23:07:05.307 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout active 2026-02-20T23:07:05.307 INFO:teuthology.orchestra.run.trial047.stdout:Unit chronyd.service is enabled and running 2026-02-20T23:07:05.307 INFO:teuthology.orchestra.run.trial047.stdout:Host looks OK 2026-02-20T23:07:05.307 INFO:teuthology.orchestra.run.trial047.stdout:Cluster fsid: d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:05.308 INFO:teuthology.orchestra.run.trial047.stdout:Acquiring lock 139879674425600 on /run/cephadm/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.lock 2026-02-20T23:07:05.308 INFO:teuthology.orchestra.run.trial047.stdout:Lock 139879674425600 acquired on /run/cephadm/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.lock 2026-02-20T23:07:05.308 INFO:teuthology.orchestra.run.trial047.stdout:Verifying IP 10.20.193.47 port 3300 ... 2026-02-20T23:07:05.308 INFO:teuthology.orchestra.run.trial047.stdout:Verifying IP 10.20.193.47 port 6789 ... 2026-02-20T23:07:05.308 INFO:teuthology.orchestra.run.trial047.stdout:Base mon IP(s) is [10.20.193.47:3300, 10.20.193.47:6789], mon addrv is [v2:10.20.193.47:3300,v1:10.20.193.47:6789] 2026-02-20T23:07:05.311 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.47 metric 102 2026-02-20T23:07:05.311 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.47 metric 102 2026-02-20T23:07:05.312 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-20T23:07:05.314 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-20T23:07:05.314 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-20T23:07:05.314 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-20T23:07:05.317 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-20T23:07:05.317 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-20T23:07:05.317 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T23:07:05.317 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-20T23:07:05.317 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout inet6 fe80::e686:65df:41e7:2856/64 scope link noprefixroute 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:5f94/64 scope link 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:Mon IP `10.20.193.47` is in CIDR network `10.20.192.0/20` 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:Mon IP `10.20.193.47` is in CIDR network `10.20.192.0/20` 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-20T23:07:05.318 INFO:teuthology.orchestra.run.trial047.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stdout 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stderr Getting image source signatures 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stderr Copying blob sha256:0cf63a27055a859d286185a933b0b6ddb181f8349d6aee8c52cf789385a51e06 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stderr Copying config sha256:191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 2026-02-20T23:07:05.569 INFO:teuthology.orchestra.run.trial047.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-20T23:07:05.820 INFO:teuthology.orchestra.run.trial047.stdout:ceph: stdout ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable) 2026-02-20T23:07:05.820 INFO:teuthology.orchestra.run.trial047.stdout:Ceph version: ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable) 2026-02-20T23:07:05.820 INFO:teuthology.orchestra.run.trial047.stdout:Extracting ceph user uid/gid from container image... 2026-02-20T23:07:06.054 INFO:teuthology.orchestra.run.trial047.stdout:stat: stdout 167 167 2026-02-20T23:07:06.054 INFO:teuthology.orchestra.run.trial047.stdout:Creating initial keys... 2026-02-20T23:07:06.308 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph-authtool: stdout AQAa6ZhpvhlKCxAAyyvTzndPUHt5uoEfII+wgw== 2026-02-20T23:07:06.552 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph-authtool: stdout AQAa6ZhpSnQMGhAAAUk6819qvw+ZYI2FmIq6BQ== 2026-02-20T23:07:06.797 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph-authtool: stdout AQAa6ZhpuMJ4KBAAyzZE4SOBS3d4Zx2Gc3fPIQ== 2026-02-20T23:07:06.798 INFO:teuthology.orchestra.run.trial047.stdout:Creating initial monmap... 2026-02-20T23:07:07.061 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-20T23:07:07.061 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-20T23:07:07.062 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:07.062 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-20T23:07:07.062 INFO:teuthology.orchestra.run.trial047.stdout:monmaptool for trial047 [v2:10.20.193.47:3300,v1:10.20.193.47:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-20T23:07:07.062 INFO:teuthology.orchestra.run.trial047.stdout:setting min_mon_release = tentacle 2026-02-20T23:07:07.062 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/monmaptool: set fsid to d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:07.062 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-20T23:07:07.063 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:07.063 INFO:teuthology.orchestra.run.trial047.stdout:Creating mon... 2026-02-20T23:07:07.335 INFO:teuthology.orchestra.run.trial047.stdout:create mon.trial047 on 2026-02-20T23:07:07.620 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-20T23:07:07.728 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.target → /etc/systemd/system/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.target. 2026-02-20T23:07:07.728 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.target → /etc/systemd/system/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.target. 2026-02-20T23:07:07.860 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047 2026-02-20T23:07:07.860 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service: Unit ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service not loaded. 2026-02-20T23:07:07.989 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.target.wants/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service → /etc/systemd/system/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@.service. 2026-02-20T23:07:08.143 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:07:08.143 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout disabled 2026-02-20T23:07:08.149 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:07:08.149 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:08.150 INFO:teuthology.orchestra.run.trial047.stdout:firewalld.service is not enabled 2026-02-20T23:07:08.150 INFO:teuthology.orchestra.run.trial047.stdout:Not possible to enable service . firewalld.service is not available 2026-02-20T23:07:08.150 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for mon to start... 2026-02-20T23:07:08.150 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for mon... 2026-02-20T23:07:08.425 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout cluster: 2026-02-20T23:07:08.425 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout id: d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:08.425 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-20T23:07:08.425 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:08.425 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout services: 2026-02-20T23:07:08.425 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum trial047 (age 0.148898s) [leader: trial047] 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout data: 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout pgs: 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:mon is available 2026-02-20T23:07:08.426 INFO:teuthology.orchestra.run.trial047.stdout:Assimilating anything we can from ceph.conf... 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout [global] 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout fsid = d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.47:3300,v1:10.20.193.47:6789] 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-20T23:07:08.691 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout [osd] 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-20T23:07:08.692 INFO:teuthology.orchestra.run.trial047.stdout:Generating new minimal ceph.conf... 2026-02-20T23:07:08.961 INFO:teuthology.orchestra.run.trial047.stdout:Restarting the monitor... 2026-02-20T23:07:09.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047[35417]: 2026-02-20T23:07:09.043+0000 7f8b274f6640 -1 mon.trial047@0(leader) e1 *** Got Signal Terminated *** 2026-02-20T23:07:09.539 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 podman[35813]: 2026-02-20 23:07:09.286613728 +0000 UTC m=+0.257027142 container died 83f31d4c3b83a027c8a467e1d3cb7ed779989390b7e0de28ee1c035b8f9b4525 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-20T23:07:09.539 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 podman[35813]: 2026-02-20 23:07:09.396433027 +0000 UTC m=+0.366846441 container remove 83f31d4c3b83a027c8a467e1d3cb7ed779989390b7e0de28ee1c035b8f9b4525 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216) 2026-02-20T23:07:09.539 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 bash[35813]: ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047 2026-02-20T23:07:09.539 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 systemd[1]: ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service: Deactivated successfully. 2026-02-20T23:07:09.539 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 systemd[1]: Stopped Ceph mon.trial047 for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460. 2026-02-20T23:07:09.539 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 systemd[1]: Starting Ceph mon.trial047 for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460... 2026-02-20T23:07:09.577 INFO:teuthology.orchestra.run.trial047.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 podman[35951]: 2026-02-20 23:07:09.538765105 +0000 UTC m=+0.015479550 container create 622203b63dd406d4985fa518169dd883f177b461ae72d7f90995cbbd1f63b1d6 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, ceph=True) 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 podman[35951]: 2026-02-20 23:07:09.5690901 +0000 UTC m=+0.045804465 container init 622203b63dd406d4985fa518169dd883f177b461ae72d7f90995cbbd1f63b1d6 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, ceph=True, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531) 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 podman[35951]: 2026-02-20 23:07:09.572482426 +0000 UTC m=+0.049196801 container start 622203b63dd406d4985fa518169dd883f177b461ae72d7f90995cbbd1f63b1d6 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, org.label-schema.vendor=CentOS, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 bash[35951]: 622203b63dd406d4985fa518169dd883f177b461ae72d7f90995cbbd1f63b1d6 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 podman[35951]: 2026-02-20 23:07:09.532480151 +0000 UTC m=+0.009194526 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 systemd[1]: Started Ceph mon.trial047 for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460. 2026-02-20T23:07:09.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: set uid:gid to 167:167 (ceph:ceph) 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable - RelWithDebInfo), process ceph-mon, pid 7 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: pidfile_write: ignore empty --pid-file 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: load: jerasure load: lrc 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: RocksDB version: 7.9.2 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Git sha 0 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Compile date 2026-02-20 12:51:44 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: DB SUMMARY 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: DB Session ID: 7DYH9ESYT5JTT27FD56L 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: CURRENT file: CURRENT 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: IDENTITY file: IDENTITY 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: SST files in /var/lib/ceph/mon/ceph-trial047/store.db dir, Total Num: 1, files: 000008.sst 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial047/store.db: 000009.log size: 76203 ; 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.error_if_exists: 0 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.create_if_missing: 0 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.paranoid_checks: 1 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.env: 0x55d1ad1d94c0 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.fs: PosixFileSystem 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.info_log: 0x55d1ae6aa2c0 2026-02-20T23:07:09.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_file_opening_threads: 16 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.statistics: (nil) 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.use_fsync: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_log_file_size: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.keep_log_file_num: 1000 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.recycle_log_file_num: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.allow_fallocate: 1 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.allow_mmap_reads: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.allow_mmap_writes: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.use_direct_reads: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.create_missing_column_families: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.db_log_dir: 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.wal_dir: 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.advise_random_on_open: 1 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.db_write_buffer_size: 0 2026-02-20T23:07:09.814 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.write_buffer_manager: 0x55d1ae69e140 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.rate_limiter: (nil) 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.wal_recovery_mode: 2 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.enable_thread_tracking: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.enable_pipelined_write: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.unordered_write: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.row_cache: None 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.wal_filter: None 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.allow_ingest_behind: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.two_write_queues: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.manual_wal_flush: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.wal_compression: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.atomic_flush: 0 2026-02-20T23:07:09.815 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.log_readahead_size: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.best_efforts_recovery: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.allow_data_in_errors: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.db_host_id: __hostname__ 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_background_jobs: 2 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_background_compactions: -1 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_subcompactions: 1 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-20T23:07:09.816 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_total_wal_size: 0 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_open_files: -1 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bytes_per_sync: 0 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_readahead_size: 0 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_background_flushes: -1 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Compression algorithms supported: 2026-02-20T23:07:09.817 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kZSTD supported: 0 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kXpressCompression supported: 0 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kBZip2Compression supported: 0 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kLZ4Compression supported: 1 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kZlibCompression supported: 1 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kLZ4HCCompression supported: 1 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: kSnappyCompression supported: 1 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial047/store.db/MANIFEST-000010 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.merge_operator: 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_filter: None 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_filter_factory: None 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.sst_partitioner_factory: None 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d1ae69acc0) 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout: cache_index_and_filter_blocks: 1 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-20T23:07:09.818 INFO:journalctl@ceph.mon.trial047.trial047.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: pin_top_level_index_and_filter: 1 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: index_type: 0 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: data_block_index_type: 0 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: index_shortening: 1 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: checksum: 4 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: no_block_cache: 0 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_cache: 0x55d1ae6bbb90 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_cache_name: BinnedLRUCache 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_cache_options: 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: capacity : 536870912 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: num_shard_bits : 4 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: strict_capacity_limit : 0 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: high_pri_pool_ratio: 0.000 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_cache_compressed: (nil) 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: persistent_cache: (nil) 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_size: 4096 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_size_deviation: 10 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_restart_interval: 16 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: index_block_restart_interval: 1 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: metadata_block_size: 4096 2026-02-20T23:07:09.819 INFO:journalctl@ceph.mon.trial047.trial047.stdout: partition_filters: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: use_delta_encoding: 1 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: filter_policy: bloomfilter 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: whole_key_filtering: 1 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: verify_compression: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: read_amp_bytes_per_bit: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: format_version: 5 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: enable_index_compression: 1 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: block_align: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: max_auto_readahead_size: 262144 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: prepopulate_block_cache: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: initial_auto_readahead_size: 8192 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout: num_file_reads_for_auto_readahead: 2 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.write_buffer_size: 33554432 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_write_buffer_number: 2 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression: NoCompression 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression: Disabled 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.prefix_extractor: nullptr 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.num_levels: 7 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-20T23:07:09.820 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.level: 32767 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.strategy: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.enabled: false 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-20T23:07:09.821 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.target_file_size_base: 67108864 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.arena_block_size: 1048576 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.disable_auto_compactions: 0 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-20T23:07:09.822 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.inplace_update_support: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.bloom_locality: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.max_successive_merges: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.paranoid_file_checks: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.force_consistency_checks: 1 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.report_bg_io_stats: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.ttl: 2592000 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-20T23:07:09.823 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.enable_blob_files: false 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.min_blob_size: 0 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.blob_file_size: 268435456 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.blob_file_starting_level: 0 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial047/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-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 440ba5ff-667f-4c56-a446-cfe4611a9df7 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771628829591026, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771628829591760, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73345, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 227, "table_properties": {"data_size": 71613, "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": 66117, "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": 1771628829, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "440ba5ff-667f-4c56-a446-cfe4611a9df7", "db_session_id": "7DYH9ESYT5JTT27FD56L", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771628829591820, "job": 1, "event": "recovery_finished"} 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial047/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55d1ae6bee00 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: DB pointer 0x55d1af4b0000 2026-02-20T23:07:09.824 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: ** DB Stats ** 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: ** Compaction Stats [default] ** 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: L0 2/0 73.52 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 127.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Sum 2/0 73.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 127.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.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 127.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: ** Compaction Stats [default] ** 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-20T23:07:09.825 INFO:journalctl@ceph.mon.trial047.trial047.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 127.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Cumulative compaction: 0.00 GB write, 28.36 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Interval compaction: 0.00 GB write, 28.36 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: Block cache BinnedLRUCache@0x55d1ae6bbb90#7 capacity: 512.00 MB usage: 1.08 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.6e-05 secs_since: 0 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: starting mon.trial047 rank 0 at public addrs [v2:10.20.193.47:3300/0,v1:10.20.193.47:6789/0] at bind addrs [v2:10.20.193.47:3300/0,v1:10.20.193.47:6789/0] mon_data /var/lib/ceph/mon/ceph-trial047 fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???) e1 preinit fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).mds e1 new map 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).mds e1 print_map 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: e1 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: btime 2026-02-20T23:07:08:154141+0000 2026-02-20T23:07:09.826 INFO:journalctl@ceph.mon.trial047.trial047.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.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-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout: legacy client fscid: -1 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout: 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout: No filesystems configured 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mon.trial047 is new leader, mons trial047 in quorum (ranks 0) 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: monmap epoch 1 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: last_changed 2026-02-20T23:07:06.930562+0000 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: created 2026-02-20T23:07:06.930562+0000 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: min_mon_release 20 (tentacle) 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: election_strategy: 1 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: 0: [v2:10.20.193.47:3300/0,v1:10.20.193.47:6789/0] mon.trial047 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: fsmap 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: osdmap e1: 0 total, 0 up, 0 in 2026-02-20T23:07:09.827 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:09 trial047 ceph-mon[36000]: mgrmap e1: no daemons active 2026-02-20T23:07:09.890 INFO:teuthology.orchestra.run.trial047.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-20T23:07:09.891 INFO:teuthology.orchestra.run.trial047.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:09.891 INFO:teuthology.orchestra.run.trial047.stdout:Creating mgr... 2026-02-20T23:07:09.891 INFO:teuthology.orchestra.run.trial047.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-20T23:07:09.892 INFO:teuthology.orchestra.run.trial047.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-20T23:07:09.892 INFO:teuthology.orchestra.run.trial047.stdout:Verifying port 0.0.0.0:8443 ... 2026-02-20T23:07:10.021 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mgr.trial047.aeotxy 2026-02-20T23:07:10.022 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mgr.trial047.aeotxy.service: Unit ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mgr.trial047.aeotxy.service not loaded. 2026-02-20T23:07:10.140 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460.target.wants/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mgr.trial047.aeotxy.service → /etc/systemd/system/ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@.service. 2026-02-20T23:07:10.297 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:07:10.297 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout disabled 2026-02-20T23:07:10.303 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:07:10.303 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:10.303 INFO:teuthology.orchestra.run.trial047.stdout:firewalld.service is not enabled 2026-02-20T23:07:10.304 INFO:teuthology.orchestra.run.trial047.stdout:Not possible to enable service . firewalld.service is not available 2026-02-20T23:07:10.310 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:07:10.310 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout disabled 2026-02-20T23:07:10.315 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:07:10.315 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:10.315 INFO:teuthology.orchestra.run.trial047.stdout:firewalld.service is not enabled 2026-02-20T23:07:10.316 INFO:teuthology.orchestra.run.trial047.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2026-02-20T23:07:10.316 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for mgr to start... 2026-02-20T23:07:10.316 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for mgr... 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "fsid": "d93d7c13-0eb0-11f1-a7cb-d404e6e7d460", 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 0 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "trial047" 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T23:07:10.612 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T23:07:08:154141+0000", 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T23:07:08.154501+0000", 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:07:10.613 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:10.614 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T23:07:10.614 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:10.614 INFO:teuthology.orchestra.run.trial047.stdout:mgr not available, waiting (1/15)... 2026-02-20T23:07:11.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:10 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1743266451' entity='client.admin' 2026-02-20T23:07:11.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:10 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/4226752890' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T23:07:12.891 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:12 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/4231879447' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "fsid": "d93d7c13-0eb0-11f1-a7cb-d404e6e7d460", 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 0 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "trial047" 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.897 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T23:07:08:154141+0000", 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T23:07:08.154501+0000", 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:12.898 INFO:teuthology.orchestra.run.trial047.stdout:mgr not available, waiting (2/15)... 2026-02-20T23:07:14.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: Activating manager daemon trial047.aeotxy 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: mgrmap e2: trial047.aeotxy(active, starting, since 0.00252218s) 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr metadata", "who": "trial047.aeotxy", "id": "trial047.aeotxy"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: Manager daemon trial047.aeotxy is now available 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/trash_purge_schedule"} : dispatch 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:14.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:13 trial047 ceph-mon[36000]: from='mgr.14100 10.20.193.47:0/2654659499' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:15.176 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:15 trial047 ceph-mon[36000]: mgrmap e3: trial047.aeotxy(active, since 1.00472s) 2026-02-20T23:07:15.308 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:15.308 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:15.308 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "fsid": "d93d7c13-0eb0-11f1-a7cb-d404e6e7d460", 2026-02-20T23:07:15.308 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T23:07:15.308 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 0 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T23:07:15.309 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "trial047" 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T23:07:15.310 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T23:07:15.311 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T23:07:08:154141+0000", 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T23:07:15.312 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T23:07:15.313 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:07:15.314 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T23:07:08.154501+0000", 2026-02-20T23:07:15.314 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:07:15.314 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:07:15.314 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T23:07:15.314 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:15.314 INFO:teuthology.orchestra.run.trial047.stdout:mgr is available 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout [global] 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout fsid = d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.47:3300,v1:10.20.193.47:6789] 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout [osd] 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-20T23:07:15.655 INFO:teuthology.orchestra.run.trial047.stdout:Enabling cephadm module... 2026-02-20T23:07:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:16 trial047 ceph-mon[36000]: mgrmap e4: trial047.aeotxy(active, since 2s) 2026-02-20T23:07:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:16 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1896560336' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T23:07:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:16 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/184946468' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-20T23:07:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:16 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/755720761' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "active_name": "trial047.aeotxy", 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for the mgr to restart... 2026-02-20T23:07:16.550 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for mgr epoch 5... 2026-02-20T23:07:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:17 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/755720761' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-20T23:07:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:17 trial047 ceph-mon[36000]: mgrmap e5: trial047.aeotxy(active, since 3s) 2026-02-20T23:07:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:17 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3432934491' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-20T23:07:19.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: Active manager daemon trial047.aeotxy restarted 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: Activating manager daemon trial047.aeotxy 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: osdmap e2: 0 total, 0 up, 0 in 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: mgrmap e6: trial047.aeotxy(active, starting, since 0.0025033s) 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr metadata", "who": "trial047.aeotxy", "id": "trial047.aeotxy"} : dispatch 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:07:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:18 trial047 ceph-mon[36000]: Manager daemon trial047.aeotxy is now available 2026-02-20T23:07:19.913 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:19.913 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-20T23:07:19.913 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-20T23:07:19.913 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:19.913 INFO:teuthology.orchestra.run.trial047.stdout:mgr epoch 5 is available 2026-02-20T23:07:19.913 INFO:teuthology.orchestra.run.trial047.stdout:Verifying orchestrator module is enabled... 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: Found migration_current of "None". Setting to last migration. 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/trash_purge_schedule"} : dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: mgrmap e7: trial047.aeotxy(active, since 1.00367s) 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:19] ENGINE Bus STARTING 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:19] ENGINE Serving on https://10.20.193.47:7150 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:19] ENGINE Client ('10.20.193.47', 60700) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:20] ENGINE Serving on http://10.20.193.47:8765 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:20] ENGINE Bus STARTED 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:20.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:20 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2393401916' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-20T23:07:20.909 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-20T23:07:20.909 INFO:teuthology.orchestra.run.trial047.stdout:Setting orchestrator backend to cephadm... 2026-02-20T23:07:21.624 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-20T23:07:21.625 INFO:teuthology.orchestra.run.trial047.stdout:Generating ssh key... 2026-02-20T23:07:22.045 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:21 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2393401916' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-20T23:07:22.045 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:21 trial047 ceph-mon[36000]: mgrmap e8: trial047.aeotxy(active, since 2s) 2026-02-20T23:07:22.045 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:21 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:22.045 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:21 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:22.357 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGNRRgVdM2hvE+IqTS6oBg72v8Bl0HbAqKpcpJLXhAhD ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:22.357 INFO:teuthology.orchestra.run.trial047.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:07:22.357 INFO:teuthology.orchestra.run.trial047.stdout:Adding key to root@localhost authorized_keys... 2026-02-20T23:07:22.358 INFO:teuthology.orchestra.run.trial047.stdout:Adding host trial047... 2026-02-20T23:07:23.127 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:22 trial047 ceph-mon[36000]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:23.128 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:22 trial047 ceph-mon[36000]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:23.128 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:22 trial047 ceph-mon[36000]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:23.128 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:22 trial047 ceph-mon[36000]: Generating ssh key... 2026-02-20T23:07:23.128 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:22 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:23.128 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:22 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:24.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:23 trial047 ceph-mon[36000]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:24.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:23 trial047 ceph-mon[36000]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial047", "addr": "10.20.193.47", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:24.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:23 trial047 ceph-mon[36000]: Deploying cephadm binary to trial047 2026-02-20T23:07:24.249 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Added host 'trial047' with addr '10.20.193.47' 2026-02-20T23:07:24.250 INFO:teuthology.orchestra.run.trial047.stdout:Deploying mon service with default placement... 2026-02-20T23:07:24.616 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-20T23:07:24.616 INFO:teuthology.orchestra.run.trial047.stdout:Deploying mgr service with default placement... 2026-02-20T23:07:24.979 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-20T23:07:24.979 INFO:teuthology.orchestra.run.trial047.stdout:Deploying crash service with default placement... 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: Added host trial047 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: Saving service mon spec with placement count:5 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: Saving service mgr spec with placement count:2 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:25.228 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:25 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:25.357 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2026-02-20T23:07:25.357 INFO:teuthology.orchestra.run.trial047.stdout:Deploying ceph-exporter service with default placement... 2026-02-20T23:07:25.739 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2026-02-20T23:07:25.739 INFO:teuthology.orchestra.run.trial047.stdout:Deploying prometheus service with default placement... 2026-02-20T23:07:26.117 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2026-02-20T23:07:26.117 INFO:teuthology.orchestra.run.trial047.stdout:Deploying grafana service with default placement... 2026-02-20T23:07:26.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:26.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: Saving service crash spec with placement * 2026-02-20T23:07:26.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:26.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:26.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:26.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: Saving service ceph-exporter spec with placement * 2026-02-20T23:07:26.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:26.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:26.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:26.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: Saving service prometheus spec with placement count:1 2026-02-20T23:07:26.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:26 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:26.478 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2026-02-20T23:07:26.478 INFO:teuthology.orchestra.run.trial047.stdout:Deploying node-exporter service with default placement... 2026-02-20T23:07:26.828 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2026-02-20T23:07:26.828 INFO:teuthology.orchestra.run.trial047.stdout:Deploying alertmanager service with default placement... 2026-02-20T23:07:27.192 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2026-02-20T23:07:27.602 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:27.602 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: Saving service grafana spec with placement count:1 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: Saving service node-exporter spec with placement * 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: Saving service alertmanager spec with placement count:1 2026-02-20T23:07:27.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:27 trial047 ceph-mon[36000]: from='mgr.14118 10.20.193.47:0/147906073' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:28.135 INFO:teuthology.orchestra.run.trial047.stdout:Enabling the dashboard module... 2026-02-20T23:07:28.529 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:28 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2678050946' entity='client.admin' 2026-02-20T23:07:28.529 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:28 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1314256953' entity='client.admin' 2026-02-20T23:07:29.671 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:29 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/4288389829' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-20T23:07:29.986 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "active_name": "trial047.aeotxy", 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for the mgr to restart... 2026-02-20T23:07:29.987 INFO:teuthology.orchestra.run.trial047.stdout:Waiting for mgr epoch 9... 2026-02-20T23:07:30.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:30 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/4288389829' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-20T23:07:30.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:30 trial047 ceph-mon[36000]: mgrmap e9: trial047.aeotxy(active, since 10s) 2026-02-20T23:07:30.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:30 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2808041181' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: Active manager daemon trial047.aeotxy restarted 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: Activating manager daemon trial047.aeotxy 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: osdmap e3: 0 total, 0 up, 0 in 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: mgrmap e10: trial047.aeotxy(active, starting, since 0.00269421s) 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr metadata", "who": "trial047.aeotxy", "id": "trial047.aeotxy"} : dispatch 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:07:32.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:32 trial047 ceph-mon[36000]: Manager daemon trial047.aeotxy is now available 2026-02-20T23:07:33.329 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:07:33.329 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-20T23:07:33.329 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-20T23:07:33.329 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:07:33.329 INFO:teuthology.orchestra.run.trial047.stdout:mgr epoch 9 is available 2026-02-20T23:07:33.329 INFO:teuthology.orchestra.run.trial047.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-20T23:07:33.504 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:33 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:33.504 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:33 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:07:33.504 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:33 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/trash_purge_schedule"} : dispatch 2026-02-20T23:07:33.504 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:33 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:33.504 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:33 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:33.504 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:33 trial047 ceph-mon[36000]: mgrmap e11: trial047.aeotxy(active, since 1.00398s) 2026-02-20T23:07:33.935 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+jCCAuKgAwIBAgIUBdvUc/JS7Dfs0dZdZfdcmNcsPHYwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI2MDIyMDIzMDczM1oXDTI5\nMDIxOTIzMDczM1owFzEVMBMGA1UEAwwMMTAuMjAuMTkzLjQ3MIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAjTxm/XB8WfuneJNsg92Q8qrlITSAci/b2UFG\ncoJtGPg7hOOPOv/jvgzU79wC/T08jlYqDF0r0FNxHyMUykIp4DRaSJdpOOH/o+Rb\neJZX87e9SAXJZ0ZvSAzoSAgjfLnVX0j8OMDvcvLQ0nTU4RybrfT1vEtSKzt473Sz\ncUkS1TghQZuL7wOa+MHPcrGveJpGGPw2AgmB6yEh/cAcV6bZjyUFxju4mT43XYAZ\n81RcgiCd9okWBqKa675+vaEj+eV0FqS931DbKbzvvKbfqASVcC3aqpNnC75bWJAP\n9XJS1/+DysMxIotCIH6VDNqhQDbeN4RLvRolKyeHHEalpeaWJv9VuzOPrulZe1+u\n2naoH1IFONAdUZ5Nkyl3L5RlaRSkIzDhU0eX5I65kc990k0EPJ/7ryTrgboK9STT\no+vycrP4XV5EsWBVBSM8xLebEAuEKLBu3NxEHar2NQcM0FgM0d2G3Duk+DWOdy04\nmLwQrZpTMy02uACbYm7xTE7o9tB3dO812eZmswSpqI4hDrKSR8oiIwZd1GlkwJys\n7RdLZBLyn93zqf5B680NkJj2V6wvSoRL6QP55rpzBglwGfStetEtapV1AHsnMN5T\najP4FeN3p8tonoTdblPfr6yBzuYXUpSTeS3J6dHg71olFqnOueQgxKngAAq+Ievo\nT0rjfDMCAwEAAaM+MDwwLAYDVR0RBCUwI4IIdHJpYWwwNDeCEWRhc2hib2FyZF9z\nZXJ2ZXJzhwQKFMEvMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAGYK\nZiSH/2xXHLphZbo6L1Dgsfv4re8qQyF5oqheQxM/6ofCDFn3mUrxaSubUU2rESpc\npMremP4UXFZ5w/Q3fLfBqSweqdITapON5lT+TC7D1AcjlMqaP/LRutHpC6Liwo2y\nXeNqNB4LGpfkkpx62tcet2nHSjiK2JdVQ61W8jN33lkfm+IJqEq9sJJZvVHavczD\naOJ+9y8KWtebqzDrTrwL6lHNYHinZr1cqoKQGKi9Z6TQXp+rrCgmvRCvamqKQqLg\nvKx+IBoVmqZKL6Oof0M3f8qdpEu+iF7ldfzLCSfuKO17yUI0N3KQ4/lJGuPER5ka\ni4CSCa/DwRvz5lBtoEuipfx7WBWF4lVXEXgM7F2ErQL3kTkKkopzXTkaPcXRaWnx\nR7mVDiWv405pcZMKszy9vhSpXsIKwMvdZE2LanwtOkKM4VXY1kIrxhrPYGJeUste\nLKrdk1KSCCFPwH7Q/uI3wIia5RymuayH8gf3UaPh9RFprrDcdx2ehwc4qS8LVEOD\ni1d24hd2u2rw8WQp8L//wXL9KmTZSOAFO5OeyofFxK/V9y6XPeP+H665nOQZhRXO\nci9DI3IrG2TgrEqFprtpyGoNP3eekbOVvFCNBIeklTlB8QYGdP6h2xNSod7rwlPA\nBEDjFybBCR9E1UuWyVjSc3qcFXxy4IJuCrxQH9wu\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEAjTxm/XB8WfuneJNsg92Q8qrlITSAci/b2UFGcoJtGPg7hOOP\nOv/jvgzU79wC/T08jlYqDF0r0FNxHyMUykIp4DRaSJdpOOH/o+RbeJZX87e9SAXJ\nZ0ZvSAzoSAgjfLnVX0j8OMDvcvLQ0nTU4RybrfT1vEtSKzt473SzcUkS1TghQZuL\n7wOa+MHPcrGveJpGGPw2AgmB6yEh/cAcV6bZjyUFxju4mT43XYAZ81RcgiCd9okW\nBqKa675+vaEj+eV0FqS931DbKbzvvKbfqASVcC3aqpNnC75bWJAP9XJS1/+DysMx\nIotCIH6VDNqhQDbeN4RLvRolKyeHHEalpeaWJv9VuzOPrulZe1+u2naoH1IFONAd\nUZ5Nkyl3L5RlaRSkIzDhU0eX5I65kc990k0EPJ/7ryTrgboK9STTo+vycrP4XV5E\nsWBVBSM8xLebEAuEKLBu3NxEHar2NQcM0FgM0d2G3Duk+DWOdy04mLwQrZpTMy02\nuACbYm7xTE7o9tB3dO812eZmswSpqI4hDrKSR8oiIwZd1GlkwJys7RdLZBLyn93z\nqf5B680NkJj2V6wvSoRL6QP55rpzBglwGfStetEtapV1AHsnMN5TajP4FeN3p8to\nnoTdblPfr6yBzuYXUpSTeS3J6dHg71olFqnOueQgxKngAAq+IevoT0rjfDMCAwEA\nAQKCAgAeWTzeN8YYxdkqMS+PtFQZuPwsYu442yzYJc0f/QO5alnLx+Q2rta+t14o\nPnQL+5UgFsbJSloIVW3I3Y5xmb8K1OUTlSmAlhuLGZ5ILrIuhixvpgKtpPZzmoZt\nOAZ8HiiJ5ZKBFYA+iIuztXQq/S08t5b4Q40gChMGDWMjtCqOU5Xd1bE/hlxOGMNd\nZ24HscrfQo7OaEGZB1EZCCdu9ETqm+9+NcYIc9SMzGKHJXkNYzneSH3JpjY48wGj\n+NTUtWf5F6RPML4vXVB8jrUfkwCTjt7eaXcqkFhrkuVC/jJsBJVKxB+yRw9KETkw\n/mfI9yFP96cYtt4GxGMlgc7Fc+OOovS/ZlhCPodZbRXMgABxaFBadbutxNlYENLC\nxPNPMQLinler1mIJUyunb2YpHX7d6hT6tgFBtZ8hxpitqpOa+QVFDJSCLQ2RcLZl\nC9tdJ4acQMO88bd7c1uPK1kJ/uvtA0FuwFtkuwNQn4u2Bn0eSAtsa2Ob+nDjwSPD\nDfLR1DTslp36mJNapzwl4TVpRvkI/wCg4bhKbPxQHNZotB7q8VqP5itm1/Gb9o6M\nN9cPJCbvxPEB8XPdLrk0P332Df5zjcOXpCF0TI7yM7Do/FjLvWBna5RwpRHfwzJC\nVXrF/BSHFNSRC459oe5FYUD0AYfj5VXF9MgvbHJmDt88nuymDQKCAQEAwG8p1A6d\ngVtpBEVyXf9ajV5HvoT6jRqcP2KIYitsi2AlMlSgiBUDHMFj3a30yW1ti0mjfcSn\nxzMoLqNMGmm5FIhCj0sRy1qddcLhC10pgFeYmMVP6701MjqQHm+0+gPYFuNcGNax\nipLZCchbHcnxPqVw6wBz2Tgw237j5ZTVdUnLFVEw08unPCed0s+qHT3tbvEdbkFl\nLATPICv9Gd++9qdNdeWza/3gy3vDBpSh9IgWUG0Dl0FIGS1G+D40FUZnIxqu4kaT\ndxhzmifJYFN/cBYB7r5Z+6m4dWDv/bIrf2NA0tAuSDpHyuI7b61mukB7Lf3md2Xl\nAe6m/3yrR4l3tQKCAQEAu+PAt6+Fkj8019Jp6KHoaWZicBy1HRX4oRQfzquHAXqu\nGridS97VUPnG+uZHe7fU+xDLzQlaSqqn7YAUIo0WSS9n5cUecv93xQngk/BLw5h5\nmURIbN6wgK1GBKHYY5cNOUYbnwtyBonc22r6CSVIQfF3M+Csu//2VyqZUS5ACoiW\nYZFhZLzIBVr3B1qLy/D/mVLatF3WpMUv6wB39xnpsYNaUavVvAqCaxPwRIbeAaN6\njlTXSqPLKno4KQhG9yAm+P5bUnOKyHa1AGqyFSdH9iWB+kx69BCCuO280xD7XGeu\nE8E0TGo1d1l2fW9061S9AyDokSqrptu91YBBXTHFRwKCAQA3lKP/NM13XGCjtC9J\nSQTtigqs05nOgZ4ZjKsZt7MdOoLj25+WToNcndrrX2AxgaK/NWC8Zb2UAombltzX\nUCv96zFWU/dqxdxu8/+uGZVwFVzk2zCvRTIFNPcFY3xhLhUO31Jtdi1HegyoD6+J\nlhdQ4dYQekv7tIggDbFjUS6qNssqeA3jTpIaBNNH3WUkFwvqHEhE3SyMn0L35tyu\nyXpNoZr074h4K5bvDusQjoOMrnXLewErgdaCNxqlfsnqTzBg6kcS4hGbt3tETjOS\n1+saA7FBNMemsamudXY7z2dS3ucNPMXxZKvxxJAoPGxMZW1upkQXvl17xmODrY2H\nFwR1AoIBAF8xgQ6PiykRhQBjxuzqOwpLqUwL/2cBHrrdq0/Wb8w8D8HSDz/FYmZo\nZnvv9/+in/GkDN2RA4IY/IPEBG+M8+GYdxdey5KQBGp8GqBZeslakyEoC1m9aceI\nApWOOkga28RM1Om7rsXJS3CPvqarkPR4FmDeUCXgBTschhkvSZsMoMRGGAYl72Fn\nOQkswu9M5vMTm2MOuBU7Io/56M30/wXE+xmt6dgfqvv9WhoeCpTh8tHyAjH60pBu\n481GOE40qAo3NKWNjJ8MJaBUbm1xPXBkiHn8Db9iLhjrumNlkzS6AuRXWtvsY7JY\nTUQ4GBCzGiBfp/UEnXsokgF9vaAt+zkCggEANb5st92odRoxTg5Dy/9DaOgcdiX9\nN4EkNgP7FpFSo6jp+KYBMpgEFc6C3w5+mKhRovSnFygMMGXAEOcYr6XJd1rKKiUY\ni0pPN5D3dKOz0/c0Im67wCM93uYTrFEBIyr5T453LdhrBRTLZrvN9UtUpnyw7cgY\nhuWQN7r3RfUIieT+4BT1k8OfJWSoCwec8c9JZerL21tF8mReROHWHl3goe8rT56i\n4IGhYL5U6t529fDDxlcI3Ni2z5jNorAOps/etmdqp1xihaKZ1TpyAU4nZsBM7EjY\nXOo1MqxsIpGHtnKRnbq//80lMX3NHjZC1z4qcQdG+k5wak+qgj7yMH0hwg==\n-----END RSA PRIVATE KEY-----\n"} 2026-02-20T23:07:34.300 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-20T23:07:34.536 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:33] ENGINE Bus STARTING 2026-02-20T23:07:34.536 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:33] ENGINE Serving on https://10.20.193.47:7150 2026-02-20T23:07:34.536 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:33] ENGINE Client ('10.20.193.47', 47834) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T23:07:34.537 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-20T23:07:34.537 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-20T23:07:34.537 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:33] ENGINE Serving on http://10.20.193.47:8765 2026-02-20T23:07:34.537 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:33] ENGINE Bus STARTED 2026-02-20T23:07:34.537 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:34 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:34.659 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-20T23:07:34.659 INFO:teuthology.orchestra.run.trial047.stdout:Creating initial admin user... 2026-02-20T23:07:35.216 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$DBb5vOKBIYDv0Kr8TZWDWO7kSx5v9Cxl.IM2WLph8HB/6DdJBXfPO", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771628855, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-20T23:07:35.217 INFO:teuthology.orchestra.run.trial047.stdout:Fetching dashboard port number... 2026-02-20T23:07:35.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:35 trial047 ceph-mon[36000]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:35.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:35 trial047 ceph-mon[36000]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:35.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:35 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:35.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:35 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:35.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:35 trial047 ceph-mon[36000]: mgrmap e12: trial047.aeotxy(active, since 2s) 2026-02-20T23:07:35.561 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stdout 8443 2026-02-20T23:07:35.569 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:07:35.569 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout disabled 2026-02-20T23:07:35.575 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:07:35.575 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:35.575 INFO:teuthology.orchestra.run.trial047.stdout:firewalld.service is not enabled 2026-02-20T23:07:35.576 INFO:teuthology.orchestra.run.trial047.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-20T23:07:35.576 INFO:teuthology.orchestra.run.trial047.stdout:Ceph Dashboard is now available at: 2026-02-20T23:07:35.576 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.576 INFO:teuthology.orchestra.run.trial047.stdout: URL: https://trial047:8443/ 2026-02-20T23:07:35.576 INFO:teuthology.orchestra.run.trial047.stdout: User: admin 2026-02-20T23:07:35.577 INFO:teuthology.orchestra.run.trial047.stdout: Password: 1mb36z3ont 2026-02-20T23:07:35.577 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.577 INFO:teuthology.orchestra.run.trial047.stdout:Saving cluster configuration to /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config directory 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout:Or, if you are only running a single cluster on this host: 2026-02-20T23:07:35.985 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: ceph telemetry on 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout:For more information see: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:35.986 INFO:teuthology.orchestra.run.trial047.stdout:Bootstrap complete. 2026-02-20T23:07:35.992 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout static 2026-02-20T23:07:35.999 INFO:teuthology.orchestra.run.trial047.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-20T23:07:35.999 INFO:teuthology.orchestra.run.trial047.stdout:systemctl: stdout inactive 2026-02-20T23:07:35.999 INFO:teuthology.orchestra.run.trial047.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-20T23:07:36.147 INFO:tasks.cephadm:Fetching config... 2026-02-20T23:07:36.147 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:07:36.147 DEBUG:teuthology.orchestra.run.trial047:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-20T23:07:36.164 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-20T23:07:36.164 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:07:36.164 DEBUG:teuthology.orchestra.run.trial047:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-20T23:07:36.222 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-20T23:07:36.222 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:07:36.222 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/keyring of=/dev/stdout 2026-02-20T23:07:36.288 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-20T23:07:36.288 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:07:36.288 DEBUG:teuthology.orchestra.run.trial047:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-20T23:07:36.344 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-20T23:07:36.344 DEBUG:teuthology.orchestra.run.trial047:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGNRRgVdM2hvE+IqTS6oBg72v8Bl0HbAqKpcpJLXhAhD ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T23:07:36.418 INFO:teuthology.orchestra.run.trial047.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGNRRgVdM2hvE+IqTS6oBg72v8Bl0HbAqKpcpJLXhAhD ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:36.427 DEBUG:teuthology.orchestra.run.trial152:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGNRRgVdM2hvE+IqTS6oBg72v8Bl0HbAqKpcpJLXhAhD ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T23:07:36.463 INFO:teuthology.orchestra.run.trial152.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGNRRgVdM2hvE+IqTS6oBg72v8Bl0HbAqKpcpJLXhAhD ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:07:36.474 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-20T23:07:36.494 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:36 trial047 ceph-mon[36000]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:36.495 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:36 trial047 ceph-mon[36000]: 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-20T23:07:36.495 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:36 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1195651841' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-20T23:07:36.495 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:36 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3357524126' entity='client.admin' 2026-02-20T23:07:36.587 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:07:36.972 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-20T23:07:36.973 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-20T23:07:37.128 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:07:37.539 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial152 2026-02-20T23:07:37.539 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:07:37.539 DEBUG:teuthology.orchestra.run.trial152:> dd of=/etc/ceph/ceph.conf 2026-02-20T23:07:37.557 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:07:37.558 DEBUG:teuthology.orchestra.run.trial152:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:37.614 INFO:tasks.cephadm:Adding host trial152 to orchestrator... 2026-02-20T23:07:37.615 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch host add trial152 2026-02-20T23:07:37.735 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:07:38.021 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:37 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3947641068' entity='client.admin' 2026-02-20T23:07:38.021 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:37 trial047 ceph-mon[36000]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:38.021 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:37 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial152", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd/host:trial047", "name": "osd_memory_target"} : dispatch 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: Updating trial047:/etc/ceph/ceph.conf 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: Updating trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: Deploying cephadm binary to trial152 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: Updating trial047:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial047", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial047", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-20T23:07:39.374 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:39 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:07:39.574 INFO:teuthology.orchestra.run.trial047.stdout:Added host 'trial152' with addr '10.20.193.152' 2026-02-20T23:07:39.721 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-20T23:07:39.838 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:07:40.086 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:07:40.086 INFO:teuthology.orchestra.run.trial047.stdout:[{"addr": "10.20.193.47", "hostname": "trial047", "labels": [], "status": ""}, {"addr": "10.20.193.152", "hostname": "trial152", "labels": [], "status": ""}] 2026-02-20T23:07:40.226 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-20T23:07:40.227 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd crush tunables default 2026-02-20T23:07:40.424 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: Updating trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: Deploying daemon ceph-exporter.trial047 on trial047 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: mgrmap e13: trial047.aeotxy(active, since 6s) 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial047", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial047", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-20T23:07:40.448 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:40 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: Added host trial152 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: Deploying daemon crash.trial047 on trial047 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:41.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:41 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2813873563' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-20T23:07:41.537 INFO:teuthology.orchestra.run.trial047.stderr:adjusted tunables profile to default 2026-02-20T23:07:41.681 INFO:tasks.cephadm:Adding mon.trial047 on trial047 2026-02-20T23:07:41.681 INFO:tasks.cephadm:Adding mon.trial152 on trial152 2026-02-20T23:07:41.681 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch apply mon '2;trial047:10.20.193.47=trial047;trial152:10.20.193.152=trial152' 2026-02-20T23:07:41.797 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:41.798 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:42.073 INFO:teuthology.orchestra.run.trial152.stdout:Scheduled mon update... 2026-02-20T23:07:42.213 DEBUG:teuthology.orchestra.run.trial152:mon.trial152> sudo journalctl -f -n 0 -u ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial152.service 2026-02-20T23:07:42.216 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:42.216 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:42.375 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:42.375 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:42.502 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: Deploying daemon node-exporter.trial047 on trial047 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2813873563' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:42.503 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:42 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:42.670 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:42.670 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:42.671 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:43.810 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:43.810 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:43.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: Deploying daemon alertmanager.trial047 on trial047 2026-02-20T23:07:43.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;trial047:10.20.193.47=trial047;trial152:10.20.193.152=trial152", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:07:43.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: Saving service mon spec with placement trial047:10.20.193.47=trial047;trial152:10.20.193.152=trial152;count:2 2026-02-20T23:07:43.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:43.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/3603653849' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:43.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:43.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:43.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:43.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:43 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:43.928 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:43.928 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:44.221 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:44.221 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:44.221 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:44.561 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: Generating cephadm-signed certificates for grafana_cert/grafana_key 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:44.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:44 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2379502739' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:45.361 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:45.361 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:45.478 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:45.478 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:45.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:45 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T23:07:45.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:45 trial047 ceph-mon[36000]: Deploying daemon grafana.trial047 on trial047 2026-02-20T23:07:45.775 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:45.775 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:45.776 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:46.653 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:46 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2352672943' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:46.920 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:46.920 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:47.037 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:47.038 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:47.338 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:47.338 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:47.339 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:47.516 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2016313172' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:48.479 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:48.479 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:48 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:48.594 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:48.594 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:48.888 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:48.888 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:48.889 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:49.470 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:49 trial047 ceph-mon[36000]: Deploying daemon prometheus.trial047 on trial047 2026-02-20T23:07:49.471 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:49 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/1129233244' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:50.026 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:50.027 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:50.143 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:50.143 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:50.435 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:50.435 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:50.436 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:51.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:50 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:51.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:50 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:51.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:50 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:51.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:50 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T23:07:51.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:50 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/3904254209' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:51.575 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:51.576 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:51.694 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:51.694 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:51.998 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:51.998 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:51.998 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:52.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:52 trial047 ceph-mon[36000]: from='mgr.14164 10.20.193.47:0/2639531786' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T23:07:52.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:52 trial047 ceph-mon[36000]: mgrmap e14: trial047.aeotxy(active, since 18s) 2026-02-20T23:07:52.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:52 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/285464459' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:53.139 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:53.139 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:53.254 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:53.254 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:53.541 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:53.541 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:53.541 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:53.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:53 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/1309608702' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:54.682 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:54.682 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:54.800 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:54.800 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:07:54.837 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: Active manager daemon trial047.aeotxy restarted 2026-02-20T23:07:54.837 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: Activating manager daemon trial047.aeotxy 2026-02-20T23:07:54.837 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: osdmap e5: 0 total, 0 up, 0 in 2026-02-20T23:07:54.837 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: mgrmap e15: trial047.aeotxy(active, starting, since 0.00273012s) 2026-02-20T23:07:54.837 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr metadata", "who": "trial047.aeotxy", "id": "trial047.aeotxy"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: Manager daemon trial047.aeotxy is now available 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial047.aeotxy/trash_purge_schedule"} : dispatch 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:54.838 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:55.126 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:55.127 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:55.127 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:56.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:54] ENGINE Bus STARTING 2026-02-20T23:07:56.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:54] ENGINE Serving on https://10.20.193.47:7150 2026-02-20T23:07:56.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:54] ENGINE Client ('10.20.193.47', 38084) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T23:07:56.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: mgrmap e16: trial047.aeotxy(active, since 1.00469s) 2026-02-20T23:07:56.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:54] ENGINE Serving on http://10.20.193.47:8765 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: [20/Feb/2026:23:07:54] ENGINE Bus STARTED 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2454607362' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:56.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd/host:trial047", "name": "osd_memory_target"} : dispatch 2026-02-20T23:07:56.282 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:56.282 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:56.400 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:07:56.744 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:56.744 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:56.744 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:57.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd/host:trial152", "name": "osd_memory_target"} : dispatch 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial047:/etc/ceph/ceph.conf 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial152:/etc/ceph/ceph.conf 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial152:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:07:57.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: mgrmap e17: trial047.aeotxy(active, since 2s) 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial152:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial047:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Updating trial152:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial152", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-20T23:07:57.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial152", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-20T23:07:57.565 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:07:57.565 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: Deploying daemon ceph-exporter.trial152 on trial152 2026-02-20T23:07:57.565 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:57 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/355154614' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:57.884 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:57.885 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:58.043 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:07:58.324 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:58.324 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:58.324 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:07:59.486 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:07:59.486 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial152", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial152", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-20T23:07:59.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: Deploying daemon crash.trial152 on trial152 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2811240323' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:07:59.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:07:59 trial047 ceph-mon[36000]: Deploying daemon node-exporter.trial152 on trial152 2026-02-20T23:07:59.605 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:07:59.900 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:07:59.900 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:07:59.900 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/1620038330' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial152.asdxdh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:08:00.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.trial152.asdxdh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-20T23:08:00.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:08:00.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:00 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:01.042 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:08:01.043 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:08:01.162 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:08:01.478 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:08:01.478 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":1,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:07:06.930562Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:08:01.479 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 1 2026-02-20T23:08:02.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: Deploying daemon mgr.trial152.asdxdh on trial152 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: Deploying daemon mon.trial152 on trial152 2026-02-20T23:08:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:01 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/3683803876' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:08:02.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:02 trial152 ceph-mon[42847]: mon.trial152@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2026-02-20T23:08:02.722 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-20T23:08:02.723 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:08:02.841 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial152/config 2026-02-20T23:08:07.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:08:07.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: mon.trial047 calling monitor election 2026-02-20T23:08:07.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial152.asdxdh/crt"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: mon.trial152 calling monitor election 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: mon.trial047 is new leader, mons trial047,trial152 in quorum (ranks 0,1) 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: monmap epoch 2 2026-02-20T23:08:07.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: last_changed 2026-02-20T23:08:02.016557+0000 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: created 2026-02-20T23:07:06.930562+0000 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: min_mon_release 20 (tentacle) 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: election_strategy: 1 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: 0: [v2:10.20.193.47:3300/0,v1:10.20.193.47:6789/0] mon.trial047 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: 1: [v2:10.20.193.152:3300/0,v1:10.20.193.152:6789/0] mon.trial152 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: fsmap 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: osdmap e5: 0 total, 0 up, 0 in 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: mgrmap e17: trial047.aeotxy(active, since 13s) 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: overall HEALTH_OK 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: Standby manager daemon trial152.asdxdh started 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T23:08:07.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:07.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial152.asdxdh/key"} : dispatch 2026-02-20T23:08:07.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T23:08:07.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:07.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:07.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:07 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:07.536 INFO:teuthology.orchestra.run.trial152.stdout: 2026-02-20T23:08:07.537 INFO:teuthology.orchestra.run.trial152.stdout:{"epoch":2,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","modified":"2026-02-20T23:08:02.016557Z","created":"2026-02-20T23:07:06.930562Z","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":"trial047","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:3300","nonce":0},{"type":"v1","addr":"10.20.193.47:6789","nonce":0}]},"addr":"10.20.193.47:6789/0","public_addr":"10.20.193.47:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"trial152","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:3300","nonce":0},{"type":"v1","addr":"10.20.193.152:6789","nonce":0}]},"addr":"10.20.193.152:6789/0","public_addr":"10.20.193.152:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2026-02-20T23:08:07.537 INFO:teuthology.orchestra.run.trial152.stderr:dumped monmap epoch 2 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: mon.trial047 calling monitor election 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial152.asdxdh/crt"} : dispatch 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: mon.trial152 calling monitor election 2026-02-20T23:08:07.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: mon.trial047 is new leader, mons trial047,trial152 in quorum (ranks 0,1) 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: monmap epoch 2 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: last_changed 2026-02-20T23:08:02.016557+0000 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: created 2026-02-20T23:07:06.930562+0000 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: min_mon_release 20 (tentacle) 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: election_strategy: 1 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: 0: [v2:10.20.193.47:3300/0,v1:10.20.193.47:6789/0] mon.trial047 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: 1: [v2:10.20.193.152:3300/0,v1:10.20.193.152:6789/0] mon.trial152 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: fsmap 2026-02-20T23:08:07.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: osdmap e5: 0 total, 0 up, 0 in 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: mgrmap e17: trial047.aeotxy(active, since 13s) 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: overall HEALTH_OK 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: Standby manager daemon trial152.asdxdh started 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial152.asdxdh/key"} : dispatch 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.? 10.20.193.152:0/3419375439' entity='mgr.trial152.asdxdh' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:07.564 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:07 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:07.679 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-20T23:08:07.679 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-20T23:08:07.799 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:08.046 INFO:teuthology.orchestra.run.trial047.stdout:# minimal ceph.conf for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:08:08.047 INFO:teuthology.orchestra.run.trial047.stdout:[global] 2026-02-20T23:08:08.047 INFO:teuthology.orchestra.run.trial047.stdout: fsid = d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:08:08.047 INFO:teuthology.orchestra.run.trial047.stdout: mon_host = [v2:10.20.193.47:3300/0,v1:10.20.193.47:6789/0] [v2:10.20.193.152:3300/0,v1:10.20.193.152:6789/0] 2026-02-20T23:08:08.190 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-20T23:08:08.191 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:08:08.191 DEBUG:teuthology.orchestra.run.trial047:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T23:08:08.218 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:08:08.218 DEBUG:teuthology.orchestra.run.trial047:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:08:08.283 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:08:08.284 DEBUG:teuthology.orchestra.run.trial152:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T23:08:08.312 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:08:08.312 DEBUG:teuthology.orchestra.run.trial152:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:08:08.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: mgrmap e18: trial047.aeotxy(active, since 13s), standbys: trial152.asdxdh 2026-02-20T23:08:08.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr metadata", "who": "trial152.asdxdh", "id": "trial152.asdxdh"} : dispatch 2026-02-20T23:08:08.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2717993' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:08:08.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: Updating trial047:/etc/ceph/ceph.conf 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: Updating trial152:/etc/ceph/ceph.conf 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: Updating trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: Updating trial152:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: Reconfiguring mon.trial047 (unknown last config time)... 2026-02-20T23:08:08.315 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:08:08.315 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:08:08.315 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:08.315 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: Reconfiguring daemon mon.trial047 on trial047 2026-02-20T23:08:08.315 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:08.315 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:08 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1966317850' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: mgrmap e18: trial047.aeotxy(active, since 13s), standbys: trial152.asdxdh 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr metadata", "who": "trial152.asdxdh", "id": "trial152.asdxdh"} : dispatch 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/2717993' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: Updating trial047:/etc/ceph/ceph.conf 2026-02-20T23:08:08.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: Updating trial152:/etc/ceph/ceph.conf 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: Updating trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: Updating trial152:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/config/ceph.conf 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: Reconfiguring mon.trial047 (unknown last config time)... 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:08.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: Reconfiguring daemon mon.trial047 on trial047 2026-02-20T23:08:08.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:08.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:08 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1966317850' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:08.376 DEBUG:tasks.cephadm:set 0 configs 2026-02-20T23:08:08.377 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph config dump 2026-02-20T23:08:08.489 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:08.730 INFO:teuthology.orchestra.run.trial047.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global dev auth_debug true 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 * 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global dev debug_asserts_on_shutdown true 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global basic log_to_file true 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global basic log_to_journald false 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global basic log_to_stderr false 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_allow_pool_delete true 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_cluster_log_to_file true 2026-02-20T23:08:08.731 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global dev ms_die_on_bug true 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global dev ms_die_on_old_message true 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced osd_pool_default_erasure_code_profile plugin=isa technique=reed_sol_van k=2 m=1 crush-failure-domain=osd 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-20T23:08:08.732 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced debug_mon 20/20 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced debug_ms 1/1 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced debug_paxos 20/20 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_data_avail_warn 5 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-20T23:08:08.733 INFO:teuthology.orchestra.run.trial047.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced debug_mgr 20/20 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced debug_ms 1/1 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mgr/cephadm/migration_current 7 * 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mgr/dashboard/GRAFANA_API_SSL_VERIFY false * 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:osd dev bdev_debug_aio true 2026-02-20T23:08:08.734 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced debug_ms 1/1 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced debug_osd 20/20 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_misdirected_ops true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_op_order true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_shutdown true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_memory_target_autotune true 2026-02-20T23:08:08.735 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_op_queue debug_random * 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_recover_clone_overlap true 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-20T23:08:08.736 INFO:teuthology.orchestra.run.trial047.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-20T23:08:08.872 INFO:tasks.cephadm:Deploying OSDs... 2026-02-20T23:08:08.873 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:08:08.873 DEBUG:teuthology.orchestra.run.trial047:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:08:08.889 DEBUG:teuthology.misc:devs=['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-20T23:08:08.890 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/nvme3n1 2026-02-20T23:08:08.946 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/nvme3n1 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1325 Links: 1 Device type: 103,6 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:07:37.889206021 +0000 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:50.073131254 +0000 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:50.073131254 +0000 2026-02-20T23:08:08.947 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:49.153167068 +0000 2026-02-20T23:08:08.948 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2026-02-20T23:08:09.011 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:08:09.012 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:08:09.012 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000179545 s, 2.9 MB/s 2026-02-20T23:08:09.013 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2026-02-20T23:08:09.071 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/nvme4n1 2026-02-20T23:08:09.129 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/nvme4n1 2026-02-20T23:08:09.129 INFO:teuthology.orchestra.run.trial047.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:09.129 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1337 Links: 1 Device type: 103,8 2026-02-20T23:08:09.129 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:09.130 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:09.130 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:07:37.932204347 +0000 2026-02-20T23:08:09.130 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:50.488115098 +0000 2026-02-20T23:08:09.130 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:50.488115098 +0000 2026-02-20T23:08:09.130 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:49.283162007 +0000 2026-02-20T23:08:09.131 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2026-02-20T23:08:09.192 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:08:09.192 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:08:09.192 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000231882 s, 2.2 MB/s 2026-02-20T23:08:09.194 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2026-02-20T23:08:09.252 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/nvme5n1 2026-02-20T23:08:09.309 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/nvme5n1 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1349 Links: 1 Device type: 103,a 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:07:37.976202635 +0000 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:50.881991037 +0000 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:50.881991037 +0000 2026-02-20T23:08:09.310 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:49.414156907 +0000 2026-02-20T23:08:09.311 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/nvme5n1 of=/dev/null count=1 2026-02-20T23:08:09.374 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:08:09.374 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:08:09.374 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000216103 s, 2.4 MB/s 2026-02-20T23:08:09.376 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/nvme5n1 2026-02-20T23:08:09.435 DEBUG:teuthology.orchestra.run.trial047:> stat /dev/nvme6n1 2026-02-20T23:08:09.493 INFO:teuthology.orchestra.run.trial047.stdout: File: /dev/nvme6n1 2026-02-20T23:08:09.493 INFO:teuthology.orchestra.run.trial047.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:09.493 INFO:teuthology.orchestra.run.trial047.stdout:Device: 6h/6d Inode: 1361 Links: 1 Device type: 103,c 2026-02-20T23:08:09.493 INFO:teuthology.orchestra.run.trial047.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:09.493 INFO:teuthology.orchestra.run.trial047.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:09.493 INFO:teuthology.orchestra.run.trial047.stdout:Access: 2026-02-20 23:07:38.019200961 +0000 2026-02-20T23:08:09.494 INFO:teuthology.orchestra.run.trial047.stdout:Modify: 2026-02-20 23:06:51.277773937 +0000 2026-02-20T23:08:09.494 INFO:teuthology.orchestra.run.trial047.stdout:Change: 2026-02-20 23:06:51.277773937 +0000 2026-02-20T23:08:09.494 INFO:teuthology.orchestra.run.trial047.stdout: Birth: 2026-02-20 23:06:49.545151808 +0000 2026-02-20T23:08:09.494 DEBUG:teuthology.orchestra.run.trial047:> sudo dd if=/dev/nvme6n1 of=/dev/null count=1 2026-02-20T23:08:09.554 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: Reconfiguring mgr.trial047.aeotxy (unknown last config time)... 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial047.aeotxy", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: Reconfiguring daemon mgr.trial047.aeotxy on trial047 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.555 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: Reconfiguring ceph-exporter.trial047 (monmap changed)... 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial047", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: Reconfiguring daemon ceph-exporter.trial047 on trial047 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1743881874' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial047", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-20T23:08:09.556 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:09.557 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records in 2026-02-20T23:08:09.557 INFO:teuthology.orchestra.run.trial047.stderr:1+0 records out 2026-02-20T23:08:09.557 INFO:teuthology.orchestra.run.trial047.stderr:512 bytes copied, 0.000176298 s, 2.9 MB/s 2026-02-20T23:08:09.558 DEBUG:teuthology.orchestra.run.trial047:> ! mount | grep -v devtmpfs | grep -q /dev/nvme6n1 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: Reconfiguring mgr.trial047.aeotxy (unknown last config time)... 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial047.aeotxy", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: Reconfiguring daemon mgr.trial047.aeotxy on trial047 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: Reconfiguring ceph-exporter.trial047 (monmap changed)... 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial047", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: Reconfiguring daemon ceph-exporter.trial047 on trial047 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1743881874' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:09.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial047", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-20T23:08:09.614 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:09.616 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:08:09.616 DEBUG:teuthology.orchestra.run.trial152:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:08:09.634 DEBUG:teuthology.misc:devs=['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-20T23:08:09.634 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/nvme3n1 2026-02-20T23:08:09.690 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/nvme3n1 2026-02-20T23:08:09.690 INFO:teuthology.orchestra.run.trial152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:09.690 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1325 Links: 1 Device type: 103,6 2026-02-20T23:08:09.690 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:09.690 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:09.691 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:07:55.861888069 +0000 2026-02-20T23:08:09.691 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:53.263984827 +0000 2026-02-20T23:08:09.691 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:53.263984827 +0000 2026-02-20T23:08:09.691 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:52.331987018 +0000 2026-02-20T23:08:09.691 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2026-02-20T23:08:09.753 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:08:09.753 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:08:09.753 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000172525 s, 3.0 MB/s 2026-02-20T23:08:09.754 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2026-02-20T23:08:09.811 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/nvme4n1 2026-02-20T23:08:09.867 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/nvme4n1 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1337 Links: 1 Device type: 103,8 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:07:55.902887938 +0000 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:53.664984241 +0000 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:53.664984241 +0000 2026-02-20T23:08:09.868 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:52.466986492 +0000 2026-02-20T23:08:09.869 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2026-02-20T23:08:09.930 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:08:09.931 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:08:09.931 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000173546 s, 3.0 MB/s 2026-02-20T23:08:09.932 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2026-02-20T23:08:09.989 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/nvme5n1 2026-02-20T23:08:10.045 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/nvme5n1 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1349 Links: 1 Device type: 103,a 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:07:55.945887800 +0000 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:54.073983643 +0000 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:54.073983643 +0000 2026-02-20T23:08:10.046 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:52.603985958 +0000 2026-02-20T23:08:10.047 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/nvme5n1 of=/dev/null count=1 2026-02-20T23:08:10.108 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:08:10.108 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:08:10.108 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000178837 s, 2.9 MB/s 2026-02-20T23:08:10.109 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme5n1 2026-02-20T23:08:10.167 DEBUG:teuthology.orchestra.run.trial152:> stat /dev/nvme6n1 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout: File: /dev/nvme6n1 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout:Device: 6h/6d Inode: 1361 Links: 1 Device type: 103,c 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout:Access: 2026-02-20 23:07:55.987887666 +0000 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout:Modify: 2026-02-20 23:06:54.471983062 +0000 2026-02-20T23:08:10.225 INFO:teuthology.orchestra.run.trial152.stdout:Change: 2026-02-20 23:06:54.471983062 +0000 2026-02-20T23:08:10.226 INFO:teuthology.orchestra.run.trial152.stdout: Birth: 2026-02-20 23:06:52.740985591 +0000 2026-02-20T23:08:10.226 DEBUG:teuthology.orchestra.run.trial152:> sudo dd if=/dev/nvme6n1 of=/dev/null count=1 2026-02-20T23:08:10.288 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records in 2026-02-20T23:08:10.289 INFO:teuthology.orchestra.run.trial152.stderr:1+0 records out 2026-02-20T23:08:10.289 INFO:teuthology.orchestra.run.trial152.stderr:512 bytes copied, 0.000151766 s, 3.4 MB/s 2026-02-20T23:08:10.290 DEBUG:teuthology.orchestra.run.trial152:> ! mount | grep -v devtmpfs | grep -q /dev/nvme6n1 2026-02-20T23:08:10.347 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch apply osd --all-available-devices 2026-02-20T23:08:10.500 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial152/config 2026-02-20T23:08:10.750 INFO:teuthology.orchestra.run.trial152.stdout:Scheduled osd.all-available-devices update... 2026-02-20T23:08:10.750 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: Reconfiguring crash.trial047 (monmap changed)... 2026-02-20T23:08:10.750 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: Reconfiguring daemon crash.trial047 on trial047 2026-02-20T23:08:10.751 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.751 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.751 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: Reconfiguring alertmanager.trial047 deps ['mgr.trial047.aeotxy', 'secure_monitoring_stack:False'] -> ['alertmanager.trial047', 'mgr.trial047.aeotxy', 'mgr.trial152.asdxdh', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial047', 'mgr.trial152.asdxdh'}) 2026-02-20T23:08:10.751 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: Reconfiguring daemon alertmanager.trial047 on trial047 2026-02-20T23:08:10.751 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.751 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:10 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: Reconfiguring crash.trial047 (monmap changed)... 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: Reconfiguring daemon crash.trial047 on trial047 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: Reconfiguring alertmanager.trial047 deps ['mgr.trial047.aeotxy', 'secure_monitoring_stack:False'] -> ['alertmanager.trial047', 'mgr.trial047.aeotxy', 'mgr.trial152.asdxdh', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial047', 'mgr.trial152.asdxdh'}) 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: Reconfiguring daemon alertmanager.trial047 on trial047 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:10 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:10.889 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2026-02-20T23:08:10.890 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:11.007 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:11.253 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:11.394 INFO:teuthology.orchestra.run.trial047.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-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: Reconfiguring grafana.trial047 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial047', 'secure_monitoring_stack:False'] (diff {'prometheus.trial047'}) 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: from='client.14252 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: Marking host: trial047 for OSDSpec preview refresh. 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: Marking host: trial152 for OSDSpec preview refresh. 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: Saving service osd.all-available-devices spec with placement * 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:11.812 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: Reconfiguring daemon grafana.trial047 on trial047 2026-02-20T23:08:11.813 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:11 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2997539724' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: Reconfiguring grafana.trial047 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial047', 'secure_monitoring_stack:False'] (diff {'prometheus.trial047'}) 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: from='client.14252 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: Marking host: trial047 for OSDSpec preview refresh. 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: Marking host: trial152 for OSDSpec preview refresh. 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: Saving service osd.all-available-devices spec with placement * 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:11.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: Reconfiguring daemon grafana.trial047 on trial047 2026-02-20T23:08:11.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:11 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2997539724' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:12.395 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:12.527 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:12.774 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:12.914 INFO:teuthology.orchestra.run.trial047.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-20T23:08:13.281 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:13.281 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:13.281 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:12 trial152 ceph-mon[42847]: Reconfiguring prometheus.trial047 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'ceph-exporter.trial152', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ceph-exporter.trial152'}) 2026-02-20T23:08:13.281 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:12 trial152 ceph-mon[42847]: Reconfiguring daemon prometheus.trial047 on trial047 2026-02-20T23:08:13.281 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:12 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1424647831' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:13.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:13.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:13.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:12 trial047 ceph-mon[36000]: Reconfiguring prometheus.trial047 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'ceph-exporter.trial152', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ceph-exporter.trial152'}) 2026-02-20T23:08:13.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:12 trial047 ceph-mon[36000]: Reconfiguring daemon prometheus.trial047 on trial047 2026-02-20T23:08:13.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:12 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1424647831' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:13.915 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:14.037 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:14.270 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:14.270 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: Reconfiguring ceph-exporter.trial152 (monmap changed)... 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial152", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: Reconfiguring daemon ceph-exporter.trial152 on trial152 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: Reconfiguring crash.trial152 (monmap changed)... 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial152", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-20T23:08:14.271 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: Reconfiguring daemon crash.trial152 on trial152 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: Reconfiguring mgr.trial152.asdxdh (monmap changed)... 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial152.asdxdh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:14.272 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:14 trial047 ceph-mon[36000]: Reconfiguring daemon mgr.trial152.asdxdh on trial152 2026-02-20T23:08:14.367 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.367 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: Reconfiguring ceph-exporter.trial152 (monmap changed)... 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial152", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: Reconfiguring daemon ceph-exporter.trial152 on trial152 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: Reconfiguring crash.trial152 (monmap changed)... 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial152", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:14.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: Reconfiguring daemon crash.trial152 on trial152 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: Reconfiguring mgr.trial152.asdxdh (monmap changed)... 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial152.asdxdh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:14.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:14 trial152 ceph-mon[42847]: Reconfiguring daemon mgr.trial152.asdxdh on trial152 2026-02-20T23:08:14.410 INFO:teuthology.orchestra.run.trial047.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-20T23:08:15.411 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3003709160' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: Reconfiguring mon.trial152 (monmap changed)... 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: Reconfiguring daemon mon.trial152 on trial152 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.413 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial047:9093"} : dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial047:9093"}]: dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial047:3000"} : dispatch 2026-02-20T23:08:15.414 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial047:3000"}]: dispatch 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial047:9095"} : dispatch 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial047:9095"}]: dispatch 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: Certificate for "grafana_cert (trial047)" is still valid for 1094 days. 2026-02-20T23:08:15.415 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3003709160' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: Reconfiguring mon.trial152 (monmap changed)... 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:15.438 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: Reconfiguring daemon mon.trial152 on trial152 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial047:9093"} : dispatch 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial047:9093"}]: dispatch 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-20T23:08:15.439 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial047:3000"} : dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial047:3000"}]: dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial047:9095"} : dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial047:9095"}]: dispatch 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: Certificate for "grafana_cert (trial047)" is still valid for 1094 days. 2026-02-20T23:08:15.440 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:15.533 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:15.784 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:15.948 INFO:teuthology.orchestra.run.trial047.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-20T23:08:16.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:08:16.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:08:16.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3504760451' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:16.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:08:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:08:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:08:16.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3504760451' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:08:16.316 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:08:16.317 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:16.949 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:17.070 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:17.305 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:17.305 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:17 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:08:17.305 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:17 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:08:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:17 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:08:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:17 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:08:17.446 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1771628897,"num_remapped_pgs":0} 2026-02-20T23:08:18.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "02c38e51-1eac-419c-9636-78ce288579d6"} : dispatch 2026-02-20T23:08:18.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/742292050' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "02c38e51-1eac-419c-9636-78ce288579d6"} : dispatch 2026-02-20T23:08:18.368 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "02c38e51-1eac-419c-9636-78ce288579d6"}]': finished 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2018163012' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/4178026513' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "94ef0e25-1f49-4ad7-bd23-c6363f16a4ec"} : dispatch 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/4178026513' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "94ef0e25-1f49-4ad7-bd23-c6363f16a4ec"}]': finished 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: osdmap e7: 2 total, 0 up, 2 in 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/2806240423' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:18.369 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:18 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3271671019' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:18.417 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "02c38e51-1eac-419c-9636-78ce288579d6"} : dispatch 2026-02-20T23:08:18.417 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/742292050' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "02c38e51-1eac-419c-9636-78ce288579d6"} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "02c38e51-1eac-419c-9636-78ce288579d6"}]': finished 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2018163012' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/4178026513' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "94ef0e25-1f49-4ad7-bd23-c6363f16a4ec"} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/4178026513' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "94ef0e25-1f49-4ad7-bd23-c6363f16a4ec"}]': finished 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: osdmap e7: 2 total, 0 up, 2 in 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2806240423' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:18.418 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:18 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3271671019' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:18.448 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:18.570 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:18.814 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:18.955 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1771628898,"num_remapped_pgs":0} 2026-02-20T23:08:19.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9186f2b8-f1d9-4a66-9641-039a6867052f"} : dispatch 2026-02-20T23:08:19.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2775706179' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9186f2b8-f1d9-4a66-9641-039a6867052f"} : dispatch 2026-02-20T23:08:19.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9186f2b8-f1d9-4a66-9641-039a6867052f"}]': finished 2026-02-20T23:08:19.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: osdmap e8: 3 total, 0 up, 3 in 2026-02-20T23:08:19.562 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2318602296' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5"} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2318602296' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5"}]': finished 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: osdmap e9: 4 total, 0 up, 4 in 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1733969042' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/568497613' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:19.563 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:19 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3761663999' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:19.604 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9186f2b8-f1d9-4a66-9641-039a6867052f"} : dispatch 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/2775706179' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9186f2b8-f1d9-4a66-9641-039a6867052f"} : dispatch 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9186f2b8-f1d9-4a66-9641-039a6867052f"}]': finished 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: osdmap e8: 3 total, 0 up, 3 in 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2318602296' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5"} : dispatch 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2318602296' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5"}]': finished 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: osdmap e9: 4 total, 0 up, 4 in 2026-02-20T23:08:19.605 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:19.606 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:19.606 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:19.606 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:19.606 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1733969042' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:19.606 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/568497613' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:19.606 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:19 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3761663999' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:19.956 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:20.076 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:20.317 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:20.459 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1771628899,"num_remapped_pgs":0} 2026-02-20T23:08:20.602 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:20.602 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9e229ee9-f8ab-494c-8cf7-c436ba30d609"} : dispatch 2026-02-20T23:08:20.602 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/2192834593' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9e229ee9-f8ab-494c-8cf7-c436ba30d609"} : dispatch 2026-02-20T23:08:20.602 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e229ee9-f8ab-494c-8cf7-c436ba30d609"}]': finished 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: osdmap e10: 5 total, 0 up, 5 in 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1337204169' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf"} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1337204169' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf"}]': finished 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: osdmap e11: 6 total, 0 up, 6 in 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:20.603 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:20 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:20.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9e229ee9-f8ab-494c-8cf7-c436ba30d609"} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/2192834593' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9e229ee9-f8ab-494c-8cf7-c436ba30d609"} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e229ee9-f8ab-494c-8cf7-c436ba30d609"}]': finished 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: osdmap e10: 5 total, 0 up, 5 in 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1337204169' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf"} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1337204169' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf"}]': finished 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: osdmap e11: 6 total, 0 up, 6 in 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:20.612 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:20.613 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:20 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:21.420 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1650370427' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/415398487' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1342644068' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "50ada747-21cc-47f5-8d47-f0119ed238d8"} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/3256442901' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "50ada747-21cc-47f5-8d47-f0119ed238d8"} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "50ada747-21cc-47f5-8d47-f0119ed238d8"}]': finished 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: osdmap e12: 7 total, 0 up, 7 in 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:21.421 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:21.422 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:21.422 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:21.422 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:21.422 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:21 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:21.460 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:21.556 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1650370427' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:21.556 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/415398487' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1342644068' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "50ada747-21cc-47f5-8d47-f0119ed238d8"} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/3256442901' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "50ada747-21cc-47f5-8d47-f0119ed238d8"} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "50ada747-21cc-47f5-8d47-f0119ed238d8"}]': finished 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: osdmap e12: 7 total, 0 up, 7 in 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:21.557 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:21 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:21.580 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:21.827 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:21.969 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:22.607 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3020892035' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fae8f3e9-e3db-4956-b4c0-7eb25bb40c51"} : dispatch 2026-02-20T23:08:22.607 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3020892035' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fae8f3e9-e3db-4956-b4c0-7eb25bb40c51"}]': finished 2026-02-20T23:08:22.607 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: osdmap e13: 8 total, 0 up, 8 in 2026-02-20T23:08:22.607 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:22.607 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/819298282' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/201111195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:22.608 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:22 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3438186146' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3020892035' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fae8f3e9-e3db-4956-b4c0-7eb25bb40c51"} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3020892035' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fae8f3e9-e3db-4956-b4c0-7eb25bb40c51"}]': finished 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: osdmap e13: 8 total, 0 up, 8 in 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/819298282' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/201111195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:22.676 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:22 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3438186146' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:08:22.971 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:23.091 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:23.314 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:23.391 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:23 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:08:23.391 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:23 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:23.392 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:23 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1213187194' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:23.459 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:23 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:08:23.459 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:23 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:23.459 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:23 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1213187194' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:23.460 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:24.461 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:24.588 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:24.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:24 trial152 ceph-mon[42847]: Deploying daemon osd.0 on trial152 2026-02-20T23:08:24.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:08:24.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:24.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:24 trial152 ceph-mon[42847]: Deploying daemon osd.1 on trial047 2026-02-20T23:08:24.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:24 trial152 ceph-mon[42847]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:24.611 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:24.647 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:24 trial047 ceph-mon[36000]: Deploying daemon osd.0 on trial152 2026-02-20T23:08:24.647 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:08:24.647 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:24.647 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:24 trial047 ceph-mon[36000]: Deploying daemon osd.1 on trial047 2026-02-20T23:08:24.647 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:24 trial047 ceph-mon[36000]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:24.647 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:24.848 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:24.993 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:25.804 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:25 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2271421415' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:25.811 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:25 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2271421415' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:25.994 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:26.111 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:26.356 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:26.408 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:26 trial152 ceph-mon[42847]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:26.408 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:26 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:26.408 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:26 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:26.408 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:26 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:08:26.408 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:26 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:26.408 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:26 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3518956589' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:26.499 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:26.530 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:26 trial047 ceph-mon[36000]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:26.530 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:26 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:26.530 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:26 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:26.530 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:26 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:08:26.530 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:26 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:26.530 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:26 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3518956589' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:27.499 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:27.627 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: Deploying daemon osd.2 on trial152 2026-02-20T23:08:27.627 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:27.627 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:27.627 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:08:27.627 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:27.627 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: Deploying daemon osd.3 on trial047 2026-02-20T23:08:27.628 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:08:27.628 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='osd.0 [v2:10.20.193.152:6800/1035424603,v1:10.20.193.152:6801/1035424603]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:08:27.628 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:27 trial047 ceph-mon[36000]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T23:08:27.718 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: Deploying daemon osd.2 on trial152 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: Deploying daemon osd.3 on trial047 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='osd.0 [v2:10.20.193.152:6800/1035424603,v1:10.20.193.152:6801/1035424603]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:08:27.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:27 trial152 ceph-mon[42847]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T23:08:27.961 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:28.105 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: osdmap e14: 8 total, 0 up, 8 in 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='osd.0 [v2:10.20.193.152:6800/1035424603,v1:10.20.193.152:6801/1035424603]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:28.842 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:28 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2650532638' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: osdmap e14: 8 total, 0 up, 8 in 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='osd.0 [v2:10.20.193.152:6800/1035424603,v1:10.20.193.152:6801/1035424603]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:29.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:28 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2650532638' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:29.106 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:29.225 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:29.477 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:29.623 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":15,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:29.679 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:29.679 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:29.679 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: osdmap e15: 8 total, 0 up, 8 in 2026-02-20T23:08:29.679 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:29.679 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:29.680 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:29 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3335206843' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: osdmap e15: 8 total, 0 up, 8 in 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:29.702 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:29.703 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:29 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3335206843' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:30.625 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:30.739 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: Deploying daemon osd.4 on trial152 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: osd.0 [v2:10.20.193.152:6800/1035424603,v1:10.20.193.152:6801/1035424603] boot 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841] boot 2026-02-20T23:08:30.740 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: osdmap e16: 8 total, 2 up, 8 in 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:08:30.741 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:30.742 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: Deploying daemon osd.5 on trial047 2026-02-20T23:08:30.742 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:30.742 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:08:30.742 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='osd.2 [v2:10.20.193.152:6808/1188892413,v1:10.20.193.152:6809/1188892413]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:08:30.742 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:30 trial047 ceph-mon[36000]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:08:30.782 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:30.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:30.862 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: Deploying daemon osd.4 on trial152 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: osd.0 [v2:10.20.193.152:6800/1035424603,v1:10.20.193.152:6801/1035424603] boot 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: osd.1 [v2:10.20.193.47:6802/166314841,v1:10.20.193.47:6803/166314841] boot 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: osdmap e16: 8 total, 2 up, 8 in 2026-02-20T23:08:30.863 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:08:30.864 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:30.865 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: Deploying daemon osd.5 on trial047 2026-02-20T23:08:30.865 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:08:30.865 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:08:30.865 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='osd.2 [v2:10.20.193.152:6808/1188892413,v1:10.20.193.152:6809/1188892413]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:08:30.865 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:30 trial152 ceph-mon[42847]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:08:31.046 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:31.192 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":17,"num_osds":8,"num_up_osds":2,"osd_up_since":1771628909,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:32.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T23:08:32.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-20T23:08:32.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: osdmap e17: 8 total, 2 up, 8 in 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='osd.2 [v2:10.20.193.152:6808/1188892413,v1:10.20.193.152:6809/1188892413]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:32.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:31 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1885152195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: osdmap e17: 8 total, 2 up, 8 in 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:32.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:32.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='osd.2 [v2:10.20.193.152:6808/1188892413,v1:10.20.193.152:6809/1188892413]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:32.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:32.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:32.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:31 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1885152195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:32.193 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:32.310 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:32.553 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:32.695 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":18,"num_osds":8,"num_up_osds":2,"osd_up_since":1771628909,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: osdmap e18: 8 total, 2 up, 8 in 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:33.019 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: pgmap v25: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:33.020 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:32 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1405515957' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:33.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: osdmap e18: 8 total, 2 up, 8 in 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:33.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: pgmap v25: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:08:33.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:33.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:33.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2026-02-20T23:08:33.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:33.063 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:32 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1405515957' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:33.697 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:33.857 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:33.857 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: Deploying daemon osd.6 on trial152 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135] boot 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: osd.2 [v2:10.20.193.152:6808/1188892413,v1:10.20.193.152:6809/1188892413] boot 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: osdmap e19: 8 total, 4 up, 8 in 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: Deploying daemon osd.7 on trial047 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:08:33.858 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='osd.4 [v2:10.20.193.152:6816/1477762006,v1:10.20.193.152:6817/1477762006]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:08:33.859 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:33 trial047 ceph-mon[36000]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:08:33.895 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:34.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:34.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:34.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:34.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:34.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: Deploying daemon osd.6 on trial152 2026-02-20T23:08:34.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: osd.3 [v2:10.20.193.47:6810/262972135,v1:10.20.193.47:6811/262972135] boot 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: osd.2 [v2:10.20.193.152:6808/1188892413,v1:10.20.193.152:6809/1188892413] boot 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: osdmap e19: 8 total, 4 up, 8 in 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:34.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:34.114 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2026-02-20T23:08:34.114 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:34.114 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: Deploying daemon osd.7 on trial047 2026-02-20T23:08:34.114 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:08:34.114 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='osd.4 [v2:10.20.193.152:6816/1477762006,v1:10.20.193.152:6817/1477762006]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:08:34.114 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:33 trial152 ceph-mon[42847]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:08:34.163 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:34.310 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":20,"num_osds":8,"num_up_osds":4,"osd_up_since":1771628912,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: pgmap v27: 0 pgs: ; 0 B data, 106 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: osdmap e20: 8 total, 4 up, 8 in 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='osd.4 [v2:10.20.193.152:6816/1477762006,v1:10.20.193.152:6817/1477762006]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:08:35.227 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:34 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/74632697' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:35.310 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:35.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: pgmap v27: 0 pgs: ; 0 B data, 106 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:08:35.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-20T23:08:35.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: osdmap e20: 8 total, 4 up, 8 in 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='osd.4 [v2:10.20.193.152:6816/1477762006,v1:10.20.193.152:6817/1477762006]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:08:35.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:34 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/74632697' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:35.431 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:35.676 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:35.815 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":21,"num_osds":8,"num_up_osds":4,"osd_up_since":1771628912,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:36.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:36.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:36.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:08:36.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: osdmap e21: 8 total, 4 up, 8 in 2026-02-20T23:08:36.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:36.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/729608507' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:36.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:35 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:08:36.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:36.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:36.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: osdmap e21: 8 total, 4 up, 8 in 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/729608507' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:36.190 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:35 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:08:36.817 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:36.941 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:36.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:36.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:36.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:36.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:36.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: pgmap v30: 1 pgs: 1 unknown; 0 B data, 106 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:08:36.987 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391] boot 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: osd.4 [v2:10.20.193.152:6816/1477762006,v1:10.20.193.152:6817/1477762006] boot 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: osdmap e22: 8 total, 6 up, 8 in 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='osd.6 [v2:10.20.193.152:6824/1750217294,v1:10.20.193.152:6825/1750217294]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.988 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:36.989 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2026-02-20T23:08:36.989 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2026-02-20T23:08:36.989 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:36 trial047 ceph-mon[36000]: osdmap e23: 8 total, 6 up, 8 in 2026-02-20T23:08:37.013 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:37.013 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:37.013 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: pgmap v30: 1 pgs: 1 unknown; 0 B data, 106 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: osd.5 [v2:10.20.193.47:6818/1217598391,v1:10.20.193.47:6819/1217598391] boot 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: osd.4 [v2:10.20.193.152:6816/1477762006,v1:10.20.193.152:6817/1477762006] boot 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: osdmap e22: 8 total, 6 up, 8 in 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-20T23:08:37.014 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='osd.6 [v2:10.20.193.152:6824/1750217294,v1:10.20.193.152:6825/1750217294]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2026-02-20T23:08:37.015 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:36 trial152 ceph-mon[42847]: osdmap e23: 8 total, 6 up, 8 in 2026-02-20T23:08:37.187 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:37.328 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":23,"num_osds":8,"num_up_osds":6,"osd_up_since":1771628915,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:38.084 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:38.084 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='osd.6 [v2:10.20.193.152:6824/1750217294,v1:10.20.193.152:6825/1750217294]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3314817634' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:38.085 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:37 trial152 ceph-mon[42847]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial047", "root=default"]} : dispatch 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='osd.6 [v2:10.20.193.152:6824/1750217294,v1:10.20.193.152:6825/1750217294]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial152", "root=default"]} : dispatch 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3314817634' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.103 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:38.104 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:37 trial047 ceph-mon[36000]: from='osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial047", "root=default"]}]': finished 2026-02-20T23:08:38.329 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:38.450 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:38.686 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:38.838 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":24,"num_osds":8,"num_up_osds":6,"osd_up_since":1771628915,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: pgmap v33: 1 pgs: 1 unknown; 0 B data, 159 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: osdmap e24: 8 total, 6 up, 8 in 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:38.960 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:38.961 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:38 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1671242560' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:39.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: pgmap v33: 1 pgs: 1 unknown; 0 B data, 159 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:08:39.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial152", "root=default"]}]': finished 2026-02-20T23:08:39.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: osdmap e24: 8 total, 6 up, 8 in 2026-02-20T23:08:39.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:39.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:38 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1671242560' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:39.839 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:08:39.959 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:39.982 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:39.982 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: purged_snaps scrub starts 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: purged_snaps scrub ok 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: osd.6 [v2:10.20.193.152:6824/1750217294,v1:10.20.193.152:6825/1750217294] boot 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008] boot 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: osdmap e25: 8 total, 8 up, 8 in 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:39.983 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: osdmap e26: 8 total, 8 up, 8 in 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.984 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.985 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:39.985 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.985 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:39.985 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:39.985 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:39.985 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:39 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:08:40.195 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:40.335 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":26,"num_osds":8,"num_up_osds":8,"osd_up_since":1771628918,"num_in_osds":8,"osd_in_since":1771628901,"num_remapped_pgs":0} 2026-02-20T23:08:40.336 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: purged_snaps scrub starts 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: purged_snaps scrub ok 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: osd.6 [v2:10.20.193.152:6824/1750217294,v1:10.20.193.152:6825/1750217294] boot 2026-02-20T23:08:40.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: osd.7 [v2:10.20.193.47:6826/4048624008,v1:10.20.193.47:6827/4048624008] boot 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: osdmap e25: 8 total, 8 up, 8 in 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: osdmap e26: 8 total, 8 up, 8 in 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:40.364 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:40.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:40.365 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:39 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:08:40.453 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:40.692 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:40.692 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":27,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","created":"2026-02-20T23:07:08.154260+0000","modified":"2026-02-20T23:08:40.604837+0000","last_up_change":"2026-02-20T23:08:38.899561+0000","last_in_change":"2026-02-20T23:08:21.365961+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":10,"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-20T23:08:33.977594+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":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":"02c38e51-1eac-419c-9636-78ce288579d6","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.152:6800","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6801","nonce":1035424603}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6802","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6803","nonce":1035424603}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6806","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6807","nonce":1035424603}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6804","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6805","nonce":1035424603}]},"public_addr":"10.20.193.152:6801/1035424603","cluster_addr":"10.20.193.152:6803/1035424603","heartbeat_back_addr":"10.20.193.152:6807/1035424603","heartbeat_front_addr":"10.20.193.152:6805/1035424603","state":["exists","up"]},{"osd":1,"uuid":"94ef0e25-1f49-4ad7-bd23-c6363f16a4ec","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.47:6802","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6803","nonce":166314841}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6804","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6805","nonce":166314841}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6808","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6809","nonce":166314841}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6806","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6807","nonce":166314841}]},"public_addr":"10.20.193.47:6803/166314841","cluster_addr":"10.20.193.47:6805/166314841","heartbeat_back_addr":"10.20.193.47:6809/166314841","heartbeat_front_addr":"10.20.193.47:6807/166314841","state":["exists","up"]},{"osd":2,"uuid":"9186f2b8-f1d9-4a66-9641-039a6867052f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6808","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6809","nonce":1188892413}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6810","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6811","nonce":1188892413}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6814","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6815","nonce":1188892413}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6812","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6813","nonce":1188892413}]},"public_addr":"10.20.193.152:6809/1188892413","cluster_addr":"10.20.193.152:6811/1188892413","heartbeat_back_addr":"10.20.193.152:6815/1188892413","heartbeat_front_addr":"10.20.193.152:6813/1188892413","state":["exists","up"]},{"osd":3,"uuid":"44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5","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.47:6810","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6811","nonce":262972135}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6812","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6813","nonce":262972135}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6816","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6817","nonce":262972135}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6814","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6815","nonce":262972135}]},"public_addr":"10.20.193.47:6811/262972135","cluster_addr":"10.20.193.47:6813/262972135","heartbeat_back_addr":"10.20.193.47:6817/262972135","heartbeat_front_addr":"10.20.193.47:6815/262972135","state":["exists","up"]},{"osd":4,"uuid":"9e229ee9-f8ab-494c-8cf7-c436ba30d609","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6816","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6817","nonce":1477762006}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6818","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6819","nonce":1477762006}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6822","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6823","nonce":1477762006}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6820","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6821","nonce":1477762006}]},"public_addr":"10.20.193.152:6817/1477762006","cluster_addr":"10.20.193.152:6819/1477762006","heartbeat_back_addr":"10.20.193.152:6823/1477762006","heartbeat_front_addr":"10.20.193.152:6821/1477762006","state":["exists","up"]},{"osd":5,"uuid":"c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6818","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6819","nonce":1217598391}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6820","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6821","nonce":1217598391}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6824","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6825","nonce":1217598391}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6822","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6823","nonce":1217598391}]},"public_addr":"10.20.193.47:6819/1217598391","cluster_addr":"10.20.193.47:6821/1217598391","heartbeat_back_addr":"10.20.193.47:6825/1217598391","heartbeat_front_addr":"10.20.193.47:6823/1217598391","state":["exists","up"]},{"osd":6,"uuid":"50ada747-21cc-47f5-8d47-f0119ed238d8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6824","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6825","nonce":1750217294}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6826","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6827","nonce":1750217294}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6830","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6831","nonce":1750217294}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6828","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6829","nonce":1750217294}]},"public_addr":"10.20.193.152:6825/1750217294","cluster_addr":"10.20.193.152:6827/1750217294","heartbeat_back_addr":"10.20.193.152:6831/1750217294","heartbeat_front_addr":"10.20.193.152:6829/1750217294","state":["exists","up"]},{"osd":7,"uuid":"fae8f3e9-e3db-4956-b4c0-7eb25bb40c51","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6826","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6827","nonce":4048624008}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6828","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6829","nonce":4048624008}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6832","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6833","nonce":4048624008}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6830","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6831","nonce":4048624008}]},"public_addr":"10.20.193.47:6827/4048624008","cluster_addr":"10.20.193.47:6829/4048624008","heartbeat_back_addr":"10.20.193.47:6833/4048624008","heartbeat_front_addr":"10.20.193.47:6831/4048624008","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:27.817040+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:28.322140+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:30.949056+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:31.442543+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:33.970886+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:34.522322+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-20T23:08:36.997499+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-20T23:08:37.717507+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.47:0/2503738109":"2026-02-21T23:07:53.769913+0000","10.20.193.47:0/135813963":"2026-02-21T23:07:18.780948+0000","10.20.193.47:0/2600878048":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6800/3205368507":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6801/3205368507":"2026-02-21T23:07:18.780948+0000","10.20.193.47:0/2799310625":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/1469160606":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/3593157902":"2026-02-21T23:07:53.769913+0000","10.20.193.47:0/1846609657":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6801/2821629878":"2026-02-21T23:07:53.769913+0000","10.20.193.47:6800/2418776318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/4222425318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:6801/2418776318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/1961491472":"2026-02-21T23:07:53.769913+0000","10.20.193.47:6800/2821629878":"2026-02-21T23:07:53.769913+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2026-02-20T23:08:40.832 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74440]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74440]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74440]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74440]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74444]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74444]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74444]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:08:40.833 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 sudo[74444]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:08:40.834 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-20T23:08:33.977594+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '24', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'nonprimary_shards': '{}', 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 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-20T23:08:40.834 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-20T23:08:40.951 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:41.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59613]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-20T23:08:41.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59613]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:08:41.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59613]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:08:41.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59613]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:08:41.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59617]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59617]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59617]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 sudo[59617]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: Detected new or changed devices on trial152 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: Adjusting osd_memory_target on trial152 to 20467M 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 160 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: Detected new or changed devices on trial047 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: Adjusting osd_memory_target on trial047 to 19699M 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1067784209' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: mgrmap e19: trial047.aeotxy(active, since 46s), standbys: trial152.asdxdh 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: osdmap e27: 8 total, 8 up, 8 in 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/163428132' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:08:41.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:40 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.189 INFO:teuthology.orchestra.run.trial047.stdout:pg_num: 1 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: Detected new or changed devices on trial152 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: Adjusting osd_memory_target on trial152 to 20467M 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 160 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: Detected new or changed devices on trial047 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: Adjusting osd_memory_target on trial047 to 19699M 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1067784209' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: mgrmap e19: trial047.aeotxy(active, since 46s), standbys: trial152.asdxdh 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: osdmap e27: 8 total, 8 up, 8 in 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/163428132' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial047"} : dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "mon metadata", "id": "trial152"} : dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:08:41.189 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:40 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:41.328 INFO:tasks.cephadm:Setting up client nodes... 2026-02-20T23:08:41.328 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2026-02-20T23:08:41.444 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:41.736 INFO:teuthology.orchestra.run.trial047.stdout:[client.0] 2026-02-20T23:08:41.736 INFO:teuthology.orchestra.run.trial047.stdout: key = AQB56ZhpaSHNKxAAVTF0mzg3caMWg/9Yeayx/Q== 2026-02-20T23:08:41.876 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:08:41.876 DEBUG:teuthology.orchestra.run.trial047:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2026-02-20T23:08:41.876 DEBUG:teuthology.orchestra.run.trial047:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2026-02-20T23:08:41.911 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2026-02-20T23:08:42.029 INFO:teuthology.orchestra.run.trial152.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial152/config 2026-02-20T23:08:42.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:41 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/163527564' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T23:08:42.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:41 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3027417944' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-20T23:08:42.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:41 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3027417944' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-20T23:08:42.318 INFO:teuthology.orchestra.run.trial152.stdout:[client.1] 2026-02-20T23:08:42.318 INFO:teuthology.orchestra.run.trial152.stdout: key = AQB66ZhpjpjPEhAAsSJFIk/Gk1AAagXHQqpg+Q== 2026-02-20T23:08:42.318 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:41 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/163527564' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T23:08:42.318 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:41 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3027417944' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-20T23:08:42.318 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:41 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3027417944' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-20T23:08:42.457 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:08:42.458 DEBUG:teuthology.orchestra.run.trial152:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2026-02-20T23:08:42.458 DEBUG:teuthology.orchestra.run.trial152:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2026-02-20T23:08:42.494 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-20T23:08:42.609 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:42.838 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:42.977 INFO:teuthology.orchestra.run.trial047.stdout:[{"version":15,"timestamp":"2026-02-20T23:08:39.850620+0000","name":"","changes":[{"name":"osd/host:trial047/osd_memory_target","new_value":"20656749056"}]}] 2026-02-20T23:08:42.978 INFO:tasks.ceph_manager:config epoch is 15 2026-02-20T23:08:42.978 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-20T23:08:42.978 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-20T23:08:42.978 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-20T23:08:43.095 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:43.117 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:42 trial047 ceph-mon[36000]: pgmap v39: 1 pgs: 1 peering; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:43.117 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:42 trial047 ceph-mon[36000]: 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-20T23:08:43.117 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:42 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/1399690746' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-20T23:08:43.117 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:42 trial047 ceph-mon[36000]: 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-20T23:08:43.117 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:42 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2801584770' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T23:08:43.361 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:43.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:42 trial152 ceph-mon[42847]: pgmap v39: 1 pgs: 1 peering; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:43.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:42 trial152 ceph-mon[42847]: 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-20T23:08:43.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:42 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/1399690746' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-20T23:08:43.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:42 trial152 ceph-mon[42847]: 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-20T23:08:43.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:42 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2801584770' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T23:08:43.500 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":19,"flags":0,"active_gid":14213,"active_name":"trial047.aeotxy","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6800","nonce":3761315392},{"type":"v1","addr":"10.20.193.47:6801","nonce":3761315392}]},"active_addr":"10.20.193.47:6801/3761315392","active_change":"2026-02-20T23:07:53.770005+0000","active_mgr_features":4544132024016699391,"available":true,"standbys":[{"gid":14234,"name":"trial152.asdxdh","mgr_features":4544132024016699391,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","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 agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://10.20.193.47:8443/","prometheus":"http://10.20.193.47: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":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"10.20.193.47:0","nonce":788630338}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.47:0","nonce":2626217649}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.47:0","nonce":1030967750}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.47:0","nonce":743863437}]}]} 2026-02-20T23:08:43.506 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-20T23:08:43.507 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-20T23:08:43.507 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T23:08:43.623 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:43.853 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:43.854 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":27,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","created":"2026-02-20T23:07:08.154260+0000","modified":"2026-02-20T23:08:40.604837+0000","last_up_change":"2026-02-20T23:08:38.899561+0000","last_in_change":"2026-02-20T23:08:21.365961+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":10,"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-20T23:08:33.977594+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":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":"02c38e51-1eac-419c-9636-78ce288579d6","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.152:6800","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6801","nonce":1035424603}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6802","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6803","nonce":1035424603}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6806","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6807","nonce":1035424603}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6804","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6805","nonce":1035424603}]},"public_addr":"10.20.193.152:6801/1035424603","cluster_addr":"10.20.193.152:6803/1035424603","heartbeat_back_addr":"10.20.193.152:6807/1035424603","heartbeat_front_addr":"10.20.193.152:6805/1035424603","state":["exists","up"]},{"osd":1,"uuid":"94ef0e25-1f49-4ad7-bd23-c6363f16a4ec","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.47:6802","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6803","nonce":166314841}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6804","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6805","nonce":166314841}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6808","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6809","nonce":166314841}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6806","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6807","nonce":166314841}]},"public_addr":"10.20.193.47:6803/166314841","cluster_addr":"10.20.193.47:6805/166314841","heartbeat_back_addr":"10.20.193.47:6809/166314841","heartbeat_front_addr":"10.20.193.47:6807/166314841","state":["exists","up"]},{"osd":2,"uuid":"9186f2b8-f1d9-4a66-9641-039a6867052f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6808","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6809","nonce":1188892413}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6810","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6811","nonce":1188892413}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6814","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6815","nonce":1188892413}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6812","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6813","nonce":1188892413}]},"public_addr":"10.20.193.152:6809/1188892413","cluster_addr":"10.20.193.152:6811/1188892413","heartbeat_back_addr":"10.20.193.152:6815/1188892413","heartbeat_front_addr":"10.20.193.152:6813/1188892413","state":["exists","up"]},{"osd":3,"uuid":"44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5","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.47:6810","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6811","nonce":262972135}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6812","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6813","nonce":262972135}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6816","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6817","nonce":262972135}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6814","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6815","nonce":262972135}]},"public_addr":"10.20.193.47:6811/262972135","cluster_addr":"10.20.193.47:6813/262972135","heartbeat_back_addr":"10.20.193.47:6817/262972135","heartbeat_front_addr":"10.20.193.47:6815/262972135","state":["exists","up"]},{"osd":4,"uuid":"9e229ee9-f8ab-494c-8cf7-c436ba30d609","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6816","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6817","nonce":1477762006}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6818","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6819","nonce":1477762006}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6822","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6823","nonce":1477762006}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6820","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6821","nonce":1477762006}]},"public_addr":"10.20.193.152:6817/1477762006","cluster_addr":"10.20.193.152:6819/1477762006","heartbeat_back_addr":"10.20.193.152:6823/1477762006","heartbeat_front_addr":"10.20.193.152:6821/1477762006","state":["exists","up"]},{"osd":5,"uuid":"c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6818","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6819","nonce":1217598391}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6820","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6821","nonce":1217598391}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6824","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6825","nonce":1217598391}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6822","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6823","nonce":1217598391}]},"public_addr":"10.20.193.47:6819/1217598391","cluster_addr":"10.20.193.47:6821/1217598391","heartbeat_back_addr":"10.20.193.47:6825/1217598391","heartbeat_front_addr":"10.20.193.47:6823/1217598391","state":["exists","up"]},{"osd":6,"uuid":"50ada747-21cc-47f5-8d47-f0119ed238d8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6824","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6825","nonce":1750217294}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6826","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6827","nonce":1750217294}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6830","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6831","nonce":1750217294}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6828","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6829","nonce":1750217294}]},"public_addr":"10.20.193.152:6825/1750217294","cluster_addr":"10.20.193.152:6827/1750217294","heartbeat_back_addr":"10.20.193.152:6831/1750217294","heartbeat_front_addr":"10.20.193.152:6829/1750217294","state":["exists","up"]},{"osd":7,"uuid":"fae8f3e9-e3db-4956-b4c0-7eb25bb40c51","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6826","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6827","nonce":4048624008}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6828","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6829","nonce":4048624008}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6832","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6833","nonce":4048624008}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6830","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6831","nonce":4048624008}]},"public_addr":"10.20.193.47:6827/4048624008","cluster_addr":"10.20.193.47:6829/4048624008","heartbeat_back_addr":"10.20.193.47:6833/4048624008","heartbeat_front_addr":"10.20.193.47:6831/4048624008","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:27.817040+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:28.322140+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:30.949056+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:31.442543+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:33.970886+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:34.522322+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-20T23:08:36.997499+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-20T23:08:37.717507+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.47:0/2503738109":"2026-02-21T23:07:53.769913+0000","10.20.193.47:0/135813963":"2026-02-21T23:07:18.780948+0000","10.20.193.47:0/2600878048":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6800/3205368507":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6801/3205368507":"2026-02-21T23:07:18.780948+0000","10.20.193.47:0/2799310625":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/1469160606":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/3593157902":"2026-02-21T23:07:53.769913+0000","10.20.193.47:0/1846609657":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6801/2821629878":"2026-02-21T23:07:53.769913+0000","10.20.193.47:6800/2418776318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/4222425318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:6801/2418776318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/1961491472":"2026-02-21T23:07:53.769913+0000","10.20.193.47:6800/2821629878":"2026-02-21T23:07:53.769913+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2026-02-20T23:08:43.994 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-20T23:08:43.994 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T23:08:44.108 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.159 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:43 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2106741621' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T23:08:44.159 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:43 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3239526229' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:08:44.346 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:44.346 INFO:teuthology.orchestra.run.trial047.stdout:{"epoch":27,"fsid":"d93d7c13-0eb0-11f1-a7cb-d404e6e7d460","created":"2026-02-20T23:07:08.154260+0000","modified":"2026-02-20T23:08:40.604837+0000","last_up_change":"2026-02-20T23:08:38.899561+0000","last_in_change":"2026-02-20T23:08:21.365961+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":10,"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-20T23:08:33.977594+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":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":"02c38e51-1eac-419c-9636-78ce288579d6","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.152:6800","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6801","nonce":1035424603}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6802","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6803","nonce":1035424603}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6806","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6807","nonce":1035424603}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6804","nonce":1035424603},{"type":"v1","addr":"10.20.193.152:6805","nonce":1035424603}]},"public_addr":"10.20.193.152:6801/1035424603","cluster_addr":"10.20.193.152:6803/1035424603","heartbeat_back_addr":"10.20.193.152:6807/1035424603","heartbeat_front_addr":"10.20.193.152:6805/1035424603","state":["exists","up"]},{"osd":1,"uuid":"94ef0e25-1f49-4ad7-bd23-c6363f16a4ec","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.47:6802","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6803","nonce":166314841}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6804","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6805","nonce":166314841}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6808","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6809","nonce":166314841}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6806","nonce":166314841},{"type":"v1","addr":"10.20.193.47:6807","nonce":166314841}]},"public_addr":"10.20.193.47:6803/166314841","cluster_addr":"10.20.193.47:6805/166314841","heartbeat_back_addr":"10.20.193.47:6809/166314841","heartbeat_front_addr":"10.20.193.47:6807/166314841","state":["exists","up"]},{"osd":2,"uuid":"9186f2b8-f1d9-4a66-9641-039a6867052f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6808","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6809","nonce":1188892413}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6810","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6811","nonce":1188892413}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6814","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6815","nonce":1188892413}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6812","nonce":1188892413},{"type":"v1","addr":"10.20.193.152:6813","nonce":1188892413}]},"public_addr":"10.20.193.152:6809/1188892413","cluster_addr":"10.20.193.152:6811/1188892413","heartbeat_back_addr":"10.20.193.152:6815/1188892413","heartbeat_front_addr":"10.20.193.152:6813/1188892413","state":["exists","up"]},{"osd":3,"uuid":"44beaad2-cb0c-47e4-9dfd-c8d9a7b766d5","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.47:6810","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6811","nonce":262972135}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6812","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6813","nonce":262972135}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6816","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6817","nonce":262972135}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6814","nonce":262972135},{"type":"v1","addr":"10.20.193.47:6815","nonce":262972135}]},"public_addr":"10.20.193.47:6811/262972135","cluster_addr":"10.20.193.47:6813/262972135","heartbeat_back_addr":"10.20.193.47:6817/262972135","heartbeat_front_addr":"10.20.193.47:6815/262972135","state":["exists","up"]},{"osd":4,"uuid":"9e229ee9-f8ab-494c-8cf7-c436ba30d609","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6816","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6817","nonce":1477762006}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6818","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6819","nonce":1477762006}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6822","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6823","nonce":1477762006}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6820","nonce":1477762006},{"type":"v1","addr":"10.20.193.152:6821","nonce":1477762006}]},"public_addr":"10.20.193.152:6817/1477762006","cluster_addr":"10.20.193.152:6819/1477762006","heartbeat_back_addr":"10.20.193.152:6823/1477762006","heartbeat_front_addr":"10.20.193.152:6821/1477762006","state":["exists","up"]},{"osd":5,"uuid":"c5ddb2bf-0aa1-4778-8eb2-5c9d0cdb0dcf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6818","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6819","nonce":1217598391}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6820","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6821","nonce":1217598391}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6824","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6825","nonce":1217598391}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6822","nonce":1217598391},{"type":"v1","addr":"10.20.193.47:6823","nonce":1217598391}]},"public_addr":"10.20.193.47:6819/1217598391","cluster_addr":"10.20.193.47:6821/1217598391","heartbeat_back_addr":"10.20.193.47:6825/1217598391","heartbeat_front_addr":"10.20.193.47:6823/1217598391","state":["exists","up"]},{"osd":6,"uuid":"50ada747-21cc-47f5-8d47-f0119ed238d8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6824","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6825","nonce":1750217294}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6826","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6827","nonce":1750217294}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6830","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6831","nonce":1750217294}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.152:6828","nonce":1750217294},{"type":"v1","addr":"10.20.193.152:6829","nonce":1750217294}]},"public_addr":"10.20.193.152:6825/1750217294","cluster_addr":"10.20.193.152:6827/1750217294","heartbeat_back_addr":"10.20.193.152:6831/1750217294","heartbeat_front_addr":"10.20.193.152:6829/1750217294","state":["exists","up"]},{"osd":7,"uuid":"fae8f3e9-e3db-4956-b4c0-7eb25bb40c51","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6826","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6827","nonce":4048624008}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6828","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6829","nonce":4048624008}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6832","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6833","nonce":4048624008}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.47:6830","nonce":4048624008},{"type":"v1","addr":"10.20.193.47:6831","nonce":4048624008}]},"public_addr":"10.20.193.47:6827/4048624008","cluster_addr":"10.20.193.47:6829/4048624008","heartbeat_back_addr":"10.20.193.47:6833/4048624008","heartbeat_front_addr":"10.20.193.47:6831/4048624008","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:27.817040+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:28.322140+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:30.949056+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:31.442543+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:33.970886+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:08:34.522322+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-20T23:08:36.997499+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-20T23:08:37.717507+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.47:0/2503738109":"2026-02-21T23:07:53.769913+0000","10.20.193.47:0/135813963":"2026-02-21T23:07:18.780948+0000","10.20.193.47:0/2600878048":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6800/3205368507":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6801/3205368507":"2026-02-21T23:07:18.780948+0000","10.20.193.47:0/2799310625":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/1469160606":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/3593157902":"2026-02-21T23:07:53.769913+0000","10.20.193.47:0/1846609657":"2026-02-21T23:07:18.780948+0000","10.20.193.47:6801/2821629878":"2026-02-21T23:07:53.769913+0000","10.20.193.47:6800/2418776318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/4222425318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:6801/2418776318":"2026-02-21T23:07:32.196008+0000","10.20.193.47:0/1961491472":"2026-02-21T23:07:53.769913+0000","10.20.193.47:6800/2821629878":"2026-02-21T23:07:53.769913+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2026-02-20T23:08:44.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:43 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2106741621' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T23:08:44.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:43 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3239526229' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:08:44.486 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-20T23:08:44.487 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-20T23:08:44.488 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-20T23:08:44.488 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.3 flush_pg_stats 2026-02-20T23:08:44.488 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.4 flush_pg_stats 2026-02-20T23:08:44.489 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.5 flush_pg_stats 2026-02-20T23:08:44.489 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.6 flush_pg_stats 2026-02-20T23:08:44.490 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph tell osd.7 flush_pg_stats 2026-02-20T23:08:44.613 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.614 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.614 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.616 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.617 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.618 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.619 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.622 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:44.936 INFO:teuthology.orchestra.run.trial047.stdout:107374182402 2026-02-20T23:08:44.936 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-20T23:08:44.947 INFO:teuthology.orchestra.run.trial047.stdout:81604378629 2026-02-20T23:08:44.947 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-20T23:08:44.949 INFO:teuthology.orchestra.run.trial047.stdout:68719476741 2026-02-20T23:08:44.950 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-20T23:08:44.953 INFO:teuthology.orchestra.run.trial047.stdout:94489280515 2026-02-20T23:08:44.954 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-20T23:08:44.956 INFO:teuthology.orchestra.run.trial047.stdout:81604378630 2026-02-20T23:08:44.957 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-20T23:08:44.969 INFO:teuthology.orchestra.run.trial047.stdout:107374182403 2026-02-20T23:08:44.969 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-20T23:08:44.971 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:44 trial047 ceph-mon[36000]: pgmap v40: 1 pgs: 1 peering; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:44.971 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:44 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/145333780' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:08:44.972 INFO:teuthology.orchestra.run.trial047.stdout:94489280516 2026-02-20T23:08:44.973 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-20T23:08:44.976 INFO:teuthology.orchestra.run.trial047.stdout:68719476742 2026-02-20T23:08:44.977 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-20T23:08:45.062 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.070 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.071 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.086 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.089 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.096 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.143 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.146 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:45.328 INFO:teuthology.orchestra.run.trial047.stdout:68719476740 2026-02-20T23:08:45.329 INFO:teuthology.orchestra.run.trial047.stdout:81604378628 2026-02-20T23:08:45.332 INFO:teuthology.orchestra.run.trial047.stdout:107374182401 2026-02-20T23:08:45.341 INFO:teuthology.orchestra.run.trial047.stdout:94489280514 2026-02-20T23:08:45.347 INFO:teuthology.orchestra.run.trial047.stdout:81604378629 2026-02-20T23:08:45.353 INFO:teuthology.orchestra.run.trial047.stdout:107374182402 2026-02-20T23:08:45.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:44 trial152 ceph-mon[42847]: pgmap v40: 1 pgs: 1 peering; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:45.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:44 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/145333780' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:08:45.409 INFO:teuthology.orchestra.run.trial047.stdout:68719476741 2026-02-20T23:08:45.420 INFO:teuthology.orchestra.run.trial047.stdout:94489280515 2026-02-20T23:08:45.481 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182402 got 107374182401 for osd.7 2026-02-20T23:08:45.482 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378629 got 81604378628 for osd.2 2026-02-20T23:08:45.484 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476740 for osd.0 2026-02-20T23:08:45.491 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280515 got 94489280514 for osd.4 2026-02-20T23:08:45.497 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378630 got 81604378629 for osd.3 2026-02-20T23:08:45.502 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182403 got 107374182402 for osd.6 2026-02-20T23:08:45.549 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476742 got 68719476741 for osd.1 2026-02-20T23:08:45.563 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280516 got 94489280515 for osd.5 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/439904251' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3912157704' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/85090398' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/982721147' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3874223605' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3757189060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3265774495' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:08:46.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:45 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2305796390' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:08:46.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/439904251' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:08:46.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3912157704' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:08:46.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/85090398' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-20T23:08:46.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/982721147' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:08:46.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3874223605' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:08:46.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3757189060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-20T23:08:46.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3265774495' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:08:46.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:45 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2305796390' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:08:46.482 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-20T23:08:46.483 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-20T23:08:46.484 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-20T23:08:46.492 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-20T23:08:46.498 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-20T23:08:46.504 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-20T23:08:46.550 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-20T23:08:46.564 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-20T23:08:46.604 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.606 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.649 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.650 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.653 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.656 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.700 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.701 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:46.883 INFO:teuthology.orchestra.run.trial047.stdout:81604378629 2026-02-20T23:08:46.887 INFO:teuthology.orchestra.run.trial047.stdout:107374182403 2026-02-20T23:08:46.915 INFO:teuthology.orchestra.run.trial047.stdout:107374182404 2026-02-20T23:08:46.918 INFO:teuthology.orchestra.run.trial047.stdout:68719476742 2026-02-20T23:08:46.923 INFO:teuthology.orchestra.run.trial047.stdout:94489280515 2026-02-20T23:08:46.924 INFO:teuthology.orchestra.run.trial047.stdout:81604378630 2026-02-20T23:08:46.950 INFO:teuthology.orchestra.run.trial047.stdout:68719476743 2026-02-20T23:08:46.950 INFO:teuthology.orchestra.run.trial047.stdout:94489280516 2026-02-20T23:08:47.026 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:46 trial047 ceph-mon[36000]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 12 KiB/s rd, 656 KiB/s wr, 41 op/s; 112 KiB/s, 0 objects/s recovering 2026-02-20T23:08:47.027 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:46 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1090754385' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:08:47.027 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:46 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/594626897' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-20T23:08:47.028 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378629 got 81604378629 for osd.2 2026-02-20T23:08:47.028 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.033 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182402 got 107374182403 for osd.7 2026-02-20T23:08:47.034 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.063 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476742 for osd.0 2026-02-20T23:08:47.063 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.073 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378630 got 81604378630 for osd.3 2026-02-20T23:08:47.073 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.075 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280515 got 94489280515 for osd.4 2026-02-20T23:08:47.075 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.086 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182403 got 107374182404 for osd.6 2026-02-20T23:08:47.086 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.096 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280516 got 94489280516 for osd.5 2026-02-20T23:08:47.097 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.097 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476742 got 68719476743 for osd.1 2026-02-20T23:08:47.098 DEBUG:teuthology.parallel:result is None 2026-02-20T23:08:47.098 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-20T23:08:47.098 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:08:47.251 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:47.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:46 trial152 ceph-mon[42847]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 12 KiB/s rd, 656 KiB/s wr, 41 op/s; 112 KiB/s, 0 objects/s recovering 2026-02-20T23:08:47.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:46 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1090754385' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:08:47.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:46 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/594626897' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-20T23:08:47.483 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:47.483 INFO:teuthology.orchestra.run.trial047.stderr:dumped all 2026-02-20T23:08:47.623 INFO:teuthology.orchestra.run.trial047.stdout:{"pg_ready":true,"pg_map":{"version":41,"stamp":"2026-02-20T23:08:45.778539+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":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":221424,"kb_used_data":3756,"kb_used_omap":57,"kb_used_meta":215494,"kb_avail":5871771408,"statfs":{"total":6012920659968,"available":6012693921792,"internally_reserved":0,"allocated":3846144,"data_stored":2549616,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":58479,"internal_metadata":220666769},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":-2,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":70,"num_read_kb":63,"num_write":146,"num_write_kb":3394,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"5.170118"},"pg_stats":[{"pgid":"1.0","version":"27'232","reported_seq":171,"reported_epoch":27,"state":"active+clean","last_fresh":"2026-02-20T23:08:40.860513+0000","last_change":"2026-02-20T23:08:40.614311+0000","last_active":"2026-02-20T23:08:40.860513+0000","last_peered":"2026-02-20T23:08:40.860513+0000","last_clean":"2026-02-20T23:08:40.860513+0000","last_became_active":"2026-02-20T23:08:40.611069+0000","last_became_peered":"2026-02-20T23:08:40.611069+0000","last_unstale":"2026-02-20T23:08:40.860513+0000","last_undegraded":"2026-02-20T23:08:40.860513+0000","last_fullsized":"2026-02-20T23:08:40.860513+0000","mapping_epoch":26,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":27,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:08:34.890486+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:08:34.890486+0000","last_clean_scrub_stamp":"2026-02-20T23:08:34.890486+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-22T09:15:32.391102+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2375680,"data_stored":2361472,"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":4}],"osd_stats":[{"osd":7,"up_from":25,"seq":107374182403,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":5,"kb_used_meta":26938,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"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":25,"seq":107374182404,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28360,"kb_used_data":832,"kb_used_omap":5,"kb_used_meta":26938,"kb_avail":733970744,"statfs":{"total":751615082496,"available":751586041856,"internally_reserved":0,"allocated":851968,"data_stored":687682,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":5518,"internal_metadata":27585138},"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":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":22,"seq":94489280516,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27984,"kb_used_data":832,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733971120,"statfs":{"total":751615082496,"available":751586426880,"internally_reserved":0,"allocated":851968,"data_stored":687682,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4875,"internal_metadata":27585781},"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":22,"seq":94489280515,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6824,"internal_metadata":27583832},"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":81604378630,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"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":19,"seq":81604378629,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27984,"kb_used_data":832,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971120,"statfs":{"total":751615082496,"available":751586426880,"internally_reserved":0,"allocated":851968,"data_stored":687682,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8775,"internal_metadata":27581881},"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":68719476743,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,2,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":0,"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":28232,"kb_used_data":252,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733970872,"statfs":{"total":751615082496,"available":751586172928,"internally_reserved":0,"allocated":258048,"data_stored":97314,"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,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":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":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-20T23:08:47.624 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:08:47.738 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:47.976 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:47.976 INFO:teuthology.orchestra.run.trial047.stderr:dumped all 2026-02-20T23:08:48.095 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1014446124' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-20T23:08:48.096 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1649199684' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:08:48.096 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/3378184781' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:08:48.096 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/765835017' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:08:48.096 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1601774541' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:08:48.096 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:47 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2459957941' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:08:48.116 INFO:teuthology.orchestra.run.trial047.stdout:{"pg_ready":true,"pg_map":{"version":42,"stamp":"2026-02-20T23:08:47.778843+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":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":221424,"kb_used_data":3756,"kb_used_omap":57,"kb_used_meta":215494,"kb_avail":5871771408,"statfs":{"total":6012920659968,"available":6012693921792,"internally_reserved":0,"allocated":3846144,"data_stored":2549616,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":58479,"internal_metadata":220666769},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":-2,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":70,"num_read_kb":63,"num_write":146,"num_write_kb":3394,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"7.170422"},"pg_stats":[{"pgid":"1.0","version":"27'232","reported_seq":171,"reported_epoch":27,"state":"active+clean","last_fresh":"2026-02-20T23:08:40.860513+0000","last_change":"2026-02-20T23:08:40.614311+0000","last_active":"2026-02-20T23:08:40.860513+0000","last_peered":"2026-02-20T23:08:40.860513+0000","last_clean":"2026-02-20T23:08:40.860513+0000","last_became_active":"2026-02-20T23:08:40.611069+0000","last_became_peered":"2026-02-20T23:08:40.611069+0000","last_unstale":"2026-02-20T23:08:40.860513+0000","last_undegraded":"2026-02-20T23:08:40.860513+0000","last_fullsized":"2026-02-20T23:08:40.860513+0000","mapping_epoch":26,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":27,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:08:34.890486+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:08:34.890486+0000","last_clean_scrub_stamp":"2026-02-20T23:08:34.890486+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-22T09:15:32.391102+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2375680,"data_stored":2361472,"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":4}],"osd_stats":[{"osd":7,"up_from":25,"seq":107374182403,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":5,"kb_used_meta":26938,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"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":25,"seq":107374182404,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28360,"kb_used_data":832,"kb_used_omap":5,"kb_used_meta":26938,"kb_avail":733970744,"statfs":{"total":751615082496,"available":751586041856,"internally_reserved":0,"allocated":851968,"data_stored":687682,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":5518,"internal_metadata":27585138},"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":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":22,"seq":94489280517,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27984,"kb_used_data":832,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733971120,"statfs":{"total":751615082496,"available":751586426880,"internally_reserved":0,"allocated":851968,"data_stored":687682,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4875,"internal_metadata":27585781},"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":22,"seq":94489280516,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6824,"internal_metadata":27583832},"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":81604378630,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"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":19,"seq":81604378629,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":27984,"kb_used_data":832,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971120,"statfs":{"total":751615082496,"available":751586426880,"internally_reserved":0,"allocated":851968,"data_stored":687682,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8775,"internal_metadata":27581881},"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":68719476743,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27216,"kb_used_data":252,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971888,"statfs":{"total":751615082496,"available":751587213312,"internally_reserved":0,"allocated":258048,"data_stored":97314,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,2,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":0,"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":28232,"kb_used_data":252,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733970872,"statfs":{"total":751615082496,"available":751586172928,"internally_reserved":0,"allocated":258048,"data_stored":97314,"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,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":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":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-20T23:08:48.116 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-20T23:08:48.116 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-20T23:08:48.116 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-20T23:08:48.117 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph health --format=json 2026-02-20T23:08:48.230 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:48.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:47 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1014446124' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-20T23:08:48.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:47 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1649199684' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:08:48.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:47 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/3378184781' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:08:48.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:47 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/765835017' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:08:48.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:47 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1601774541' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:08:48.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:47 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2459957941' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:08:48.484 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:48.484 INFO:teuthology.orchestra.run.trial047.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-20T23:08:48.623 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-20T23:08:48.624 INFO:tasks.cephadm:Setup complete, yielding 2026-02-20T23:08:48.624 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:08:48.639 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:08:48.640 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch status' 2026-02-20T23:08:48.755 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:48.999 INFO:teuthology.orchestra.run.trial047.stdout:Backend: cephadm 2026-02-20T23:08:48.999 INFO:teuthology.orchestra.run.trial047.stdout:Available: Yes 2026-02-20T23:08:48.999 INFO:teuthology.orchestra.run.trial047.stdout:Paused: No 2026-02-20T23:08:49.139 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:48 trial047 ceph-mon[36000]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:08:49.139 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:48 trial047 ceph-mon[36000]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 8.8 KiB/s rd, 473 KiB/s wr, 30 op/s; 80 KiB/s, 0 objects/s recovering 2026-02-20T23:08:49.139 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:48 trial047 ceph-mon[36000]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:08:49.139 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:48 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2777918570' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T23:08:49.161 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch ps' 2026-02-20T23:08:49.276 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:49.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:48 trial152 ceph-mon[42847]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:08:49.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:48 trial152 ceph-mon[42847]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 8.8 KiB/s rd, 473 KiB/s wr, 30 op/s; 80 KiB/s, 0 objects/s recovering 2026-02-20T23:08:49.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:48 trial152 ceph-mon[42847]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:08:49.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:48 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2777918570' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T23:08:49.512 INFO:teuthology.orchestra.run.trial047.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-20T23:08:49.512 INFO:teuthology.orchestra.run.trial047.stdout:alertmanager.trial047 trial047 *:9093,9094 running (39s) 10s ago 66s 27.4M - 0.28.1 91c01b3cec9b 68b0d2af961a 2026-02-20T23:08:49.512 INFO:teuthology.orchestra.run.trial047.stdout:ceph-exporter.trial047 trial047 *:9926 running (69s) 10s ago 69s 8925k - 20.2.0-677-gf7870454 191e36ff62c2 8d5e01cc4e6e 2026-02-20T23:08:49.512 INFO:teuthology.orchestra.run.trial047.stdout:ceph-exporter.trial152 trial152 *:9926 running (51s) 11s ago 51s 9059k - 20.2.0-677-gf7870454 191e36ff62c2 586fcc9e4b0b 2026-02-20T23:08:49.512 INFO:teuthology.orchestra.run.trial047.stdout:crash.trial047 trial047 running (69s) 10s ago 68s 7662k - 20.2.0-677-gf7870454 191e36ff62c2 7877da10f1f5 2026-02-20T23:08:49.512 INFO:teuthology.orchestra.run.trial047.stdout:crash.trial152 trial152 running (50s) 11s ago 50s 7680k - 20.2.0-677-gf7870454 191e36ff62c2 995d03523c8d 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:grafana.trial047 trial047 *:3000 running (37s) 10s ago 62s 118M - 12.3.1 5cdab57891ea 5dbffd02e16a 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:mgr.trial047.aeotxy trial047 *:9283,8765,8443 running (99s) 10s ago 99s 550M - 20.2.0-677-gf7870454 191e36ff62c2 12a9efce09e7 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:mgr.trial152.asdxdh trial152 *:8443,9283,8765 running (48s) 11s ago 48s 494M - 20.2.0-677-gf7870454 191e36ff62c2 a9c792ccd36c 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:mon.trial047 trial047 running (99s) 10s ago 101s 51.2M 2048M 20.2.0-677-gf7870454 191e36ff62c2 622203b63dd4 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:mon.trial152 trial152 running (47s) 11s ago 47s 47.8M 2048M 20.2.0-677-gf7870454 191e36ff62c2 dc0d40fb1522 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:node-exporter.trial047 trial047 *:9100 running (67s) 10s ago 67s 14.9M - 1.9.1 255ec253085f 6ca4f5961110 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:node-exporter.trial152 trial152 *:9100 running (49s) 11s ago 49s 11.5M - 1.9.1 255ec253085f 66841f0907a8 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.0 trial152 running (23s) 11s ago 23s 37.0M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 9feef55cf011 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.1 trial047 running (23s) 10s ago 22s 33.1M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 9a37b3d601f9 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.2 trial152 running (20s) 11s ago 20s 37.7M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 27366d476320 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.3 trial047 running (19s) 10s ago 19s 31.5M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 96d299a48b30 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.4 trial152 running (17s) 11s ago 17s 32.8M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 9104793e2522 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.5 trial047 running (16s) 10s ago 16s 33.3M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 d11aed01e513 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.6 trial152 running (14s) 11s ago 14s 28.5M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 b27ae9c5ee3c 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:osd.7 trial047 running (13s) 10s ago 13s 28.2M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 a823e50414eb 2026-02-20T23:08:49.513 INFO:teuthology.orchestra.run.trial047.stdout:prometheus.trial047 trial047 *:9095 running (36s) 10s ago 59s 45.1M - 3.6.0 4fcecf061b74 a4ff1ef9e1ba 2026-02-20T23:08:49.650 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch ls' 2026-02-20T23:08:49.762 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:50.008 INFO:teuthology.orchestra.run.trial047.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:alertmanager ?:9093,9094 1/1 11s ago 82s count:1 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:ceph-exporter ?:9926 2/2 11s ago 84s * 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:crash 2/2 11s ago 84s * 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:grafana ?:3000 1/1 11s ago 83s count:1 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:mgr 2/2 11s ago 85s count:2 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:mon 2/2 11s ago 67s trial047:10.20.193.47=trial047;trial152:10.20.193.152=trial152;count:2 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:node-exporter ?:9100 2/2 11s ago 83s * 2026-02-20T23:08:50.009 INFO:teuthology.orchestra.run.trial047.stdout:osd.all-available-devices 8 11s ago 39s * 2026-02-20T23:08:50.010 INFO:teuthology.orchestra.run.trial047.stdout:prometheus ?:9095 1/1 11s ago 84s count:1 2026-02-20T23:08:50.150 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch host ls' 2026-02-20T23:08:50.172 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:49 trial047 ceph-mon[36000]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:50.264 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:50.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:49 trial152 ceph-mon[42847]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:50.495 INFO:teuthology.orchestra.run.trial047.stdout:HOST ADDR LABELS STATUS 2026-02-20T23:08:50.496 INFO:teuthology.orchestra.run.trial047.stdout:trial047 10.20.193.47 2026-02-20T23:08:50.496 INFO:teuthology.orchestra.run.trial047.stdout:trial152 10.20.193.152 2026-02-20T23:08:50.496 INFO:teuthology.orchestra.run.trial047.stdout:2 hosts in cluster 2026-02-20T23:08:50.634 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch device ls' 2026-02-20T23:08:50.788 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB5118 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB50FC 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme3n1 ssd Linux_6638df0397660a8f4b03 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme4n1 ssd Linux_bcdb55a4bfea5a21e174 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme5n1 ssd Linux_776edb3157486601cbab 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme6n1 ssd Linux_1507417cb26311f42d0a 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B002CB 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B0024F 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme3n1 ssd Linux_b98e95ebca46742ac984 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme4n1 ssd Linux_c7aceee46128a1e78ff3 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme5n1 ssd Linux_9822ee0a9d6714372db2 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.025 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme6n1 ssd Linux_b7ba16fa9e65a0972c70 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:50 trial047 ceph-mon[36000]: from='client.14572 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:51.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:50 trial047 ceph-mon[36000]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 6.9 KiB/s rd, 370 KiB/s wr, 23 op/s; 63 KiB/s, 0 objects/s recovering 2026-02-20T23:08:51.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:50 trial047 ceph-mon[36000]: from='client.14576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:51.167 INFO:teuthology.run_tasks:Running task vip... 2026-02-20T23:08:51.188 INFO:tasks.vip:Allocating static IPs for each host... 2026-02-20T23:08:51.189 INFO:tasks.vip:peername 10.20.193.47 2026-02-20T23:08:51.242 INFO:tasks.vip:10.20.193.47 in 10.20.192.0/20, pos 302 2026-02-20T23:08:51.245 INFO:tasks.vip:trial047.front.sepia.ceph.com static 192.168.1.47, vnet 192.168.0.0/16 2026-02-20T23:08:51.245 INFO:tasks.vip:VIPs are [IPv4Address('192.168.17.47')] 2026-02-20T23:08:51.246 DEBUG:teuthology.orchestra.run.trial047:> sudo ip route ls 2026-02-20T23:08:51.270 INFO:teuthology.orchestra.run.trial047.stdout:default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.47 metric 102 2026-02-20T23:08:51.270 INFO:teuthology.orchestra.run.trial047.stdout:10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.47 metric 102 2026-02-20T23:08:51.270 INFO:teuthology.orchestra.run.trial047.stdout:169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-20T23:08:51.272 INFO:tasks.vip:Configuring 192.168.1.47 on trial047.front.sepia.ceph.com iface enp1s0f0... 2026-02-20T23:08:51.272 DEBUG:teuthology.orchestra.run.trial047:> sudo ip addr add 192.168.1.47/16 dev enp1s0f0 2026-02-20T23:08:51.336 INFO:tasks.vip:peername 10.20.193.152 2026-02-20T23:08:51.341 INFO:tasks.vip:10.20.193.152 in 10.20.192.0/20, pos 407 2026-02-20T23:08:51.349 INFO:tasks.vip:trial152.front.sepia.ceph.com static 192.168.1.152, vnet 192.168.0.0/16 2026-02-20T23:08:51.349 DEBUG:teuthology.orchestra.run.trial152:> sudo ip route ls 2026-02-20T23:08:51.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:50 trial152 ceph-mon[42847]: from='client.14572 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:51.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:50 trial152 ceph-mon[42847]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 6.9 KiB/s rd, 370 KiB/s wr, 23 op/s; 63 KiB/s, 0 objects/s recovering 2026-02-20T23:08:51.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:50 trial152 ceph-mon[42847]: from='client.14576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:51.376 INFO:teuthology.orchestra.run.trial152.stdout:default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.152 metric 102 2026-02-20T23:08:51.376 INFO:teuthology.orchestra.run.trial152.stdout:10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.152 metric 102 2026-02-20T23:08:51.376 INFO:teuthology.orchestra.run.trial152.stdout:169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-20T23:08:51.378 INFO:tasks.vip:Configuring 192.168.1.152 on trial152.front.sepia.ceph.com iface enp1s0f0... 2026-02-20T23:08:51.378 DEBUG:teuthology.orchestra.run.trial152:> sudo ip addr add 192.168.1.152/16 dev enp1s0f0 2026-02-20T23:08:51.444 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:08:51.459 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:08:51.459 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch device ls --refresh' 2026-02-20T23:08:51.575 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:51.810 INFO:teuthology.orchestra.run.trial047.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB5118 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB50FC 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme3n1 ssd Linux_6638df0397660a8f4b03 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme4n1 ssd Linux_bcdb55a4bfea5a21e174 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme5n1 ssd Linux_776edb3157486601cbab 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme6n1 ssd Linux_1507417cb26311f42d0a 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B002CB 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B0024F 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-20T23:08:51.811 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme3n1 ssd Linux_b98e95ebca46742ac984 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.812 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme4n1 ssd Linux_c7aceee46128a1e78ff3 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.812 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme5n1 ssd Linux_9822ee0a9d6714372db2 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.812 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme6n1 ssd Linux_b7ba16fa9e65a0972c70 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:08:51.949 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-20T23:08:51.962 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:08:51.962 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2026-02-20T23:08:51.985 INFO:teuthology.orchestra.run.trial047.stderr:+ systemctl stop nfs-server 2026-02-20T23:08:51.992 INFO:tasks.vip:Running commands on role host.b host ubuntu@trial152.front.sepia.ceph.com 2026-02-20T23:08:51.992 DEBUG:teuthology.orchestra.run.trial152:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2026-02-20T23:08:52.016 INFO:teuthology.orchestra.run.trial152.stderr:+ systemctl stop nfs-server 2026-02-20T23:08:52.022 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:08:52.041 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:08:52.041 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2026-02-20T23:08:52.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:51 trial047 ceph-mon[36000]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:52.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:51 trial047 ceph-mon[36000]: from='client.14584 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:52.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:51 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:52.160 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:52.252 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:51 trial152 ceph-mon[42847]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:52.253 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:51 trial152 ceph-mon[42847]: from='client.14584 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:52.253 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:51 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:52.418 INFO:teuthology.orchestra.run.trial047.stdout:Scheduled rgw.foorgw update... 2026-02-20T23:08:52.566 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 192.168.17.47/16' 2026-02-20T23:08:52.729 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 5.6 KiB/s rd, 304 KiB/s wr, 19 op/s; 52 KiB/s, 0 objects/s recovering 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='client.14588 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.030 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.031 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:52 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.179 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 5.6 KiB/s rd, 304 KiB/s wr, 19 op/s; 52 KiB/s, 0 objects/s recovering 2026-02-20T23:08:53.179 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='client.14588 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:53.179 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.180 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.180 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.180 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.180 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.180 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:53.180 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:52 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.176 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: Saving service rgw.foorgw spec with placement count:2 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='client.14596 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "192.168.17.47/16", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.177 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:53 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: Saving service rgw.foorgw spec with placement count:2 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='client.14596 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "192.168.17.47/16", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:54.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:53 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 5.2 KiB/s rd, 283 KiB/s wr, 17 op/s; 48 KiB/s, 0 objects/s recovering 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: osdmap e28: 8 total, 8 up, 8 in 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial152.bgewfs", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial152.bgewfs", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.074 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:54 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:55.087 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-20T23:08:55.099 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:08:55.100 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2026-02-20T23:08:55.126 INFO:teuthology.orchestra.run.trial047.stderr:+ dnf install -y python3-boto3 2026-02-20T23:08:55.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 5.2 KiB/s rd, 283 KiB/s wr, 17 op/s; 48 KiB/s, 0 objects/s recovering 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: osdmap e28: 8 total, 8 up, 8 in 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:08:55.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial152.bgewfs", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-20T23:08:55.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial152.bgewfs", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-20T23:08:55.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:55.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:54 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:55.410 INFO:teuthology.orchestra.run.trial047.stdout:Last metadata expiration check: 0:02:38 ago on Fri 20 Feb 2026 11:06:17 PM UTC. 2026-02-20T23:08:55.492 INFO:teuthology.orchestra.run.trial047.stdout:Dependencies resolved. 2026-02-20T23:08:55.493 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: Package Arch Version Repository Size 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout:Installing: 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout:Installing dependencies: 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T23:08:55.494 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout:Transaction Summary 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout:================================================================================ 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout:Install 5 Packages 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout:Total download size: 6.6 M 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout:Installed size: 86 M 2026-02-20T23:08:55.495 INFO:teuthology.orchestra.run.trial047.stdout:Downloading Packages: 2026-02-20T23:08:55.994 INFO:teuthology.orchestra.run.trial047.stdout:(1/5): python3-urllib3-1.26.5-7.el9.noarch.rpm 2.9 MB/s | 218 kB 00:00 2026-02-20T23:08:55.999 INFO:teuthology.orchestra.run.trial047.stdout:(2/5): python3-jmespath-1.0.1-1.el9.noarch.rpm 604 kB/s | 48 kB 00:00 2026-02-20T23:08:56.008 INFO:teuthology.orchestra.run.trial047.stdout:(3/5): python3-boto3-1.28.62-1.el9.noarch.rpm 1.8 MB/s | 164 kB 00:00 2026-02-20T23:08:56.069 INFO:teuthology.orchestra.run.trial047.stdout:(4/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 1.6 MB/s | 113 kB 00:00 2026-02-20T23:08:56.153 INFO:teuthology.orchestra.run.trial047.stdout:(5/5): python3-botocore-1.31.62-2.el9.noarch.rp 39 MB/s | 6.1 MB 00:00 2026-02-20T23:08:56.153 INFO:teuthology.orchestra.run.trial047.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:08:56.154 INFO:teuthology.orchestra.run.trial047.stdout:Total 10 MB/s | 6.6 MB 00:00 2026-02-20T23:08:56.173 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction check 2026-02-20T23:08:56.180 INFO:teuthology.orchestra.run.trial047.stdout:Transaction check succeeded. 2026-02-20T23:08:56.180 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction test 2026-02-20T23:08:56.224 INFO:teuthology.orchestra.run.trial047.stdout:Transaction test succeeded. 2026-02-20T23:08:56.225 INFO:teuthology.orchestra.run.trial047.stdout:Running transaction 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: Deploying daemon rgw.foorgw.trial152.bgewfs on trial152 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: osdmap e29: 8 total, 8 up, 8 in 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: Saving service nfs.foo spec with placement count:1 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: Saving service ingress.nfs.foo spec with placement count:2 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.278 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.279 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.279 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.279 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial047.yoojxp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-20T23:08:56.279 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial047.yoojxp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-20T23:08:56.279 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.279 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:55 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: Deploying daemon rgw.foorgw.trial152.bgewfs on trial152 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: osdmap e29: 8 total, 8 up, 8 in 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: Saving service nfs.foo spec with placement count:1 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: Saving service ingress.nfs.foo spec with placement count:2 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.290 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.291 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.291 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial047.yoojxp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-20T23:08:56.291 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial047.yoojxp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-20T23:08:56.291 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:56.291 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:55 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:56.295 INFO:teuthology.orchestra.run.trial047.stdout: Preparing : 1/1 2026-02-20T23:08:56.318 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 1/5 2026-02-20T23:08:56.918 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 2/5 2026-02-20T23:08:56.937 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2026-02-20T23:08:56.969 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2026-02-20T23:08:56.987 INFO:teuthology.orchestra.run.trial047.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2026-02-20T23:08:57.128 INFO:teuthology.orchestra.run.trial047.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2026-02-20T23:08:57.128 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 1/5 2026-02-20T23:08:57.128 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 2/5 2026-02-20T23:08:57.128 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2026-02-20T23:08:57.128 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2026-02-20T23:08:57.183 INFO:teuthology.orchestra.run.trial047.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2026-02-20T23:08:57.183 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:57.183 INFO:teuthology.orchestra.run.trial047.stdout:Installed: 2026-02-20T23:08:57.183 INFO:teuthology.orchestra.run.trial047.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2026-02-20T23:08:57.183 INFO:teuthology.orchestra.run.trial047.stdout: python3-jmespath-1.0.1-1.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2026-02-20T23:08:57.183 INFO:teuthology.orchestra.run.trial047.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T23:08:57.184 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:08:57.184 INFO:teuthology.orchestra.run.trial047.stdout:Complete! 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: Deploying daemon rgw.foorgw.trial047.yoojxp on trial047 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: pgmap v48: 33 pgs: 5 creating+peering, 15 active+clean, 13 unknown; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: osdmap e30: 8 total, 8 up, 8 in 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/3470602238' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.213 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: Saving service rgw.foorgw spec with placement count:2 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: mgrmap e20: trial047.aeotxy(active, since 62s), standbys: trial152.asdxdh 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.214 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:56 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.216 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2026-02-20T23:08:57.283 INFO:teuthology.orchestra.run.trial047.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2026-02-20T23:08:57.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: Deploying daemon rgw.foorgw.trial047.yoojxp on trial047 2026-02-20T23:08:57.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: pgmap v48: 33 pgs: 5 creating+peering, 15 active+clean, 13 unknown; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:57.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: osdmap e30: 8 total, 8 up, 8 in 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/3470602238' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: Saving service rgw.foorgw spec with placement count:2 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: mgrmap e20: trial047.aeotxy(active, since 62s), standbys: trial152.asdxdh 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:56 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:57.375 INFO:teuthology.orchestra.run.trial047.stderr:Inferring fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:08:57.376 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:08:58.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: osdmap e31: 8 total, 8 up, 8 in 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: osdmap e32: 8 total, 8 up, 8 in 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:57 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-20T23:08:58.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: osdmap e31: 8 total, 8 up, 8 in 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: osdmap e32: 8 total, 8 up, 8 in 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:58.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:57 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-20T23:08:59.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:58 trial047 ceph-mon[36000]: Checking dashboard <-> RGW credentials 2026-02-20T23:08:59.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:58 trial047 ceph-mon[36000]: pgmap v51: 65 pgs: 5 creating+peering, 22 active+clean, 38 unknown; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:59.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:58 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:08:59.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:58 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:08:59.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:58 trial152 ceph-mon[42847]: Checking dashboard <-> RGW credentials 2026-02-20T23:08:59.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:58 trial152 ceph-mon[42847]: pgmap v51: 65 pgs: 5 creating+peering, 22 active+clean, 38 unknown; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-20T23:08:59.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:58 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:08:59.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:58 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:09:00.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:59 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:09:00.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:59 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:09:00.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:08:59 trial047 ceph-mon[36000]: osdmap e33: 8 total, 8 up, 8 in 2026-02-20T23:09:00.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:59 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:09:00.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:59 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-20T23:09:00.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:08:59 trial152 ceph-mon[42847]: osdmap e33: 8 total, 8 up, 8 in 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: pgmap v54: 97 pgs: 11 creating+peering, 38 active+clean, 48 unknown; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 0 B/s wr, 0 op/s 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: osdmap e34: 8 total, 8 up, 8 in 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:00 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: pgmap v54: 97 pgs: 11 creating+peering, 38 active+clean, 48 unknown; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 0 B/s wr, 0 op/s 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: osdmap e34: 8 total, 8 up, 8 in 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:01.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:00 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-20T23:09:02.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:01 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:01 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:01 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:01 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:01 trial152 ceph-mon[42847]: osdmap e35: 8 total, 8 up, 8 in 2026-02-20T23:09:02.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:01 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:01 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:01 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:01 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-20T23:09:02.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:01 trial047 ceph-mon[36000]: osdmap e35: 8 total, 8 up, 8 in 2026-02-20T23:09:03.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: pgmap v57: 129 pgs: 22 creating+peering, 91 active+clean, 16 unknown; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 11 KiB/s rd, 2.5 KiB/s wr, 14 op/s 2026-02-20T23:09:03.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: osdmap e36: 8 total, 8 up, 8 in 2026-02-20T23:09:03.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:02 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: pgmap v57: 129 pgs: 22 creating+peering, 91 active+clean, 16 unknown; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 11 KiB/s rd, 2.5 KiB/s wr, 14 op/s 2026-02-20T23:09:03.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: osdmap e36: 8 total, 8 up, 8 in 2026-02-20T23:09:03.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:03.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:02 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-20T23:09:04.151 INFO:teuthology.run_tasks:Running task python... 2026-02-20T23:09:04.173 INFO:tasks.python:Running python on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:04.174 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-20T23:09:04.174 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest python3 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: osdmap e37: 8 total, 8 up, 8 in 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.295 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:03 trial047 ceph-mon[36000]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-20T23:09:04.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: osdmap e37: 8 total, 8 up, 8 in 2026-02-20T23:09:04.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:04.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:03 trial152 ceph-mon[42847]: from='client.? 10.20.193.152:0/451713762' entity='client.rgw.foorgw.trial152.bgewfs' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:05.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: pgmap v60: 161 pgs: 16 creating+peering, 116 active+clean, 29 unknown; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 11 KiB/s rd, 2.5 KiB/s wr, 13 op/s 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: osdmap e38: 8 total, 8 up, 8 in 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:05.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 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-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 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-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-20T23:09:05.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:05.314 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:04 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:09:05.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: pgmap v60: 161 pgs: 16 creating+peering, 116 active+clean, 29 unknown; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 11 KiB/s rd, 2.5 KiB/s wr, 13 op/s 2026-02-20T23:09:05.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/1441496890' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2515982350' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='client.? ' entity='client.rgw.foorgw.trial152.bgewfs' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: osdmap e38: 8 total, 8 up, 8 in 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2026-02-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 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-20T23:09:05.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 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-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial047.iubdit-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:05.363 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:04 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T23:09:06.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: Creating key for client.nfs.foo.0.0.trial047.iubdit 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: Ensuring 0 is in the ganesha grace table 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: Rados config object exists: conf-nfs.foo 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: Creating key for client.nfs.foo.0.0.trial047.iubdit-rgw 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: Bind address in nfs.foo.0.0.trial047.iubdit's ganesha conf is defaulting to empty 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: Deploying daemon nfs.foo.0.0.trial047.iubdit on trial047 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: osdmap e39: 8 total, 8 up, 8 in 2026-02-20T23:09:06.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:05 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2026-02-20T23:09:06.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: Creating key for client.nfs.foo.0.0.trial047.iubdit 2026-02-20T23:09:06.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: Ensuring 0 is in the ganesha grace table 2026-02-20T23:09:06.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:09:06.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: Rados config object exists: conf-nfs.foo 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: Creating key for client.nfs.foo.0.0.trial047.iubdit-rgw 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: Bind address in nfs.foo.0.0.trial047.iubdit's ganesha conf is defaulting to empty 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: Deploying daemon nfs.foo.0.0.trial047.iubdit on trial047 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: osdmap e39: 8 total, 8 up, 8 in 2026-02-20T23:09:06.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:05 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2026-02-20T23:09:07.262 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:06 trial152 ceph-mon[42847]: Deploying daemon haproxy.nfs.foo.trial047.llitou on trial047 2026-02-20T23:09:07.262 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:06 trial152 ceph-mon[42847]: pgmap v63: 193 pgs: 16 creating+peering, 141 active+clean, 36 unknown; 582 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 131 KiB/s rd, 7.5 KiB/s wr, 271 op/s 2026-02-20T23:09:07.262 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:06 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2026-02-20T23:09:07.262 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:06 trial152 ceph-mon[42847]: osdmap e40: 8 total, 8 up, 8 in 2026-02-20T23:09:07.263 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:06 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:07.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:06 trial047 ceph-mon[36000]: Deploying daemon haproxy.nfs.foo.trial047.llitou on trial047 2026-02-20T23:09:07.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:06 trial047 ceph-mon[36000]: pgmap v63: 193 pgs: 16 creating+peering, 141 active+clean, 36 unknown; 582 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 131 KiB/s rd, 7.5 KiB/s wr, 271 op/s 2026-02-20T23:09:07.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:06 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2026-02-20T23:09:07.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:06 trial047 ceph-mon[36000]: osdmap e40: 8 total, 8 up, 8 in 2026-02-20T23:09:07.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:06 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: Deploying daemon haproxy.nfs.foo.trial152.jacxpe on trial152 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:08.290 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:08 trial152 ceph-mon[42847]: osdmap e41: 8 total, 8 up, 8 in 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: Deploying daemon haproxy.nfs.foo.trial152.jacxpe on trial152 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-20T23:09:08.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:08 trial047 ceph-mon[36000]: osdmap e41: 8 total, 8 up, 8 in 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: pgmap v66: 193 pgs: 12 creating+peering, 161 active+clean, 20 unknown; 586 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 261 KiB/s rd, 14 KiB/s wr, 549 op/s 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: osdmap e42: 8 total, 8 up, 8 in 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:09 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: pgmap v66: 193 pgs: 12 creating+peering, 161 active+clean, 20 unknown; 586 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 261 KiB/s rd, 14 KiB/s wr, 549 op/s 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: osdmap e42: 8 total, 8 up, 8 in 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:09.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:09 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:09:10.264 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:09:10.281 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:10.281 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2026-02-20T23:09:10.305 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:10 trial047 ceph-mon[36000]: 192.168.17.47 is in 192.168.0.0/16 on trial152 interface enp1s0f0 2026-02-20T23:09:10.305 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:10 trial047 ceph-mon[36000]: 192.168.17.47 is in 192.168.0.0/16 on trial047 interface enp1s0f0 2026-02-20T23:09:10.305 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:10 trial047 ceph-mon[36000]: Deploying daemon keepalived.nfs.foo.trial152.tilvvn on trial152 2026-02-20T23:09:10.306 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:10 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2026-02-20T23:09:10.306 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:10 trial047 ceph-mon[36000]: osdmap e43: 8 total, 8 up, 8 in 2026-02-20T23:09:10.306 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:10 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2026-02-20T23:09:10.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:10 trial152 ceph-mon[42847]: 192.168.17.47 is in 192.168.0.0/16 on trial152 interface enp1s0f0 2026-02-20T23:09:10.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:10 trial152 ceph-mon[42847]: 192.168.17.47 is in 192.168.0.0/16 on trial047 interface enp1s0f0 2026-02-20T23:09:10.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:10 trial152 ceph-mon[42847]: Deploying daemon keepalived.nfs.foo.trial152.tilvvn on trial152 2026-02-20T23:09:10.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:10 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2026-02-20T23:09:10.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:10 trial152 ceph-mon[42847]: osdmap e43: 8 total, 8 up, 8 in 2026-02-20T23:09:10.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:10 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2026-02-20T23:09:10.402 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:10.790 INFO:teuthology.orchestra.run.trial047.stdout:{ 2026-02-20T23:09:10.791 INFO:teuthology.orchestra.run.trial047.stdout: "bind": "/foouser", 2026-02-20T23:09:10.791 INFO:teuthology.orchestra.run.trial047.stdout: "cluster": "foo", 2026-02-20T23:09:10.791 INFO:teuthology.orchestra.run.trial047.stdout: "mode": "RW", 2026-02-20T23:09:10.791 INFO:teuthology.orchestra.run.trial047.stdout: "path": "/", 2026-02-20T23:09:10.791 INFO:teuthology.orchestra.run.trial047.stdout: "squash": "none" 2026-02-20T23:09:10.791 INFO:teuthology.orchestra.run.trial047.stdout:} 2026-02-20T23:09:10.936 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-20T23:09:10.950 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2026-02-20T23:09:10.950 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T23:09:11.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:11 trial047 ceph-mon[36000]: pgmap v69: 225 pgs: 22 creating+peering, 171 active+clean, 32 unknown; 587 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 189 KiB/s rd, 12 KiB/s wr, 405 op/s 2026-02-20T23:09:11.061 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:11 trial047 ceph-mon[36000]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2026-02-20T23:09:11.062 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:11 trial047 ceph-mon[36000]: osdmap e44: 8 total, 8 up, 8 in 2026-02-20T23:09:11.093 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:11.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:11 trial152 ceph-mon[42847]: pgmap v69: 225 pgs: 22 creating+peering, 171 active+clean, 32 unknown; 587 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 189 KiB/s rd, 12 KiB/s wr, 405 op/s 2026-02-20T23:09:11.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:11 trial152 ceph-mon[42847]: from='client.? 10.20.193.47:0/2304488749' entity='client.rgw.foorgw.trial047.yoojxp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2026-02-20T23:09:11.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:11 trial152 ceph-mon[42847]: osdmap e44: 8 total, 8 up, 8 in 2026-02-20T23:09:11.339 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:09:11.340 INFO:teuthology.orchestra.run.trial047.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T23:07:27.066746Z", "last_refresh": "2026-02-20T23:08:57.143086Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:07:58.161714Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-20T23:07:25.610196Z", "last_refresh": "2026-02-20T23:08:56.730855Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:07:58.980482Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-20T23:07:25.225467Z", "last_refresh": "2026-02-20T23:08:56.730924Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T23:07:26.350057Z", "last_refresh": "2026-02-20T23:08:57.143122Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:09:11.161164Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "192.168.17.47/16"}, "status": {"created": "2026-02-20T23:08:54.942970Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.47/16"}}, {"events": ["2026-02-20T23:08:00.924809Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T23:07:24.852670Z", "last_refresh": "2026-02-20T23:08:56.731018Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:07.024851Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial047:10.20.193.47=trial047", "trial152:10.20.193.152=trial152"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T23:07:42.070506Z", "last_refresh": "2026-02-20T23:08:56.731060Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:09:05.137599Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2026-02-20T23:08:54.940486Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2026-02-20T23:08:00.080737Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T23:07:26.703751Z", "last_refresh": "2026-02-20T23:08:56.730973Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:10.748865Z 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"}, "status": {"created": "2026-02-20T23:08:10.747068Z", "last_refresh": "2026-02-20T23:08:56.731103Z", "running": 8, "size": 8}}, {"events": ["2026-02-20T23:08:07.027446Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T23:07:25.988355Z", "last_refresh": "2026-02-20T23:08:57.143152Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:08:56.016741Z 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-20T23:08:56.014341Z", "last_refresh": "2026-02-20T23:08:56.731250Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-20T23:09:11.497 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-20T23:09:12.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:12 trial047 ceph-mon[36000]: from='client.14686 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:12.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:12.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:12.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:12.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:12.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:12 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:12.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:12 trial152 ceph-mon[42847]: from='client.14686 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:12.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:12.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:12.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:12.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:12.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:12 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:12.498 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T23:09:12.615 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:12.864 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:09:12.864 INFO:teuthology.orchestra.run.trial047.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T23:07:27.066746Z", "last_refresh": "2026-02-20T23:08:57.143086Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:07:58.161714Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-20T23:07:25.610196Z", "last_refresh": "2026-02-20T23:08:56.730855Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:07:58.980482Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-20T23:07:25.225467Z", "last_refresh": "2026-02-20T23:08:56.730924Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T23:07:26.350057Z", "last_refresh": "2026-02-20T23:08:57.143122Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:09:11.161164Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "192.168.17.47/16"}, "status": {"created": "2026-02-20T23:08:54.942970Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.47/16"}}, {"events": ["2026-02-20T23:08:00.924809Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T23:07:24.852670Z", "last_refresh": "2026-02-20T23:08:56.731018Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:07.024851Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial047:10.20.193.47=trial047", "trial152:10.20.193.152=trial152"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T23:07:42.070506Z", "last_refresh": "2026-02-20T23:08:56.731060Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:09:05.137599Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2026-02-20T23:08:54.940486Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2026-02-20T23:08:00.080737Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T23:07:26.703751Z", "last_refresh": "2026-02-20T23:08:56.730973Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:10.748865Z 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"}, "status": {"created": "2026-02-20T23:08:10.747068Z", "last_refresh": "2026-02-20T23:08:56.731103Z", "running": 8, "size": 8}}, {"events": ["2026-02-20T23:08:07.027446Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T23:07:25.988355Z", "last_refresh": "2026-02-20T23:08:57.143152Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:08:56.016741Z 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-20T23:08:56.014341Z", "last_refresh": "2026-02-20T23:08:56.731250Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-20T23:09:13.040 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-20T23:09:13.121 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: 192.168.17.47 is in 192.168.0.0/16 on trial047 interface enp1s0f0 2026-02-20T23:09:13.121 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: 192.168.17.47 is in 192.168.0.0/16 on trial152 interface enp1s0f0 2026-02-20T23:09:13.121 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: Deploying daemon keepalived.nfs.foo.trial047.cspslo on trial047 2026-02-20T23:09:13.121 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:13.121 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: pgmap v71: 225 pgs: 10 creating+peering, 215 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 71 KiB/s rd, 5.0 KiB/s wr, 145 op/s 2026-02-20T23:09:13.121 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:13.122 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:13 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: 192.168.17.47 is in 192.168.0.0/16 on trial047 interface enp1s0f0 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: 192.168.17.47 is in 192.168.0.0/16 on trial152 interface enp1s0f0 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: Deploying daemon keepalived.nfs.foo.trial047.cspslo on trial047 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: pgmap v71: 225 pgs: 10 creating+peering, 215 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 71 KiB/s rd, 5.0 KiB/s wr, 145 op/s 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:13.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:13 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:14.040 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T23:09:14.159 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:14.244 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:14 trial047 ceph-mon[36000]: from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:14.245 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.245 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.245 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.245 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.245 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:14 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:09:14.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:14 trial152 ceph-mon[42847]: from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:14.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:14.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:14 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:09:14.419 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:09:14.420 INFO:teuthology.orchestra.run.trial047.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T23:07:27.066746Z", "last_refresh": "2026-02-20T23:08:57.143086Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:07:58.161714Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-20T23:07:25.610196Z", "last_refresh": "2026-02-20T23:08:57.143004Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:07:58.980482Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-20T23:07:25.225467Z", "last_refresh": "2026-02-20T23:08:57.143033Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T23:07:26.350057Z", "last_refresh": "2026-02-20T23:08:57.143122Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:09:13.201768Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "192.168.17.47/16"}, "status": {"created": "2026-02-20T23:08:54.942970Z", "last_refresh": "2026-02-20T23:09:14.107444Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "192.168.17.47/16"}}, {"events": ["2026-02-20T23:08:00.924809Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T23:07:24.852670Z", "last_refresh": "2026-02-20T23:08:57.142950Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:07.024851Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial047:10.20.193.47=trial047", "trial152:10.20.193.152=trial152"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T23:07:42.070506Z", "last_refresh": "2026-02-20T23:08:57.142867Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:09:05.137599Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2026-02-20T23:08:54.940486Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2026-02-20T23:08:00.080737Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T23:07:26.703751Z", "last_refresh": "2026-02-20T23:08:57.143060Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:10.748865Z 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"}, "status": {"created": "2026-02-20T23:08:10.747068Z", "last_refresh": "2026-02-20T23:08:57.143180Z", "running": 8, "size": 8}}, {"events": ["2026-02-20T23:08:07.027446Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T23:07:25.988355Z", "last_refresh": "2026-02-20T23:08:57.143152Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:08:56.016741Z 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-20T23:08:56.014341Z", "last_refresh": "2026-02-20T23:08:57.143288Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-20T23:09:14.565 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-20T23:09:15.052 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: pgmap v72: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 58 KiB/s rd, 4.0 KiB/s wr, 120 op/s 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:15.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:15 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: pgmap v72: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 58 KiB/s rd, 4.0 KiB/s wr, 120 op/s 2026-02-20T23:09:15.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:15.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:15 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:15.566 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T23:09:15.688 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:15.949 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:09:15.949 INFO:teuthology.orchestra.run.trial047.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T23:07:27.066746Z", "last_refresh": "2026-02-20T23:09:14.614986Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:07:58.161714Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-20T23:07:25.610196Z", "last_refresh": "2026-02-20T23:09:14.107065Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:07:58.980482Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-20T23:07:25.225467Z", "last_refresh": "2026-02-20T23:09:14.107142Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T23:07:26.350057Z", "last_refresh": "2026-02-20T23:09:14.615026Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:09:13.201768Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "192.168.17.47/16"}, "status": {"created": "2026-02-20T23:08:54.942970Z", "last_refresh": "2026-02-20T23:09:14.107444Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "192.168.17.47/16"}}, {"events": ["2026-02-20T23:08:00.924809Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T23:07:24.852670Z", "last_refresh": "2026-02-20T23:09:14.107212Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:07.024851Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial047:10.20.193.47=trial047", "trial152:10.20.193.152=trial152"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T23:07:42.070506Z", "last_refresh": "2026-02-20T23:09:14.107245Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:09:14.629406Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2026-02-20T23:08:54.940486Z", "last_refresh": "2026-02-20T23:09:14.615221Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:08:00.080737Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T23:07:26.703751Z", "last_refresh": "2026-02-20T23:09:14.107179Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:10.748865Z 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"}, "status": {"created": "2026-02-20T23:08:10.747068Z", "last_refresh": "2026-02-20T23:09:14.107275Z", "running": 8, "size": 8}}, {"events": ["2026-02-20T23:08:07.027446Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T23:07:25.988355Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2026-02-20T23:08:56.016741Z 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-20T23:08:56.014341Z", "last_refresh": "2026-02-20T23:09:14.107396Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-20T23:09:16.092 INFO:tasks.cephadm:nfs.foo has 1/1 2026-02-20T23:09:16.092 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-20T23:09:16.111 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2026-02-20T23:09:16.111 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T23:09:16.229 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:16.254 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:16.254 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: Reconfiguring prometheus.trial047 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'ceph-exporter.trial152', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'ceph-exporter.trial152', 'ingress', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ingress'}) 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: Reconfiguring daemon prometheus.trial047 on trial047 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:16.255 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:16 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:16.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:16.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: Reconfiguring prometheus.trial047 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'ceph-exporter.trial152', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial047', 'ceph-exporter.trial152', 'ingress', 'mgr.trial047.aeotxy', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ingress'}) 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: Reconfiguring daemon prometheus.trial047 on trial047 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:16.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:16 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:16.500 INFO:teuthology.orchestra.run.trial047.stdout: 2026-02-20T23:09:16.500 INFO:teuthology.orchestra.run.trial047.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T23:07:27.066746Z", "last_refresh": "2026-02-20T23:09:14.614986Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:07:58.161714Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-20T23:07:25.610196Z", "last_refresh": "2026-02-20T23:09:14.107065Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:07:58.980482Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-20T23:07:25.225467Z", "last_refresh": "2026-02-20T23:09:14.107142Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T23:07:26.350057Z", "last_refresh": "2026-02-20T23:09:14.615026Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:09:13.201768Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "192.168.17.47/16"}, "status": {"created": "2026-02-20T23:08:54.942970Z", "last_refresh": "2026-02-20T23:09:14.107444Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "192.168.17.47/16"}}, {"events": ["2026-02-20T23:08:00.924809Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T23:07:24.852670Z", "last_refresh": "2026-02-20T23:09:14.107212Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:07.024851Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial047:10.20.193.47=trial047", "trial152:10.20.193.152=trial152"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T23:07:42.070506Z", "last_refresh": "2026-02-20T23:09:14.107245Z", "running": 2, "size": 2}}, {"events": ["2026-02-20T23:09:14.629406Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2026-02-20T23:08:54.940486Z", "last_refresh": "2026-02-20T23:09:14.615221Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2026-02-20T23:08:00.080737Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T23:07:26.703751Z", "last_refresh": "2026-02-20T23:09:14.107179Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-20T23:08:10.748865Z 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"}, "status": {"created": "2026-02-20T23:08:10.747068Z", "last_refresh": "2026-02-20T23:09:14.107275Z", "running": 8, "size": 8}}, {"events": ["2026-02-20T23:08:07.027446Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T23:07:25.988355Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2026-02-20T23:08:56.016741Z 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-20T23:08:56.014341Z", "last_refresh": "2026-02-20T23:09:14.107396Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-20T23:09:16.644 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2026-02-20T23:09:16.644 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-20T23:09:16.662 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:16.663 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2026-02-20T23:09:16.689 INFO:teuthology.orchestra.run.trial047.stderr:+ mkdir /mnt/foo 2026-02-20T23:09:16.691 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2026-02-20T23:09:16.756 INFO:teuthology.orchestra.run.trial047.stderr:+ sleep 5 2026-02-20T23:09:17.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: pgmap v73: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 58 KiB/s rd, 3.7 KiB/s wr, 116 op/s 2026-02-20T23:09:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:17.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:17.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:17.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:17 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:17.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: pgmap v73: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 58 KiB/s rd, 3.7 KiB/s wr, 116 op/s 2026-02-20T23:09:17.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:17.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:17 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.313 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:18 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T23:09:18.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:09:18.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:18.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:09:18.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:18.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:18.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:18 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T23:09:19.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:19 trial047 ceph-mon[36000]: Checking dashboard <-> RGW credentials 2026-02-20T23:09:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:19 trial047 ceph-mon[36000]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T23:09:19.312 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:19 trial047 ceph-mon[36000]: pgmap v74: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 837 B/s wr, 47 op/s 2026-02-20T23:09:19.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:19 trial152 ceph-mon[42847]: Checking dashboard <-> RGW credentials 2026-02-20T23:09:19.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:19 trial152 ceph-mon[42847]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T23:09:19.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:19 trial152 ceph-mon[42847]: pgmap v74: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 837 B/s wr, 47 op/s 2026-02-20T23:09:21.311 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:21 trial047 ceph-mon[36000]: pgmap v75: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 23 KiB/s rd, 716 B/s wr, 43 op/s 2026-02-20T23:09:21.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:21 trial152 ceph-mon[42847]: pgmap v75: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 23 KiB/s rd, 716 B/s wr, 43 op/s 2026-02-20T23:09:21.759 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 192.168.17.47:/foouser /mnt/foo' 2026-02-20T23:09:21.824 INFO:teuthology.orchestra.run.trial047.stderr:+ mount -t nfs 192.168.17.47:/foouser /mnt/foo 2026-02-20T23:09:22.034 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2026-02-20T23:09:22.099 INFO:teuthology.orchestra.run.trial047.stderr:+ test -d /mnt/foo/foobucket 2026-02-20T23:09:22.104 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2026-02-20T23:09:22.167 INFO:teuthology.orchestra.run.trial047.stderr:+ find /mnt/foo -ls 2026-02-20T23:09:22.170 INFO:teuthology.orchestra.run.trial047.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Feb 20 23:09 /mnt/foo 2026-02-20T23:09:22.171 INFO:teuthology.orchestra.run.trial047.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Feb 20 23:09 /mnt/foo/foobucket 2026-02-20T23:09:22.171 INFO:teuthology.orchestra.run.trial047.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Feb 20 23:09 /mnt/foo/foobucket/myobject 2026-02-20T23:09:22.172 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2026-02-20T23:09:22.235 INFO:teuthology.orchestra.run.trial047.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2026-02-20T23:09:22.237 INFO:teuthology.orchestra.run.trial047.stdout:thebody 2026-02-20T23:09:22.238 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2026-02-20T23:09:22.301 INFO:teuthology.orchestra.run.trial047.stderr:+ echo test 2026-02-20T23:09:22.308 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2026-02-20T23:09:22.371 INFO:teuthology.orchestra.run.trial047.stderr:+ sync 2026-02-20T23:09:22.578 INFO:teuthology.run_tasks:Running task python... 2026-02-20T23:09:22.600 INFO:tasks.python:Running python on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:22.600 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-20T23:09:22.600 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest python3 2026-02-20T23:09:22.805 INFO:teuthology.orchestra.run.trial047.stdout:b'test\n' 2026-02-20T23:09:22.826 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-20T23:09:22.837 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:22.837 DEBUG:teuthology.orchestra.run.trial047:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2026-02-20T23:09:22.861 INFO:teuthology.orchestra.run.trial047.stderr:+ umount /mnt/foo 2026-02-20T23:09:22.881 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:09:22.902 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:22.902 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph nfs export rm foo /foouser' 2026-02-20T23:09:23.036 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:23.110 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:23 trial047 ceph-mon[36000]: pgmap v76: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 620 B/s wr, 47 op/s 2026-02-20T23:09:23.110 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:23 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:23.361 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:23 trial152 ceph-mon[42847]: pgmap v76: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 620 B/s wr, 47 op/s 2026-02-20T23:09:23.362 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:23 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:23.434 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph nfs cluster rm foo' 2026-02-20T23:09:23.551 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:23.957 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:09:23.975 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:09:23.975 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2026-02-20T23:09:24.090 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:24.189 INFO:teuthology.orchestra.run.trial047.stdout:167 167 2026-02-20T23:09:24.322 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch status' 2026-02-20T23:09:24.441 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:24.700 INFO:teuthology.orchestra.run.trial047.stdout:Backend: cephadm 2026-02-20T23:09:24.700 INFO:teuthology.orchestra.run.trial047.stdout:Available: Yes 2026-02-20T23:09:24.700 INFO:teuthology.orchestra.run.trial047.stdout:Paused: No 2026-02-20T23:09:24.842 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch ps' 2026-02-20T23:09:24.961 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: pgmap v77: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 22 KiB/s rd, 767 B/s wr, 37 op/s 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: Remove service ingress.nfs.foo 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: Remove service nfs.foo 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.053 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:24 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: pgmap v77: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 22 KiB/s rd, 767 B/s wr, 37 op/s 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: Remove service ingress.nfs.foo 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: Remove service nfs.foo 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:24 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.224 INFO:teuthology.orchestra.run.trial047.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-20T23:09:25.224 INFO:teuthology.orchestra.run.trial047.stdout:alertmanager.trial047 trial047 *:9093,9094 running (74s) 0s ago 101s 27.4M - 0.28.1 91c01b3cec9b 68b0d2af961a 2026-02-20T23:09:25.224 INFO:teuthology.orchestra.run.trial047.stdout:ceph-exporter.trial047 trial047 *:9926 running (105s) 0s ago 105s 9437k - 20.2.0-677-gf7870454 191e36ff62c2 8d5e01cc4e6e 2026-02-20T23:09:25.224 INFO:teuthology.orchestra.run.trial047.stdout:ceph-exporter.trial152 trial152 *:9926 running (87s) 0s ago 87s 9697k - 20.2.0-677-gf7870454 191e36ff62c2 586fcc9e4b0b 2026-02-20T23:09:25.224 INFO:teuthology.orchestra.run.trial047.stdout:crash.trial047 trial047 running (104s) 0s ago 104s 7662k - 20.2.0-677-gf7870454 191e36ff62c2 7877da10f1f5 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:crash.trial152 trial152 running (86s) 0s ago 86s 7680k - 20.2.0-677-gf7870454 191e36ff62c2 995d03523c8d 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:grafana.trial047 trial047 *:3000 running (73s) 0s ago 97s 118M - 12.3.1 5cdab57891ea 5dbffd02e16a 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:haproxy.nfs.foo.trial047.llitou trial047 *:2049,9049 running (18s) 0s ago 18s 7868k - 2.3.17-d1c9119 e85424b0d443 9177c20f9172 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:haproxy.nfs.foo.trial152.jacxpe trial152 *:2049,9049 running (16s) 0s ago 16s 7948k - 2.3.17-d1c9119 e85424b0d443 c52b660ed500 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:keepalived.nfs.foo.trial047.cspslo trial047 running (12s) 0s ago 12s 2407k - 2.2.4 4a3a1ff181d9 8b1915422422 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:keepalived.nfs.foo.trial152.tilvvn trial152 running (14s) 0s ago 14s 2433k - 2.2.4 4a3a1ff181d9 4437c2988667 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:mgr.trial047.aeotxy trial047 *:9283,8765,8443 running (2m) 0s ago 2m 573M - 20.2.0-677-gf7870454 191e36ff62c2 12a9efce09e7 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:mgr.trial152.asdxdh trial152 *:8443,9283,8765 running (84s) 0s ago 84s 496M - 20.2.0-677-gf7870454 191e36ff62c2 a9c792ccd36c 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:mon.trial047 trial047 running (2m) 0s ago 2m 59.8M 2048M 20.2.0-677-gf7870454 191e36ff62c2 622203b63dd4 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:mon.trial152 trial152 running (83s) 0s ago 83s 55.7M 2048M 20.2.0-677-gf7870454 191e36ff62c2 dc0d40fb1522 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:nfs.foo.0.0.trial047.iubdit trial047 *:12049 running (20s) 0s ago 20s 126M - 5.9 191e36ff62c2 464f7524c81b 2026-02-20T23:09:25.225 INFO:teuthology.orchestra.run.trial047.stdout:node-exporter.trial047 trial047 *:9100 running (103s) 0s ago 103s 16.2M - 1.9.1 255ec253085f 6ca4f5961110 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:node-exporter.trial152 trial152 *:9100 running (85s) 0s ago 85s 13.0M - 1.9.1 255ec253085f 66841f0907a8 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.0 trial152 running (59s) 0s ago 59s 51.0M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 9feef55cf011 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.1 trial047 running (58s) 0s ago 58s 57.3M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 9a37b3d601f9 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.2 trial152 running (56s) 0s ago 56s 55.8M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 27366d476320 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.3 trial047 running (55s) 0s ago 55s 53.7M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 96d299a48b30 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.4 trial152 running (53s) 0s ago 52s 55.1M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 9104793e2522 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.5 trial047 running (52s) 0s ago 52s 55.2M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 d11aed01e513 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.6 trial152 running (49s) 0s ago 49s 57.9M 19.9G 20.2.0-677-gf7870454 191e36ff62c2 b27ae9c5ee3c 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:osd.7 trial047 running (49s) 0s ago 49s 50.8M 19.2G 20.2.0-677-gf7870454 191e36ff62c2 a823e50414eb 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:prometheus.trial047 trial047 *:9095 running (9s) 0s ago 95s 43.0M - 3.6.0 4fcecf061b74 6d520d020e64 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:rgw.foorgw.trial047.yoojxp trial047 *:8800 running (29s) 0s ago 29s 104M - 20.2.0-677-gf7870454 191e36ff62c2 d0d97a322be0 2026-02-20T23:09:25.226 INFO:teuthology.orchestra.run.trial047.stdout:rgw.foorgw.trial152.bgewfs trial152 *:8800 running (30s) 0s ago 30s 104M - 20.2.0-677-gf7870454 191e36ff62c2 3f0999096584 2026-02-20T23:09:25.367 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch ls' 2026-02-20T23:09:25.488 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:25.734 INFO:teuthology.orchestra.run.trial047.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:alertmanager ?:9093,9094 1/1 0s ago 118s count:1 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:ceph-exporter ?:9926 2/2 1s ago 2m * 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:crash 2/2 1s ago 2m * 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:grafana ?:3000 1/1 0s ago 119s count:1 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:ingress.nfs.foo 192.168.17.47:2049,9049 4/4 30s count:2 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:mgr 2/2 1s ago 2m count:2 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:mon 2/2 1s ago 103s trial047:10.20.193.47=trial047;trial152:10.20.193.152=trial152;count:2 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:nfs.foo ?:12049 1/1 30s count:1 2026-02-20T23:09:25.735 INFO:teuthology.orchestra.run.trial047.stdout:node-exporter ?:9100 2/2 1s ago 119s * 2026-02-20T23:09:25.736 INFO:teuthology.orchestra.run.trial047.stdout:osd.all-available-devices 8 1s ago 74s * 2026-02-20T23:09:25.736 INFO:teuthology.orchestra.run.trial047.stdout:prometheus ?:9095 1/1 0s ago 119s count:1 2026-02-20T23:09:25.736 INFO:teuthology.orchestra.run.trial047.stdout:rgw.foorgw ?:8800 2/2 1s ago 29s count:2 2026-02-20T23:09:25.869 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:25.869 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.869 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.869 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:25.869 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:09:25.870 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:25.870 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:25.870 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:25.870 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:25 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:25.892 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch host ls' 2026-02-20T23:09:26.047 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:26.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:26.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:26.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:26.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:09:26.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:09:26.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' 2026-02-20T23:09:26.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:09:26.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:26.113 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:25 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:26.298 INFO:teuthology.orchestra.run.trial047.stdout:HOST ADDR LABELS STATUS 2026-02-20T23:09:26.298 INFO:teuthology.orchestra.run.trial047.stdout:trial047 10.20.193.47 2026-02-20T23:09:26.298 INFO:teuthology.orchestra.run.trial047.stdout:trial152 10.20.193.152 2026-02-20T23:09:26.299 INFO:teuthology.orchestra.run.trial047.stdout:2 hosts in cluster 2026-02-20T23:09:26.438 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch device ls' 2026-02-20T23:09:26.553 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:26.794 INFO:teuthology.orchestra.run.trial047.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-20T23:09:26.794 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB5118 1788G No 32s ago Has a FileSystem, LVM detected 2026-02-20T23:09:26.794 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB50FC 1788G No 32s ago Has a FileSystem, LVM detected 2026-02-20T23:09:26.794 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme3n1 ssd Linux_6638df0397660a8f4b03 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.794 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme4n1 ssd Linux_bcdb55a4bfea5a21e174 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme5n1 ssd Linux_776edb3157486601cbab 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial047 /dev/nvme6n1 ssd Linux_1507417cb26311f42d0a 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B002CB 1788G No 32s ago Has a FileSystem, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B0024F 1788G No 32s ago Has a FileSystem, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme3n1 ssd Linux_b98e95ebca46742ac984 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme4n1 ssd Linux_c7aceee46128a1e78ff3 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme5n1 ssd Linux_9822ee0a9d6714372db2 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.795 INFO:teuthology.orchestra.run.trial047.stdout:trial152 /dev/nvme6n1 ssd Linux_b7ba16fa9e65a0972c70 700G No 32s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-20T23:09:26.930 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:26 trial047 ceph-mon[36000]: from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:26.930 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:26 trial047 ceph-mon[36000]: Removing orphan daemon nfs.foo.0.0.trial047.iubdit... 2026-02-20T23:09:26.931 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:26 trial047 ceph-mon[36000]: Removing daemon nfs.foo.0.0.trial047.iubdit from trial047 -- ports [12049] 2026-02-20T23:09:26.931 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:26 trial047 ceph-mon[36000]: from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:26.931 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:26 trial047 ceph-mon[36000]: pgmap v78: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 24 KiB/s rd, 767 B/s wr, 39 op/s 2026-02-20T23:09:26.932 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2026-02-20T23:09:27.048 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:27.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:26 trial152 ceph-mon[42847]: from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:27.111 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:26 trial152 ceph-mon[42847]: Removing orphan daemon nfs.foo.0.0.trial047.iubdit... 2026-02-20T23:09:27.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:26 trial152 ceph-mon[42847]: Removing daemon nfs.foo.0.0.trial047.iubdit from trial047 -- ports [12049] 2026-02-20T23:09:27.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:26 trial152 ceph-mon[42847]: from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:27.112 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:26 trial152 ceph-mon[42847]: pgmap v78: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 24 KiB/s rd, 767 B/s wr, 39 op/s 2026-02-20T23:09:27.300 INFO:teuthology.orchestra.run.trial047.stdout:osd.all-available-devices 8 2s ago 76s * 2026-02-20T23:09:27.433 DEBUG:teuthology.run_tasks:Unwinding manager vip 2026-02-20T23:09:27.451 INFO:tasks.vip:Removing 192.168.1.47 (and any VIPs) on trial047.front.sepia.ceph.com iface enp1s0f0... 2026-02-20T23:09:27.451 DEBUG:teuthology.orchestra.run.trial047:> sudo ip addr del 192.168.1.47/16 dev enp1s0f0 2026-02-20T23:09:27.480 DEBUG:teuthology.orchestra.run.trial047:> sudo ip addr del 192.168.17.47/16 dev enp1s0f0 2026-02-20T23:09:27.546 INFO:tasks.vip:Removing 192.168.1.152 (and any VIPs) on trial152.front.sepia.ceph.com iface enp1s0f0... 2026-02-20T23:09:27.546 DEBUG:teuthology.orchestra.run.trial152:> sudo ip addr del 192.168.1.152/16 dev enp1s0f0 2026-02-20T23:09:27.577 DEBUG:teuthology.orchestra.run.trial152:> sudo ip addr del 192.168.17.47/16 dev enp1s0f0 2026-02-20T23:09:27.640 INFO:teuthology.orchestra.run.trial152.stderr:Error: ipv4: Address not found. 2026-02-20T23:09:27.641 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-20T23:09:27.642 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-20T23:09:27.660 INFO:tasks.cephadm:Teardown begin 2026-02-20T23:09:27.660 DEBUG:teuthology.orchestra.run.trial047:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:09:27.685 DEBUG:teuthology.orchestra.run.trial152:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:09:27.709 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-20T23:09:27.710 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-20T23:09:27.841 INFO:teuthology.orchestra.run.trial047.stderr:Inferring config /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/mon.trial047/config 2026-02-20T23:09:27.860 INFO:teuthology.orchestra.run.trial047.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-20T23:09:27.861 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:27 trial152 ceph-mon[42847]: from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:27.861 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:27 trial152 ceph-mon[42847]: from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:27.861 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:27 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:27.861 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:27 trial152 ceph-mon[42847]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:27.876 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-20T23:09:27.876 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-20T23:09:27.877 DEBUG:teuthology.orchestra.run.trial047:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:09:27.894 DEBUG:teuthology.orchestra.run.trial152:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:09:27.910 INFO:tasks.cephadm:Stopping all daemons... 2026-02-20T23:09:27.910 INFO:tasks.cephadm.mon.trial047:Stopping mon.trial047... 2026-02-20T23:09:27.910 DEBUG:teuthology.orchestra.run.trial047:> sudo systemctl stop ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047 2026-02-20T23:09:27.954 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:27 trial047 ceph-mon[36000]: from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:27.955 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:27 trial047 ceph-mon[36000]: from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:09:27.955 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:27 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial047.yoojxp", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:27.955 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:27 trial047 ceph-mon[36000]: from='mgr.14213 10.20.193.47:0/2249091883' entity='mgr.trial047.aeotxy' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial152.bgewfs", "name": "rgw_frontends"} : dispatch 2026-02-20T23:09:28.242 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:27 trial047 systemd[1]: Stopping Ceph mon.trial047 for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460... 2026-02-20T23:09:28.242 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047[35974]: 2026-02-20T23:09:28.038+0000 7f2dd02c9640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial047 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-20T23:09:28.242 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047[35974]: 2026-02-20T23:09:28.038+0000 7f2dd02c9640 -1 mon.trial047@0(leader) e2 *** Got Signal Terminated *** 2026-02-20T23:09:28.433 DEBUG:teuthology.orchestra.run.trial047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service' 2026-02-20T23:09:28.495 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 podman[96060]: 2026-02-20 23:09:28.241847751 +0000 UTC m=+0.217453253 container died 622203b63dd406d4985fa518169dd883f177b461ae72d7f90995cbbd1f63b1d6 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.build-date=20260216, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.vendor=CentOS, ceph=True) 2026-02-20T23:09:28.495 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 podman[96060]: 2026-02-20 23:09:28.35332382 +0000 UTC m=+0.328929322 container remove 622203b63dd406d4985fa518169dd883f177b461ae72d7f90995cbbd1f63b1d6 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216) 2026-02-20T23:09:28.495 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 bash[96060]: ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial047 2026-02-20T23:09:28.496 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 systemd[1]: ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service: Deactivated successfully. 2026-02-20T23:09:28.496 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 systemd[1]: Stopped Ceph mon.trial047 for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460. 2026-02-20T23:09:28.496 INFO:journalctl@ceph.mon.trial047.trial047.stdout:Feb 20 23:09:28 trial047 systemd[1]: ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial047.service: Consumed 3.169s CPU time. 2026-02-20T23:09:28.512 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:09:28.513 INFO:tasks.cephadm.mon.trial047:Stopped mon.trial047 2026-02-20T23:09:28.513 INFO:tasks.cephadm.mon.trial152:Stopping mon.trial152... 2026-02-20T23:09:28.513 DEBUG:teuthology.orchestra.run.trial152:> sudo systemctl stop ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial152 2026-02-20T23:09:28.851 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:28 trial152 systemd[1]: Stopping Ceph mon.trial152 for d93d7c13-0eb0-11f1-a7cb-d404e6e7d460... 2026-02-20T23:09:28.851 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:28 trial152 ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial152[42819]: 2026-02-20T23:09:28.621+0000 7f94d3df7640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial152 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-20T23:09:28.851 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:28 trial152 ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial152[42819]: 2026-02-20T23:09:28.621+0000 7f94d3df7640 -1 mon.trial152@1(peon) e2 *** Got Signal Terminated *** 2026-02-20T23:09:28.851 INFO:journalctl@ceph.mon.trial152.trial152.stdout:Feb 20 23:09:28 trial152 podman[68319]: 2026-02-20 23:09:28.74317399 +0000 UTC m=+0.137649005 container died dc0d40fb15229d38218ad9eaeb45a60a36b313a4be97da5a50bc0f46761422bc (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460-mon-trial152, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531) 2026-02-20T23:09:28.933 DEBUG:teuthology.orchestra.run.trial152:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d93d7c13-0eb0-11f1-a7cb-d404e6e7d460@mon.trial152.service' 2026-02-20T23:09:28.971 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:09:28.971 INFO:tasks.cephadm.mon.trial152:Stopped mon.trial152 2026-02-20T23:09:28.972 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 --force --keep-logs 2026-02-20T23:09:35.849 INFO:teuthology.orchestra.run.trial047.stdout:Deleting cluster with fsid: d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:10:15.220 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 --force --keep-logs 2026-02-20T23:10:15.342 INFO:teuthology.orchestra.run.trial152.stdout:Deleting cluster with fsid: d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:10:53.339 DEBUG:teuthology.orchestra.run.trial047:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:10:53.368 DEBUG:teuthology.orchestra.run.trial152:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:10:53.395 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-20T23:10:53.398 DEBUG:teuthology.misc:Transferring archived files from trial047:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702/remote/trial047/crash 2026-02-20T23:10:53.400 DEBUG:teuthology.orchestra.run.trial047:> sudo tar c -f - -C /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/crash -- . 2026-02-20T23:10:53.434 INFO:teuthology.orchestra.run.trial047.stderr:tar: /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-20T23:10:53.434 INFO:teuthology.orchestra.run.trial047.stderr:tar: Error is not recoverable: exiting now 2026-02-20T23:10:53.436 DEBUG:teuthology.misc:Transferring archived files from trial152:/var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702/remote/trial152/crash 2026-02-20T23:10:53.438 DEBUG:teuthology.orchestra.run.trial152:> sudo tar c -f - -C /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/crash -- . 2026-02-20T23:10:53.463 INFO:teuthology.orchestra.run.trial152.stderr:tar: /var/lib/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-20T23:10:53.463 INFO:teuthology.orchestra.run.trial152.stderr:tar: Error is not recoverable: exiting now 2026-02-20T23:10:53.464 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-20T23:10:53.465 DEBUG:teuthology.orchestra.run.trial047:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-20T23:10:53.502 INFO:tasks.cephadm:Compressing logs... 2026-02-20T23:10:53.503 DEBUG:teuthology.orchestra.run.trial047:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:10:53.544 DEBUG:teuthology.orchestra.run.trial152:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:10:53.565 INFO:teuthology.orchestra.run.trial047.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-20T23:10:53.565 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-20T23:10:53.565 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mon.trial047.log 2026-02-20T23:10:53.565 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.3.log 2026-02-20T23:10:53.566 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mon.trial047.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.ceph-exporter.trial047.log 2026-02-20T23:10:53.566 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.rgw.foorgw.trial047.yoojxp.log 2026-02-20T23:10:53.566 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.3.log: /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.ceph-exporter.trial047.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.5.log 2026-02-20T23:10:53.566 INFO:teuthology.orchestra.run.trial047.stderr: 89.9% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.ceph-exporter.trial047.log.gz 2026-02-20T23:10:53.566 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.7.log 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.rgw.foorgw.trial047.yoojxp.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.cephadm.log 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr: 73.9% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.rgw.foorgw.trial047.yoojxp.log.gz 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.5.log: /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial047.yoojxp.log 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.audit.log 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial047.yoojxp.log: 83.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.cephadm.log.gz 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-volume.log 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr: 77.9% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial047.yoojxp.log.gz 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.1.log 2026-02-20T23:10:53.570 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mgr.trial047.aeotxy.log 2026-02-20T23:10:53.571 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log 2026-02-20T23:10:53.571 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mgr.trial047.aeotxy.log: 91.1% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.audit.log.gz 2026-02-20T23:10:53.571 INFO:teuthology.orchestra.run.trial047.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log: 84.1% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log.gz 2026-02-20T23:10:53.575 INFO:teuthology.orchestra.run.trial152.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-20T23:10:53.575 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.2.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.0.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.rgw.foorgw.trial152.bgewfs.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.cephadm.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.rgw.foorgw.trial152.bgewfs.log: 91.4% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.4.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr: 69.3% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.rgw.foorgw.trial152.bgewfs.log.gz 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.audit.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.4.log: 82.5% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.cephadm.log.gz 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-volume.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mgr.trial152.asdxdh.log 2026-02-20T23:10:53.576 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.6.log 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mgr.trial152.asdxdh.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.ceph-exporter.trial152.log 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mon.trial152.log 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.ceph-exporter.trial152.log: gzip -5 --verbose -- /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr: 91.3% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-client.ceph-exporter.trial152.log.gz 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr: 91.3% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.audit.log.gz 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr:/var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mon.trial152.log: /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log: 83.0% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph.log.gz 2026-02-20T23:10:53.577 INFO:teuthology.orchestra.run.trial152.stderr: 91.0% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mgr.trial152.asdxdh.log.gz 2026-02-20T23:10:53.578 INFO:teuthology.orchestra.run.trial047.stderr: 95.8% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-volume.log.gz 2026-02-20T23:10:53.581 INFO:teuthology.orchestra.run.trial152.stderr: 95.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-volume.log.gz 2026-02-20T23:10:53.582 INFO:teuthology.orchestra.run.trial047.stderr: 91.7% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-20T23:10:53.603 INFO:teuthology.orchestra.run.trial152.stderr: 92.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mon.trial152.log.gz 2026-02-20T23:10:53.634 INFO:teuthology.orchestra.run.trial047.stderr: 89.8% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mgr.trial047.aeotxy.log.gz 2026-02-20T23:10:53.656 INFO:teuthology.orchestra.run.trial047.stderr: 93.4% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.7.log.gz 2026-02-20T23:10:53.673 INFO:teuthology.orchestra.run.trial047.stderr: 91.9% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-mon.trial047.log.gz 2026-02-20T23:10:53.676 INFO:teuthology.orchestra.run.trial152.stderr: 93.5% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.0.log.gz 2026-02-20T23:10:53.697 INFO:teuthology.orchestra.run.trial047.stderr: 93.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.3.log.gz 2026-02-20T23:10:53.698 INFO:teuthology.orchestra.run.trial152.stderr: 93.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.2.log.gz 2026-02-20T23:10:53.708 INFO:teuthology.orchestra.run.trial047.stderr: 93.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.5.log.gz 2026-02-20T23:10:53.711 INFO:teuthology.orchestra.run.trial152.stderr: 93.8% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.6.log.gz 2026-02-20T23:10:53.735 INFO:teuthology.orchestra.run.trial047.stderr: 93.7% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.1.log.gz 2026-02-20T23:10:53.737 INFO:teuthology.orchestra.run.trial047.stderr: 2026-02-20T23:10:53.738 INFO:teuthology.orchestra.run.trial047.stderr:real 0m0.180s 2026-02-20T23:10:53.738 INFO:teuthology.orchestra.run.trial047.stderr:user 0m0.687s 2026-02-20T23:10:53.738 INFO:teuthology.orchestra.run.trial047.stderr:sys 0m0.066s 2026-02-20T23:10:53.748 INFO:teuthology.orchestra.run.trial152.stderr: 93.6% -- replaced with /var/log/ceph/d93d7c13-0eb0-11f1-a7cb-d404e6e7d460/ceph-osd.4.log.gz 2026-02-20T23:10:53.749 INFO:teuthology.orchestra.run.trial152.stderr: 2026-02-20T23:10:53.749 INFO:teuthology.orchestra.run.trial152.stderr:real 0m0.189s 2026-02-20T23:10:53.750 INFO:teuthology.orchestra.run.trial152.stderr:user 0m0.572s 2026-02-20T23:10:53.750 INFO:teuthology.orchestra.run.trial152.stderr:sys 0m0.049s 2026-02-20T23:10:53.751 INFO:tasks.cephadm:Archiving logs... 2026-02-20T23:10:53.751 DEBUG:teuthology.misc:Transferring archived files from trial047:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702/remote/trial047/log 2026-02-20T23:10:53.752 DEBUG:teuthology.orchestra.run.trial047:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-20T23:10:53.948 DEBUG:teuthology.misc:Transferring archived files from trial152:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702/remote/trial152/log 2026-02-20T23:10:53.949 DEBUG:teuthology.orchestra.run.trial152:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-20T23:10:54.055 INFO:tasks.cephadm:Removing cluster... 2026-02-20T23:10:54.055 DEBUG:teuthology.orchestra.run.trial047:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 --force 2026-02-20T23:10:54.175 INFO:teuthology.orchestra.run.trial047.stdout:Deleting cluster with fsid: d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:10:54.236 DEBUG:teuthology.orchestra.run.trial152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 --force 2026-02-20T23:10:54.355 INFO:teuthology.orchestra.run.trial152.stdout:Deleting cluster with fsid: d93d7c13-0eb0-11f1-a7cb-d404e6e7d460 2026-02-20T23:10:54.414 INFO:tasks.cephadm:Removing cephadm ... 2026-02-20T23:10:54.414 DEBUG:teuthology.orchestra.run.trial047:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-20T23:10:54.432 DEBUG:teuthology.orchestra.run.trial152:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-20T23:10:54.448 INFO:tasks.cephadm:Teardown complete 2026-02-20T23:10:54.448 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2026-02-20T23:10:54.460 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial047:/dev/vg_nvme/lv_1... 2026-02-20T23:10:54.460 DEBUG:teuthology.orchestra.run.trial047:> sudo nvme disconnect -n lv_1 2026-02-20T23:10:54.723 INFO:teuthology.orchestra.run.trial047.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-20T23:10:54.725 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial047:/dev/vg_nvme/lv_2... 2026-02-20T23:10:54.725 DEBUG:teuthology.orchestra.run.trial047:> sudo nvme disconnect -n lv_2 2026-02-20T23:10:54.974 INFO:teuthology.orchestra.run.trial047.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-20T23:10:54.976 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial047:/dev/vg_nvme/lv_3... 2026-02-20T23:10:54.976 DEBUG:teuthology.orchestra.run.trial047:> sudo nvme disconnect -n lv_3 2026-02-20T23:10:55.229 INFO:teuthology.orchestra.run.trial047.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-20T23:10:55.231 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial047:/dev/vg_nvme/lv_4... 2026-02-20T23:10:55.231 DEBUG:teuthology.orchestra.run.trial047:> sudo nvme disconnect -n lv_4 2026-02-20T23:10:55.480 INFO:teuthology.orchestra.run.trial047.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-20T23:10:55.482 DEBUG:teuthology.orchestra.run.trial047:> set -ex 2026-02-20T23:10:55.482 DEBUG:teuthology.orchestra.run.trial047:> sudo dd of=/scratch_devs 2026-02-20T23:10:55.506 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial152:/dev/vg_nvme/lv_1... 2026-02-20T23:10:55.506 DEBUG:teuthology.orchestra.run.trial152:> sudo nvme disconnect -n lv_1 2026-02-20T23:10:55.750 INFO:teuthology.orchestra.run.trial152.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-20T23:10:55.752 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial152:/dev/vg_nvme/lv_2... 2026-02-20T23:10:55.752 DEBUG:teuthology.orchestra.run.trial152:> sudo nvme disconnect -n lv_2 2026-02-20T23:10:56.005 INFO:teuthology.orchestra.run.trial152.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-20T23:10:56.007 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial152:/dev/vg_nvme/lv_3... 2026-02-20T23:10:56.007 DEBUG:teuthology.orchestra.run.trial152:> sudo nvme disconnect -n lv_3 2026-02-20T23:10:56.245 INFO:teuthology.orchestra.run.trial152.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-20T23:10:56.247 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial152:/dev/vg_nvme/lv_4... 2026-02-20T23:10:56.247 DEBUG:teuthology.orchestra.run.trial152:> sudo nvme disconnect -n lv_4 2026-02-20T23:10:56.491 INFO:teuthology.orchestra.run.trial152.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-20T23:10:56.494 DEBUG:teuthology.orchestra.run.trial152:> set -ex 2026-02-20T23:10:56.494 DEBUG:teuthology.orchestra.run.trial152:> sudo dd of=/scratch_devs 2026-02-20T23:10:56.518 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-20T23:10:56.529 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-20T23:10:56.529 DEBUG:teuthology.orchestra.run.trial047:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T23:10:56.531 DEBUG:teuthology.orchestra.run.trial152:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T23:10:56.546 INFO:teuthology.orchestra.run.trial047.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:10:56.569 INFO:teuthology.orchestra.run.trial047.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:10:56.569 INFO:teuthology.orchestra.run.trial047.stdout:=============================================================================== 2026-02-20T23:10:56.569 INFO:teuthology.orchestra.run.trial047.stdout:^+ ip212-227-240-160.pbiaas> 2 6 177 50 -547us[ -547us] +/- 51ms 2026-02-20T23:10:56.569 INFO:teuthology.orchestra.run.trial047.stdout:^* 149.28.200.179.vultruser> 2 6 177 51 +655us[ -180us] +/- 42ms 2026-02-20T23:10:56.569 INFO:teuthology.orchestra.run.trial047.stdout:^+ 96-19-94-82.cpe.sparklig> 1 6 177 50 +827us[ +827us] +/- 32ms 2026-02-20T23:10:56.569 INFO:teuthology.orchestra.run.trial047.stdout:^+ ntp.maxhost.io 2 6 173 49 +1864us[+1864us] +/- 56ms 2026-02-20T23:10:56.573 INFO:teuthology.orchestra.run.trial152.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:10:56.575 INFO:teuthology.orchestra.run.trial152.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:10:56.575 INFO:teuthology.orchestra.run.trial152.stdout:=============================================================================== 2026-02-20T23:10:56.576 INFO:teuthology.orchestra.run.trial152.stdout:^+ ip212-227-240-160.pbiaas> 2 6 177 50 -2056us[-2056us] +/- 51ms 2026-02-20T23:10:56.576 INFO:teuthology.orchestra.run.trial152.stdout:^+ 149.28.200.179.vultruser> 2 6 177 50 -612us[ -612us] +/- 41ms 2026-02-20T23:10:56.576 INFO:teuthology.orchestra.run.trial152.stdout:^* 96-19-94-82.cpe.sparklig> 1 6 177 51 +1576us[+2096us] +/- 30ms 2026-02-20T23:10:56.576 INFO:teuthology.orchestra.run.trial152.stdout:^+ ntp.maxhost.io 2 6 355 48 -213us[ -213us] +/- 56ms 2026-02-20T23:10:56.577 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-20T23:10:56.595 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-20T23:10:56.596 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-20T23:10:56.614 DEBUG:teuthology.orchestra.run.trial047:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2026-02-20T23:10:56.675 DEBUG:teuthology.orchestra.run.trial152:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2026-02-20T23:10:56.732 DEBUG:teuthology.orchestra.run.trial047:> 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 2026-02-20T23:10:56.760 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:10:56.761 DEBUG:teuthology.orchestra.run.trial152:> 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 2026-02-20T23:10:56.786 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:10:56.787 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-20T23:10:56.800 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-20T23:10:56.813 INFO:teuthology.task.internal:Duration was 413.397090 seconds 2026-02-20T23:10:56.814 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-20T23:10:56.826 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-20T23:10:56.827 DEBUG:teuthology.orchestra.run.trial047:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-20T23:10:56.828 DEBUG:teuthology.orchestra.run.trial152:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-20T23:10:56.865 INFO:teuthology.orchestra.run.trial047.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:10:56.865 INFO:teuthology.orchestra.run.trial152.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:10:57.143 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-20T23:10:57.143 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial047.front.sepia.ceph.com 2026-02-20T23:10:57.143 DEBUG:teuthology.orchestra.run.trial047:> grep -E --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-20T23:10:57.161 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial152.front.sepia.ceph.com 2026-02-20T23:10:57.161 DEBUG:teuthology.orchestra.run.trial152:> grep -E --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-20T23:10:57.202 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-20T23:10:57.203 DEBUG:teuthology.orchestra.run.trial047:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:10:57.205 DEBUG:teuthology.orchestra.run.trial152:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:10:57.344 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-20T23:10:57.345 DEBUG:teuthology.orchestra.run.trial047:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:10:57.347 DEBUG:teuthology.orchestra.run.trial152:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:10:57.368 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:10:57.369 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:10:57.369 INFO:teuthology.orchestra.run.trial047.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:10:57.370 INFO:teuthology.orchestra.run.trial047.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-20T23:10:57.370 INFO:teuthology.orchestra.run.trial047.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-20T23:10:57.370 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:10:57.372 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:10:57.372 INFO:teuthology.orchestra.run.trial152.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-20T23:10:57.372 INFO:teuthology.orchestra.run.trial152.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:10:57.372 INFO:teuthology.orchestra.run.trial152.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-20T23:10:57.387 INFO:teuthology.orchestra.run.trial152.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 85.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-20T23:10:57.395 INFO:teuthology.orchestra.run.trial047.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 87.6% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-20T23:10:57.397 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-20T23:10:57.412 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-20T23:10:57.412 DEBUG:teuthology.orchestra.run.trial047:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-20T23:10:57.463 DEBUG:teuthology.orchestra.run.trial152:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-20T23:10:57.489 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-20T23:10:57.509 DEBUG:teuthology.orchestra.run.trial047:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:10:57.512 DEBUG:teuthology.orchestra.run.trial152:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:10:57.535 INFO:teuthology.orchestra.run.trial047.stdout:kernel.core_pattern = core 2026-02-20T23:10:57.552 INFO:teuthology.orchestra.run.trial152.stdout:kernel.core_pattern = core 2026-02-20T23:10:57.567 DEBUG:teuthology.orchestra.run.trial047:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:10:57.603 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:10:57.604 DEBUG:teuthology.orchestra.run.trial152:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:10:57.623 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:10:57.623 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-20T23:10:57.650 INFO:teuthology.task.internal:Transferring archived files... 2026-02-20T23:10:57.651 DEBUG:teuthology.misc:Transferring archived files from trial047:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702/remote/trial047 2026-02-20T23:10:57.652 DEBUG:teuthology.orchestra.run.trial047:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-20T23:10:57.696 DEBUG:teuthology.misc:Transferring archived files from trial152:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61702/remote/trial152 2026-02-20T23:10:57.696 DEBUG:teuthology.orchestra.run.trial152:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-20T23:10:57.736 INFO:teuthology.task.internal:Removing archive directory... 2026-02-20T23:10:57.736 DEBUG:teuthology.orchestra.run.trial047:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-20T23:10:57.739 DEBUG:teuthology.orchestra.run.trial152:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-20T23:10:57.782 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-20T23:10:57.795 INFO:teuthology.task.internal:Not uploading archives. 2026-02-20T23:10:57.795 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-20T23:10:57.809 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-20T23:10:57.809 DEBUG:teuthology.orchestra.run.trial047:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-20T23:10:57.811 DEBUG:teuthology.orchestra.run.trial152:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-20T23:10:57.826 INFO:teuthology.orchestra.run.trial047.stdout: 917521 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 20 23:10 /home/ubuntu/cephtest 2026-02-20T23:10:57.838 INFO:teuthology.orchestra.run.trial152.stdout: 917522 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 20 23:10 /home/ubuntu/cephtest 2026-02-20T23:10:57.839 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-20T23:10:57.859 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-20T23:10:57.901 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 413.39708971977234 owner: scheduled_yuriw@soko04.front.sepia.ceph.com success: true 2026-02-20T23:10:57.901 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-20T23:10:58.539 INFO:teuthology.run:pass