2026-02-20T22:27:53.478 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-20T22:27:53.493 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-20T22:27:53.568 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/61599 branch: wip-pdonnell-testing-20260219.182737-tentacle description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_mgmt_gateway} email: yweinste@redhat.com first_in_suite: false flavor: default job_id: '61599' kernel: branch: distro kdb: true sha1: distro last_in_suite: false machine_type: trial name: yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-pdonnell-testing-20260219.182737-tentacle ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - 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 - mon.a - mgr.a - osd.0 - - host.b - mon.b - mgr.b - osd.1 - - host.c - mon.c - osd.2 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: trial035.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBA2BBPpahFmALtRRt1ME1eT5QEssBmY9zjZaTqwQucuZRpFKvHwUa2zo5v0auB7u/2op++EF2k7GMYN72lvp5Vo= trial073.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCkXqNLfcUNaYjAGIqaeQh+nr0fyNuwNVzxX0sXEBFyOZUNpJBBhaqqxz2Lry7HKPD+U10h0Oaxw3JMK0F0yTAw= trial173.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyDhSHjkZzXQ0huKnu/CqI7oCsx8Sy3b4CcBAJ1T75ey2WI9qFnrVAKyfByYJibmZhVRa42DsIB/+h2C5o5iUY= 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 - install: null - cephadm: null - cephadm.shell: host.c: - "set -ex\n# Deploy monitoring stack\nceph orch apply node-exporter\nceph orch\ \ apply grafana\nceph orch apply alertmanager\nceph orch apply prometheus\n\ sleep 240\n# generate SSL certificate\nopenssl req -x509 -newkey rsa:4096 -keyout\ \ /tmp/key.pem -out /tmp/cert.pem -sha256 -days 30 -nodes -subj \"/CN=*\"\n\ # Generate a mgmt.spec template\ncat << EOT > /tmp/mgmt.spec\nservice_type:\ \ mgmt-gateway\nservice_id: foo\nplacement:\n hosts:\n - ${HOSTNAME}\nspec:\n\ \ ssl_protocols:\n - TLSv1.2\n - TLSv1.3\n ssl_ciphers:\n - AES128-SHA\n\ \ - AES256-SHA\n enable_health_check_endpoint: True\nEOT\n# Add generated\ \ certificates to spec file\necho \" ssl_cert: |\" >> /tmp/mgmt.spec\nwhile\ \ read LINE; do echo $LINE | sed -e \"s/^/ /\"; done < /tmp/cert.pem >> /tmp/mgmt.spec\n\ echo \" ssl_key: |\" >> /tmp/mgmt.spec\nwhile read LINE; do echo $LINE | sed\ \ -e \"s/^/ /\"; done < /tmp/key.pem >> /tmp/mgmt.spec\n# Apply spec\nceph\ \ orch apply -i /tmp/mgmt.spec\n" - cephadm.wait_for_service: service: mgmt-gateway - cephadm.shell: host.a: - "set -ex\n\n# Function to wait for a service to be healthy and log response\ \ on error\nwait_for_service() {\n local name=\"$1\"\n local url=\"$2\"\n\ \ local jq_filter=\"$3\"\n\n echo \"Waiting for service $name to be healthy\ \ at $url...\"\n for i in {1..30}; do\n local response\n response=$(curl\ \ -k -s -u admin:admin \"$url\")\n if echo \"$response\" | jq -e \"$jq_filter\"\ \ > /dev/null; then\n echo \"Service $name is healthy.\"\n return\ \ 0\n fi\n echo \"Attempt $i: service $name not ready yet\"\n sleep\ \ 10\n done\n\n echo \"Timeout waiting for $name at $url\"\n echo \"Last\ \ HTTP response:\"\n echo \"$response\"\n echo \"jq output:\"\n echo \"$response\"\ \ | jq \"$jq_filter\" || echo \"(jq parse error or no match)\"\n return 1\n\ }\n\n# retrieve mgmt hostname and ip\nMGMT_GTW_HOST=$(ceph orch ps --daemon-type\ \ mgmt-gateway -f json | jq -e '.[]' | jq -r '.hostname')\nMGMT_GTW_IP=$(ceph\ \ orch host ls -f json | jq -r --arg MGMT_GTW_HOST \"$MGMT_GTW_HOST\" '.[] |\ \ select(.hostname==$MGMT_GTW_HOST) | .addr')\n\n# check mgmt-gateway health\n\ curl -k -s https://${MGMT_GTW_IP}/health\ncurl -k -s https://${MGMT_GTW_IP}:29443/health\n\ \n# wait for monitoring services\nwait_for_service \"Grafana\" \"https://${MGMT_GTW_IP}/grafana/api/health\"\ \ '.database == \"ok\"' || exit 1\nwait_for_service \"Prometheus\" \"https://${MGMT_GTW_IP}/prometheus/api/v1/status/config\"\ \ '.status == \"success\"' || exit 1\nwait_for_service \"Alertmanager\" \"https://${MGMT_GTW_IP}/alertmanager/api/v2/status\"\ \ '.cluster.status == \"ready\"' || exit 1\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-20_16:19:15 tube: trial user: yuriw verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.1540699 2026-02-20T22:27:53.568 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa; will attempt to use it 2026-02-20T22:27:53.568 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa/tasks 2026-02-20T22:27:53.568 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-20T22:27:53.570 INFO:teuthology.task.internal:Checking packages... 2026-02-20T22:27:53.570 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'f7870454149f22574086dd2ff55d050585136531' 2026-02-20T22:27:53.570 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-20T22:27:53.570 INFO:teuthology.packaging:ref: None 2026-02-20T22:27:53.570 INFO:teuthology.packaging:tag: None 2026-02-20T22:27:53.570 INFO:teuthology.packaging:branch: wip-pdonnell-testing-20260219.182737-tentacle 2026-02-20T22:27:53.570 INFO:teuthology.packaging:sha1: f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:27:53.570 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-pdonnell-testing-20260219.182737-tentacle 2026-02-20T22:27:53.687 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-677.gf7870454 2026-02-20T22:27:53.688 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-20T22:27:53.699 INFO:teuthology.task.internal:no buildpackages task found 2026-02-20T22:27:53.699 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-20T22:27:53.712 INFO:teuthology.task.internal:Saving configuration 2026-02-20T22:27:53.723 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-20T22:27:53.739 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-20T22:27:53.931 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial035.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/61599', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 22:24:19.493309', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBA2BBPpahFmALtRRt1ME1eT5QEssBmY9zjZaTqwQucuZRpFKvHwUa2zo5v0auB7u/2op++EF2k7GMYN72lvp5Vo='} 2026-02-20T22:27:53.987 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial073.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/61599', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 22:24:19.492409', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCkXqNLfcUNaYjAGIqaeQh+nr0fyNuwNVzxX0sXEBFyOZUNpJBBhaqqxz2Lry7HKPD+U10h0Oaxw3JMK0F0yTAw='} 2026-02-20T22:27:54.041 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial173.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/61599', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 22:24:19.492961', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyDhSHjkZzXQ0huKnu/CqI7oCsx8Sy3b4CcBAJ1T75ey2WI9qFnrVAKyfByYJibmZhVRa42DsIB/+h2C5o5iUY='} 2026-02-20T22:27:54.042 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-20T22:27:54.053 INFO:teuthology.task.internal:roles: ubuntu@trial035.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0'] 2026-02-20T22:27:54.053 INFO:teuthology.task.internal:roles: ubuntu@trial073.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.1'] 2026-02-20T22:27:54.053 INFO:teuthology.task.internal:roles: ubuntu@trial173.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.2'] 2026-02-20T22:27:54.053 INFO:teuthology.run_tasks:Running task console_log... 2026-02-20T22:27:54.245 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7592cbe11260>, signals=[15]) 2026-02-20T22:27:54.245 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-20T22:27:54.259 INFO:teuthology.task.internal:Opening connections... 2026-02-20T22:27:54.259 DEBUG:teuthology.task.internal:connecting to ubuntu@trial035.front.sepia.ceph.com 2026-02-20T22:27:54.260 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial035.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:27:54.321 DEBUG:teuthology.task.internal:connecting to ubuntu@trial073.front.sepia.ceph.com 2026-02-20T22:27:54.321 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial073.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:27:54.384 DEBUG:teuthology.task.internal:connecting to ubuntu@trial173.front.sepia.ceph.com 2026-02-20T22:27:54.384 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial173.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:27:54.459 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-20T22:27:54.477 DEBUG:teuthology.orchestra.run.trial035:> uname -m 2026-02-20T22:27:54.496 INFO:teuthology.orchestra.run.trial035.stdout:x86_64 2026-02-20T22:27:54.496 DEBUG:teuthology.orchestra.run.trial035:> cat /etc/os-release 2026-02-20T22:27:54.552 INFO:teuthology.orchestra.run.trial035.stdout:NAME="CentOS Stream" 2026-02-20T22:27:54.552 INFO:teuthology.orchestra.run.trial035.stdout:VERSION="9" 2026-02-20T22:27:54.552 INFO:teuthology.orchestra.run.trial035.stdout:ID="centos" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:ID_LIKE="rhel fedora" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:VERSION_ID="9" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:PLATFORM_ID="platform:el9" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:ANSI_COLOR="0;31" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:LOGO="fedora-logo-icon" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:HOME_URL="https://centos.org/" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T22:27:54.553 INFO:teuthology.orchestra.run.trial035.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T22:27:54.554 INFO:teuthology.lock.ops:Updating trial035.front.sepia.ceph.com on lock server 2026-02-20T22:27:54.646 DEBUG:teuthology.orchestra.run.trial073:> uname -m 2026-02-20T22:27:54.661 INFO:teuthology.orchestra.run.trial073.stdout:x86_64 2026-02-20T22:27:54.661 DEBUG:teuthology.orchestra.run.trial073:> cat /etc/os-release 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:NAME="CentOS Stream" 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:VERSION="9" 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:ID="centos" 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:ID_LIKE="rhel fedora" 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:VERSION_ID="9" 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:PLATFORM_ID="platform:el9" 2026-02-20T22:27:54.717 INFO:teuthology.orchestra.run.trial073.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:ANSI_COLOR="0;31" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:LOGO="fedora-logo-icon" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:HOME_URL="https://centos.org/" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T22:27:54.718 INFO:teuthology.orchestra.run.trial073.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T22:27:54.718 INFO:teuthology.lock.ops:Updating trial073.front.sepia.ceph.com on lock server 2026-02-20T22:27:54.805 DEBUG:teuthology.orchestra.run.trial173:> uname -m 2026-02-20T22:27:54.821 INFO:teuthology.orchestra.run.trial173.stdout:x86_64 2026-02-20T22:27:54.821 DEBUG:teuthology.orchestra.run.trial173:> cat /etc/os-release 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:NAME="CentOS Stream" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:VERSION="9" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:ID="centos" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:ID_LIKE="rhel fedora" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:VERSION_ID="9" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:PLATFORM_ID="platform:el9" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:ANSI_COLOR="0;31" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:LOGO="fedora-logo-icon" 2026-02-20T22:27:54.877 INFO:teuthology.orchestra.run.trial173.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T22:27:54.878 INFO:teuthology.orchestra.run.trial173.stdout:HOME_URL="https://centos.org/" 2026-02-20T22:27:54.878 INFO:teuthology.orchestra.run.trial173.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T22:27:54.878 INFO:teuthology.orchestra.run.trial173.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T22:27:54.878 INFO:teuthology.orchestra.run.trial173.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T22:27:54.878 INFO:teuthology.lock.ops:Updating trial173.front.sepia.ceph.com on lock server 2026-02-20T22:27:54.964 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-20T22:27:54.977 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-20T22:27:54.988 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-20T22:27:54.988 DEBUG:teuthology.orchestra.run.trial035:> test '!' -e /home/ubuntu/cephtest 2026-02-20T22:27:54.990 DEBUG:teuthology.orchestra.run.trial073:> test '!' -e /home/ubuntu/cephtest 2026-02-20T22:27:54.991 DEBUG:teuthology.orchestra.run.trial173:> test '!' -e /home/ubuntu/cephtest 2026-02-20T22:27:55.007 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-20T22:27:55.017 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-20T22:27:55.017 DEBUG:teuthology.orchestra.run.trial035:> test -z $(ls -A /var/lib/ceph) 2026-02-20T22:27:55.045 DEBUG:teuthology.orchestra.run.trial073:> test -z $(ls -A /var/lib/ceph) 2026-02-20T22:27:55.048 DEBUG:teuthology.orchestra.run.trial173:> test -z $(ls -A /var/lib/ceph) 2026-02-20T22:27:55.065 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-20T22:27:55.289 INFO:teuthology.run_tasks:Running task kernel... 2026-02-20T22:27:55.308 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': True, 'sha1': 'distro'} 2026-02-20T22:27:55.308 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}, 'host.c': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}}, timeout 300 2026-02-20T22:27:55.308 DEBUG:teuthology.orchestra.run.trial035:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T22:27:55.308 DEBUG:teuthology.orchestra.run.trial073:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T22:27:55.308 DEBUG:teuthology.orchestra.run.trial173:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T22:27:55.323 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:27:55.323 DEBUG:teuthology.orchestra.run.trial073:> uname -r 2026-02-20T22:27:55.323 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:27:55.323 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:27:55.323 DEBUG:teuthology.orchestra.run.trial173:> uname -r 2026-02-20T22:27:55.324 DEBUG:teuthology.orchestra.run.trial035:> uname -r 2026-02-20T22:27:55.378 INFO:teuthology.orchestra.run.trial073.stdout:5.14.0-681.el9.x86_64 2026-02-20T22:27:55.378 INFO:teuthology.task.kernel:Running kernel on trial073: 5.14.0-681.el9.x86_64 2026-02-20T22:27:55.378 DEBUG:teuthology.orchestra.run.trial073:> sudo yum install -y kernel 2026-02-20T22:27:55.378 INFO:teuthology.orchestra.run.trial173.stdout:5.14.0-681.el9.x86_64 2026-02-20T22:27:55.379 INFO:teuthology.task.kernel:Running kernel on trial173: 5.14.0-681.el9.x86_64 2026-02-20T22:27:55.379 DEBUG:teuthology.orchestra.run.trial173:> sudo yum install -y kernel 2026-02-20T22:27:55.379 INFO:teuthology.orchestra.run.trial035.stdout:5.14.0-681.el9.x86_64 2026-02-20T22:27:55.379 INFO:teuthology.task.kernel:Running kernel on trial035: 5.14.0-681.el9.x86_64 2026-02-20T22:27:55.379 DEBUG:teuthology.orchestra.run.trial035:> sudo yum install -y kernel 2026-02-20T22:27:56.518 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.9 MB 00:00 2026-02-20T22:27:56.606 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.9 MB 00:00 2026-02-20T22:27:57.128 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - BaseOS 6.5 MB/s | 8.9 MB 00:01 2026-02-20T22:27:59.929 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - AppStream 9.3 MB/s | 27 MB 00:02 2026-02-20T22:28:00.383 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - AppStream 9.8 MB/s | 27 MB 00:02 2026-02-20T22:28:02.574 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - CRB 31 MB/s | 7.8 MB 00:00 2026-02-20T22:28:03.526 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - Extras packages 91 kB/s | 20 kB 00:00 2026-02-20T22:28:04.459 INFO:teuthology.orchestra.run.trial173.stdout:Extra Packages for Enterprise Linux 23 MB/s | 20 MB 00:00 2026-02-20T22:28:07.614 INFO:teuthology.orchestra.run.trial173.stdout:lab-extras 2.5 MB/s | 50 kB 00:00 2026-02-20T22:28:08.625 INFO:teuthology.orchestra.run.trial173.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T22:28:08.625 INFO:teuthology.orchestra.run.trial173.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T22:28:08.645 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:28:08.645 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:28:08.645 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:28:08.669 DEBUG:teuthology.orchestra.run.trial173:> echo no | sudo yum reinstall kernel || true 2026-02-20T22:28:08.976 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:01 ago on Fri 20 Feb 2026 10:28:07 PM UTC. 2026-02-20T22:28:09.056 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout: Package Architecture Version Repository Size 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout:Reinstalling: 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:28:09.058 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 803 k 2026-02-20T22:28:09.059 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 0 2026-02-20T22:28:09.059 INFO:teuthology.orchestra.run.trial173.stderr:Operation aborted. 2026-02-20T22:28:09.077 INFO:teuthology.orchestra.run.trial173.stdout:Is this ok [y/N]: 2026-02-20T22:28:09.078 DEBUG:teuthology.orchestra.run.trial173:> sudo yum reinstall -y kernel || true 2026-02-20T22:28:09.377 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 10:28:07 PM UTC. 2026-02-20T22:28:09.456 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:28:09.456 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout: Package Architecture Version Repository Size 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout:Reinstalling: 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 803 k 2026-02-20T22:28:09.457 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 0 2026-02-20T22:28:09.458 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:28:09.722 INFO:teuthology.orchestra.run.trial173.stdout:kernel-5.14.0-681.el9.x86_64.rpm 3.8 MB/s | 803 kB 00:00 2026-02-20T22:28:09.723 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:28:09.723 INFO:teuthology.orchestra.run.trial173.stdout:Total 2.9 MB/s | 803 kB 00:00 2026-02-20T22:28:09.733 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:28:09.766 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:28:09.767 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:28:09.771 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:28:09.771 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:28:09.795 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:28:09.799 INFO:teuthology.orchestra.run.trial173.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:28:09.800 INFO:teuthology.orchestra.run.trial173.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:09.912 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:09.913 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:28:09.969 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:09.969 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:28:09.969 INFO:teuthology.orchestra.run.trial173.stdout:Reinstalled: 2026-02-20T22:28:09.969 INFO:teuthology.orchestra.run.trial173.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T22:28:09.969 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:28:09.969 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:28:09.996 DEBUG:teuthology.orchestra.run.trial173:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T22:28:10.020 INFO:teuthology.orchestra.run.trial173.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T22:28:10.020 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T22:28:10.020 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T22:28:10.021 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2026-02-20T22:28:10.021 DEBUG:teuthology.orchestra.run.trial173:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T22:28:10.085 INFO:teuthology.orchestra.run.trial173.stdout:ttyS1 2026-02-20T22:28:10.113 DEBUG:teuthology.parallel:result is None 2026-02-20T22:28:11.363 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - CRB 925 kB/s | 7.8 MB 00:08 2026-02-20T22:28:13.333 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - Extras packages 16 kB/s | 20 kB 00:01 2026-02-20T22:28:14.580 INFO:teuthology.orchestra.run.trial073.stdout:Extra Packages for Enterprise Linux 17 MB/s | 20 MB 00:01 2026-02-20T22:28:17.796 INFO:teuthology.orchestra.run.trial073.stdout:lab-extras 1.5 MB/s | 50 kB 00:00 2026-02-20T22:28:18.808 INFO:teuthology.orchestra.run.trial073.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T22:28:18.809 INFO:teuthology.orchestra.run.trial073.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T22:28:18.828 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:28:18.828 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:28:18.829 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:28:18.851 DEBUG:teuthology.orchestra.run.trial073:> echo no | sudo yum reinstall kernel || true 2026-02-20T22:28:19.154 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 10:28:17 PM UTC. 2026-02-20T22:28:19.234 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:28:19.234 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:28:19.234 INFO:teuthology.orchestra.run.trial073.stdout: Package Architecture Version Repository Size 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout:Reinstalling: 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 803 k 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 0 2026-02-20T22:28:19.235 INFO:teuthology.orchestra.run.trial073.stderr:Operation aborted. 2026-02-20T22:28:19.255 INFO:teuthology.orchestra.run.trial073.stdout:Is this ok [y/N]: 2026-02-20T22:28:19.255 DEBUG:teuthology.orchestra.run.trial073:> sudo yum reinstall -y kernel || true 2026-02-20T22:28:19.557 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 10:28:17 PM UTC. 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout: Package Architecture Version Repository Size 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout:Reinstalling: 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:28:19.638 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:28:19.639 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:28:19.639 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:28:19.639 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 803 k 2026-02-20T22:28:19.639 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 0 2026-02-20T22:28:19.639 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:28:22.522 INFO:teuthology.orchestra.run.trial073.stdout:kernel-5.14.0-681.el9.x86_64.rpm 320 kB/s | 803 kB 00:02 2026-02-20T22:28:22.523 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:28:22.523 INFO:teuthology.orchestra.run.trial073.stdout:Total 278 kB/s | 803 kB 00:02 2026-02-20T22:28:22.534 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:28:22.569 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:28:22.569 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:28:22.573 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:28:22.574 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:28:22.597 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:28:22.601 INFO:teuthology.orchestra.run.trial073.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:28:22.601 INFO:teuthology.orchestra.run.trial073.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:22.708 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:22.708 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:28:22.766 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:22.766 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:28:22.766 INFO:teuthology.orchestra.run.trial073.stdout:Reinstalled: 2026-02-20T22:28:22.766 INFO:teuthology.orchestra.run.trial073.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T22:28:22.766 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:28:22.766 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:28:22.793 DEBUG:teuthology.orchestra.run.trial073:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T22:28:22.815 INFO:teuthology.orchestra.run.trial073.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T22:28:22.816 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T22:28:22.816 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T22:28:22.816 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-20T22:28:22.816 DEBUG:teuthology.orchestra.run.trial073:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T22:28:22.880 INFO:teuthology.orchestra.run.trial073.stdout:ttyS1 2026-02-20T22:28:22.906 DEBUG:teuthology.parallel:result is None 2026-02-20T22:28:24.022 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - AppStream 1.0 MB/s | 27 MB 00:26 2026-02-20T22:28:28.062 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - CRB 4.9 MB/s | 7.8 MB 00:01 2026-02-20T22:28:29.086 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - Extras packages 100 kB/s | 20 kB 00:00 2026-02-20T22:28:30.083 INFO:teuthology.orchestra.run.trial035.stdout:Extra Packages for Enterprise Linux 22 MB/s | 20 MB 00:00 2026-02-20T22:28:33.291 INFO:teuthology.orchestra.run.trial035.stdout:lab-extras 2.7 MB/s | 50 kB 00:00 2026-02-20T22:28:34.292 INFO:teuthology.orchestra.run.trial035.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T22:28:34.292 INFO:teuthology.orchestra.run.trial035.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T22:28:34.311 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:28:34.311 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:28:34.312 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:28:34.333 DEBUG:teuthology.orchestra.run.trial035:> echo no | sudo yum reinstall kernel || true 2026-02-20T22:28:34.632 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:01 ago on Fri 20 Feb 2026 10:28:33 PM UTC. 2026-02-20T22:28:34.712 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout: Package Architecture Version Repository Size 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout:Reinstalling: 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:28:34.714 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 803 k 2026-02-20T22:28:34.715 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 0 2026-02-20T22:28:34.715 INFO:teuthology.orchestra.run.trial035.stderr:Operation aborted. 2026-02-20T22:28:34.734 INFO:teuthology.orchestra.run.trial035.stdout:Is this ok [y/N]: 2026-02-20T22:28:34.734 DEBUG:teuthology.orchestra.run.trial035:> sudo yum reinstall -y kernel || true 2026-02-20T22:28:35.032 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 10:28:33 PM UTC. 2026-02-20T22:28:35.111 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:28:35.112 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:28:35.112 INFO:teuthology.orchestra.run.trial035.stdout: Package Architecture Version Repository Size 2026-02-20T22:28:35.112 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:28:35.112 INFO:teuthology.orchestra.run.trial035.stdout:Reinstalling: 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 803 k 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 0 2026-02-20T22:28:35.113 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:28:35.591 INFO:teuthology.orchestra.run.trial035.stdout:kernel-5.14.0-681.el9.x86_64.rpm 1.9 MB/s | 803 kB 00:00 2026-02-20T22:28:35.591 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:28:35.591 INFO:teuthology.orchestra.run.trial035.stdout:Total 1.6 MB/s | 803 kB 00:00 2026-02-20T22:28:35.603 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:28:35.638 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:28:35.638 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:28:35.642 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:28:35.643 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:28:35.666 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:28:35.670 INFO:teuthology.orchestra.run.trial035.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:28:35.670 INFO:teuthology.orchestra.run.trial035.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:35.777 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:35.777 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:28:35.833 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:28:35.833 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:28:35.833 INFO:teuthology.orchestra.run.trial035.stdout:Reinstalled: 2026-02-20T22:28:35.833 INFO:teuthology.orchestra.run.trial035.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T22:28:35.833 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:28:35.833 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:28:35.860 DEBUG:teuthology.orchestra.run.trial035:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T22:28:35.924 INFO:teuthology.orchestra.run.trial035.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T22:28:35.925 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T22:28:35.925 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T22:28:35.925 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-20T22:28:35.925 DEBUG:teuthology.orchestra.run.trial035:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T22:28:35.988 INFO:teuthology.orchestra.run.trial035.stdout:ttyS1 2026-02-20T22:28:36.012 DEBUG:teuthology.parallel:result is None 2026-02-20T22:28:36.013 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-20T22:28:36.023 INFO:teuthology.task.internal:Creating test directory... 2026-02-20T22:28:36.023 DEBUG:teuthology.orchestra.run.trial035:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T22:28:36.054 DEBUG:teuthology.orchestra.run.trial073:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T22:28:36.056 DEBUG:teuthology.orchestra.run.trial173:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T22:28:36.072 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-20T22:28:36.083 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-20T22:28:36.097 INFO:teuthology.task.internal:Creating archive directory... 2026-02-20T22:28:36.097 DEBUG:teuthology.orchestra.run.trial035:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T22:28:36.111 DEBUG:teuthology.orchestra.run.trial073:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T22:28:36.112 DEBUG:teuthology.orchestra.run.trial173:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T22:28:36.134 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-20T22:28:36.145 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-20T22:28:36.145 DEBUG:teuthology.orchestra.run.trial035:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-20T22:28:36.167 DEBUG:teuthology.orchestra.run.trial073:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-20T22:28:36.168 DEBUG:teuthology.orchestra.run.trial173:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-20T22:28:36.189 INFO:teuthology.orchestra.run.trial035.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:28:36.190 INFO:teuthology.orchestra.run.trial073.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:28:36.193 INFO:teuthology.orchestra.run.trial173.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:28:36.197 INFO:teuthology.orchestra.run.trial035.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:28:36.199 INFO:teuthology.orchestra.run.trial073.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:28:36.202 INFO:teuthology.orchestra.run.trial173.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:28:36.203 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-20T22:28:36.218 INFO:teuthology.task.internal:Configuring sudo... 2026-02-20T22:28:36.218 DEBUG:teuthology.orchestra.run.trial035:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T22:28:36.241 DEBUG:teuthology.orchestra.run.trial073:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T22:28:36.244 DEBUG:teuthology.orchestra.run.trial173:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T22:28:36.270 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-20T22:28:36.286 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-20T22:28:36.287 DEBUG:teuthology.orchestra.run.trial035:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T22:28:36.307 DEBUG:teuthology.orchestra.run.trial073:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T22:28:36.309 DEBUG:teuthology.orchestra.run.trial173:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T22:28:36.327 DEBUG:teuthology.orchestra.run.trial035:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:28:36.482 DEBUG:teuthology.orchestra.run.trial035:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:28:36.508 DEBUG:teuthology.orchestra.run.trial035:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:28:36.655 DEBUG:teuthology.orchestra.run.trial035:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:28:36.680 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:28:36.680 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T22:28:36.743 DEBUG:teuthology.orchestra.run.trial073:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:28:36.846 DEBUG:teuthology.orchestra.run.trial073:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:28:36.871 DEBUG:teuthology.orchestra.run.trial073:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:28:37.006 DEBUG:teuthology.orchestra.run.trial073:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:28:37.030 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:28:37.030 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T22:28:37.094 DEBUG:teuthology.orchestra.run.trial173:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:28:37.207 DEBUG:teuthology.orchestra.run.trial173:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:28:37.233 DEBUG:teuthology.orchestra.run.trial173:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:28:37.380 DEBUG:teuthology.orchestra.run.trial173:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:28:37.405 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:28:37.405 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T22:28:37.468 DEBUG:teuthology.orchestra.run.trial035:> sudo service rsyslog restart 2026-02-20T22:28:37.470 DEBUG:teuthology.orchestra.run.trial073:> sudo service rsyslog restart 2026-02-20T22:28:37.472 DEBUG:teuthology.orchestra.run.trial173:> sudo service rsyslog restart 2026-02-20T22:28:37.497 INFO:teuthology.orchestra.run.trial035.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T22:28:37.499 INFO:teuthology.orchestra.run.trial073.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T22:28:37.536 INFO:teuthology.orchestra.run.trial173.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T22:28:37.995 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-20T22:28:38.008 INFO:teuthology.task.internal:Starting timer... 2026-02-20T22:28:38.009 INFO:teuthology.run_tasks:Running task pcp... 2026-02-20T22:28:38.030 INFO:teuthology.run_tasks:Running task selinux... 2026-02-20T22:28:38.043 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2026-02-20T22:28:38.044 DEBUG:teuthology.orchestra.run.trial035:> sudo service auditd rotate 2026-02-20T22:28:38.071 INFO:teuthology.orchestra.run.trial035.stdout:Rotating logs: 2026-02-20T22:28:38.073 DEBUG:teuthology.orchestra.run.trial073:> sudo service auditd rotate 2026-02-20T22:28:38.103 INFO:teuthology.orchestra.run.trial073.stdout:Rotating logs: 2026-02-20T22:28:38.105 DEBUG:teuthology.orchestra.run.trial173:> sudo service auditd rotate 2026-02-20T22:28:38.135 INFO:teuthology.orchestra.run.trial173.stdout:Rotating logs: 2026-02-20T22:28:38.137 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-20T22:28:38.137 DEBUG:teuthology.orchestra.run.trial035:> /usr/sbin/getenforce 2026-02-20T22:28:38.152 INFO:teuthology.orchestra.run.trial035.stdout:Permissive 2026-02-20T22:28:38.152 DEBUG:teuthology.orchestra.run.trial073:> /usr/sbin/getenforce 2026-02-20T22:28:38.167 INFO:teuthology.orchestra.run.trial073.stdout:Permissive 2026-02-20T22:28:38.167 DEBUG:teuthology.orchestra.run.trial173:> /usr/sbin/getenforce 2026-02-20T22:28:38.193 INFO:teuthology.orchestra.run.trial173.stdout:Permissive 2026-02-20T22:28:38.193 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial035.front.sepia.ceph.com': 'permissive', 'ubuntu@trial073.front.sepia.ceph.com': 'permissive', 'ubuntu@trial173.front.sepia.ceph.com': 'permissive'} 2026-02-20T22:28:38.193 DEBUG:teuthology.orchestra.run.trial035:> 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-20T22:28:38.216 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:28:38.217 DEBUG:teuthology.orchestra.run.trial073:> 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-20T22:28:38.241 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:28:38.241 DEBUG:teuthology.orchestra.run.trial173:> 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-20T22:28:38.266 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:28:38.266 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-20T22:28:38.267 DEBUG:teuthology.orchestra.run.trial035:> sudo /usr/sbin/setenforce permissive 2026-02-20T22:28:38.289 DEBUG:teuthology.orchestra.run.trial073:> sudo /usr/sbin/setenforce permissive 2026-02-20T22:28:38.313 DEBUG:teuthology.orchestra.run.trial173:> sudo /usr/sbin/setenforce permissive 2026-02-20T22:28:38.337 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-20T22:28:38.352 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-20T22:28:38.364 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2026-02-20T22:28:38.365 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial035.front.sepia.ceph.com,trial073.front.sepia.ceph.com,trial173.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-20T22:31:32.977 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial035.front.sepia.ceph.com'), Remote(name='ubuntu@trial073.front.sepia.ceph.com'), Remote(name='ubuntu@trial173.front.sepia.ceph.com')] 2026-02-20T22:31:32.979 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial035.front.sepia.ceph.com' 2026-02-20T22:31:32.981 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial035.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:31:33.090 DEBUG:teuthology.orchestra.run.trial035:> true 2026-02-20T22:31:33.164 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial035.front.sepia.ceph.com' 2026-02-20T22:31:33.164 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial073.front.sepia.ceph.com' 2026-02-20T22:31:33.165 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial073.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:31:33.257 DEBUG:teuthology.orchestra.run.trial073:> true 2026-02-20T22:31:33.334 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial073.front.sepia.ceph.com' 2026-02-20T22:31:33.334 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial173.front.sepia.ceph.com' 2026-02-20T22:31:33.335 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial173.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:31:33.421 DEBUG:teuthology.orchestra.run.trial173:> true 2026-02-20T22:31:33.493 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial173.front.sepia.ceph.com' 2026-02-20T22:31:33.495 INFO:teuthology.run_tasks:Running task clock... 2026-02-20T22:31:33.508 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-20T22:31:33.508 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T22:31:33.508 DEBUG:teuthology.orchestra.run.trial035:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T22:31:33.510 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T22:31:33.511 DEBUG:teuthology.orchestra.run.trial073:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T22:31:33.513 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T22:31:33.513 DEBUG:teuthology.orchestra.run.trial173:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T22:31:33.537 INFO:teuthology.orchestra.run.trial035.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T22:31:33.539 INFO:teuthology.orchestra.run.trial073.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T22:31:33.548 INFO:teuthology.orchestra.run.trial035.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T22:31:33.551 INFO:teuthology.orchestra.run.trial073.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T22:31:33.561 INFO:teuthology.orchestra.run.trial173.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T22:31:33.567 INFO:teuthology.orchestra.run.trial035.stderr:sudo: ntpd: command not found 2026-02-20T22:31:33.573 INFO:teuthology.orchestra.run.trial173.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T22:31:33.573 INFO:teuthology.orchestra.run.trial073.stderr:sudo: ntpd: command not found 2026-02-20T22:31:33.577 INFO:teuthology.orchestra.run.trial035.stdout:506 Cannot talk to daemon 2026-02-20T22:31:33.582 INFO:teuthology.orchestra.run.trial073.stdout:506 Cannot talk to daemon 2026-02-20T22:31:33.588 INFO:teuthology.orchestra.run.trial035.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T22:31:33.592 INFO:teuthology.orchestra.run.trial173.stderr:sudo: ntpd: command not found 2026-02-20T22:31:33.593 INFO:teuthology.orchestra.run.trial073.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T22:31:33.599 INFO:teuthology.orchestra.run.trial035.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T22:31:33.602 INFO:teuthology.orchestra.run.trial173.stdout:506 Cannot talk to daemon 2026-02-20T22:31:33.605 INFO:teuthology.orchestra.run.trial073.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T22:31:33.613 INFO:teuthology.orchestra.run.trial173.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T22:31:33.624 INFO:teuthology.orchestra.run.trial173.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T22:31:33.646 INFO:teuthology.orchestra.run.trial035.stderr:bash: line 1: ntpq: command not found 2026-02-20T22:31:33.647 INFO:teuthology.orchestra.run.trial035.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T22:31:33.648 INFO:teuthology.orchestra.run.trial035.stdout:=============================================================================== 2026-02-20T22:31:33.656 INFO:teuthology.orchestra.run.trial073.stderr:bash: line 1: ntpq: command not found 2026-02-20T22:31:33.667 INFO:teuthology.orchestra.run.trial173.stderr:bash: line 1: ntpq: command not found 2026-02-20T22:31:33.675 INFO:teuthology.orchestra.run.trial073.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T22:31:33.675 INFO:teuthology.orchestra.run.trial073.stdout:=============================================================================== 2026-02-20T22:31:33.675 INFO:teuthology.orchestra.run.trial073.stdout:^? 107-172-222-7-host.coloc> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:31:33.676 INFO:teuthology.orchestra.run.trial073.stdout:^? 172-233-157-223.ip.linod> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:31:33.676 INFO:teuthology.orchestra.run.trial073.stdout:^? 139-177-202-26.ip.linode> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:31:33.679 INFO:teuthology.orchestra.run.trial173.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T22:31:33.679 INFO:teuthology.orchestra.run.trial173.stdout:=============================================================================== 2026-02-20T22:31:33.680 INFO:teuthology.orchestra.run.trial173.stdout:^? arm1.maxhost.io 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:31:33.680 INFO:teuthology.orchestra.run.trial173.stdout:^? 155.248.196.28 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:31:33.680 INFO:teuthology.orchestra.run.trial173.stdout:^? 139-177-202-26.ip.linode> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:31:33.681 INFO:teuthology.run_tasks:Running task pexec... 2026-02-20T22:31:33.698 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-20T22:31:33.699 DEBUG:teuthology.orchestra.run.trial035:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T22:31:33.700 DEBUG:teuthology.orchestra.run.trial073:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T22:31:33.700 DEBUG:teuthology.orchestra.run.trial173:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T22:31:33.703 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial035.front.sepia.ceph.com 2026-02-20T22:31:33.703 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T22:31:33.703 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-20T22:31:33.704 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-20T22:31:33.704 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-20T22:31:33.719 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial073.front.sepia.ceph.com 2026-02-20T22:31:33.720 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T22:31:33.720 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-20T22:31:33.720 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-20T22:31:33.720 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-20T22:31:33.724 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial173.front.sepia.ceph.com 2026-02-20T22:31:33.724 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T22:31:33.724 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-20T22:31:33.724 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-20T22:31:33.725 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-20T22:31:33.873 INFO:teuthology.orchestra.run.trial035.stdout:No match for argument: nvme-cli 2026-02-20T22:31:33.874 INFO:teuthology.orchestra.run.trial035.stderr:No packages marked for removal. 2026-02-20T22:31:33.875 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:31:33.876 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:31:33.876 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:31:33.891 INFO:teuthology.orchestra.run.trial073.stdout:No match for argument: nvme-cli 2026-02-20T22:31:33.892 INFO:teuthology.orchestra.run.trial073.stderr:No packages marked for removal. 2026-02-20T22:31:33.893 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:31:33.894 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:31:33.894 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:31:33.896 INFO:teuthology.orchestra.run.trial173.stdout:No match for argument: nvme-cli 2026-02-20T22:31:33.896 INFO:teuthology.orchestra.run.trial173.stderr:No packages marked for removal. 2026-02-20T22:31:33.898 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:31:33.899 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:31:33.899 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:31:34.174 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:36 ago on Fri 20 Feb 2026 10:30:58 PM UTC. 2026-02-20T22:31:34.197 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:25 ago on Fri 20 Feb 2026 10:31:09 PM UTC. 2026-02-20T22:31:34.198 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:36 ago on Fri 20 Feb 2026 10:30:58 PM UTC. 2026-02-20T22:31:34.255 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:31:34.256 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T22:31:34.257 INFO:teuthology.orchestra.run.trial035.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout:Install 7 Packages 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 6.3 M 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 24 M 2026-02-20T22:31:34.258 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:31:34.278 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T22:31:34.279 INFO:teuthology.orchestra.run.trial173.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout:Install 7 Packages 2026-02-20T22:31:34.280 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:34.281 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 6.3 M 2026-02-20T22:31:34.281 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 24 M 2026-02-20T22:31:34.281 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T22:31:34.282 INFO:teuthology.orchestra.run.trial073.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout:Install 7 Packages 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 6.3 M 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 24 M 2026-02-20T22:31:34.283 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:31:34.418 INFO:teuthology.orchestra.run.trial035.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 1.0 MB/s | 44 kB 00:00 2026-02-20T22:31:34.426 INFO:teuthology.orchestra.run.trial035.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 1.4 MB/s | 72 kB 00:00 2026-02-20T22:31:34.436 INFO:teuthology.orchestra.run.trial035.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 4.5 MB/s | 84 kB 00:00 2026-02-20T22:31:34.449 INFO:teuthology.orchestra.run.trial035.stdout:(4/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 6.3 MB/s | 150 kB 00:00 2026-02-20T22:31:34.464 INFO:teuthology.orchestra.run.trial173.stdout:(1/7): python3-configshell-1.1.30-1.el9.noarch. 2.1 MB/s | 72 kB 00:00 2026-02-20T22:31:34.470 INFO:teuthology.orchestra.run.trial173.stdout:(2/7): python3-kmod-0.9-32.el9.x86_64.rpm 15 MB/s | 84 kB 00:00 2026-02-20T22:31:34.470 INFO:teuthology.orchestra.run.trial173.stdout:(3/7): nvmetcli-0.8-3.el9.noarch.rpm 1.1 MB/s | 44 kB 00:00 2026-02-20T22:31:34.472 INFO:teuthology.orchestra.run.trial035.stdout:(5/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 23 MB/s | 837 kB 00:00 2026-02-20T22:31:34.478 INFO:teuthology.orchestra.run.trial173.stdout:(4/7): nvme-cli-2.16-1.el9.x86_64.rpm 24 MB/s | 1.2 MB 00:00 2026-02-20T22:31:34.483 INFO:teuthology.orchestra.run.trial173.stdout:(5/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 11 MB/s | 150 kB 00:00 2026-02-20T22:31:34.486 INFO:teuthology.orchestra.run.trial173.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 50 MB/s | 837 kB 00:00 2026-02-20T22:31:34.488 INFO:teuthology.orchestra.run.trial035.stdout:(6/7): runc-1.4.0-1.el9.x86_64.rpm 101 MB/s | 4.0 MB 00:00 2026-02-20T22:31:34.497 INFO:teuthology.orchestra.run.trial173.stdout:(7/7): runc-1.4.0-1.el9.x86_64.rpm 209 MB/s | 4.0 MB 00:00 2026-02-20T22:31:34.497 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:31:34.498 INFO:teuthology.orchestra.run.trial173.stdout:Total 29 MB/s | 6.3 MB 00:00 2026-02-20T22:31:34.509 INFO:teuthology.orchestra.run.trial035.stdout:(7/7): nvme-cli-2.16-1.el9.x86_64.rpm 8.7 MB/s | 1.2 MB 00:00 2026-02-20T22:31:34.510 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:31:34.510 INFO:teuthology.orchestra.run.trial035.stdout:Total 25 MB/s | 6.3 MB 00:00 2026-02-20T22:31:34.565 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:31:34.574 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:31:34.574 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:31:34.576 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:31:34.583 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:31:34.584 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:31:34.654 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:31:34.655 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:31:34.663 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:31:34.663 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:31:34.800 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:31:34.807 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:31:34.808 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2026-02-20T22:31:34.815 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2026-02-20T22:31:34.817 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/7 2026-02-20T22:31:34.822 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T22:31:34.824 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/7 2026-02-20T22:31:34.828 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T22:31:34.829 INFO:teuthology.orchestra.run.trial173.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T22:31:34.830 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T22:31:34.835 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T22:31:34.836 INFO:teuthology.orchestra.run.trial035.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T22:31:34.876 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T22:31:34.888 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T22:31:34.990 INFO:teuthology.orchestra.run.trial173.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 6/7 2026-02-20T22:31:34.993 INFO:teuthology.orchestra.run.trial173.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T22:31:35.001 INFO:teuthology.orchestra.run.trial035.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 6/7 2026-02-20T22:31:35.004 INFO:teuthology.orchestra.run.trial035.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T22:31:35.260 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T22:31:35.261 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T22:31:35.261 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:35.289 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T22:31:35.290 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T22:31:35.290 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:35.352 INFO:teuthology.orchestra.run.trial073.stdout:(1/7): nvmetcli-0.8-3.el9.noarch.rpm 63 kB/s | 44 kB 00:00 2026-02-20T22:31:35.434 INFO:teuthology.orchestra.run.trial073.stdout:(2/7): python3-configshell-1.1.30-1.el9.noarch. 93 kB/s | 72 kB 00:00 2026-02-20T22:31:35.523 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/7 2026-02-20T22:31:35.523 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/7 2026-02-20T22:31:35.523 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T22:31:35.523 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T22:31:35.523 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/7 2026-02-20T22:31:35.524 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2026-02-20T22:31:35.542 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/7 2026-02-20T22:31:35.542 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/7 2026-02-20T22:31:35.542 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T22:31:35.542 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T22:31:35.542 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/7 2026-02-20T22:31:35.542 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2026-02-20T22:31:35.576 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/7 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:35.577 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:31:35.594 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/7 2026-02-20T22:31:35.594 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:35.595 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:31:35.631 DEBUG:teuthology.parallel:result is None 2026-02-20T22:31:35.648 DEBUG:teuthology.parallel:result is None 2026-02-20T22:31:35.677 INFO:teuthology.orchestra.run.trial073.stdout:(3/7): nvme-cli-2.16-1.el9.x86_64.rpm 1.1 MB/s | 1.2 MB 00:01 2026-02-20T22:31:35.820 INFO:teuthology.orchestra.run.trial073.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 180 kB/s | 84 kB 00:00 2026-02-20T22:31:35.838 INFO:teuthology.orchestra.run.trial073.stdout:(5/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.1 MB/s | 837 kB 00:00 2026-02-20T22:31:36.016 INFO:teuthology.orchestra.run.trial073.stdout:(6/7): runc-1.4.0-1.el9.x86_64.rpm 20 MB/s | 4.0 MB 00:00 2026-02-20T22:31:36.141 INFO:teuthology.orchestra.run.trial073.stdout:(7/7): python3-pyparsing-2.4.7-9.el9.noarch.rpm 213 kB/s | 150 kB 00:00 2026-02-20T22:31:36.142 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:31:36.143 INFO:teuthology.orchestra.run.trial073.stdout:Total 3.4 MB/s | 6.3 MB 00:01 2026-02-20T22:31:36.213 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:31:36.221 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:31:36.221 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:31:36.302 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:31:36.302 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:31:36.445 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:31:36.454 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2026-02-20T22:31:36.463 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/7 2026-02-20T22:31:36.470 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T22:31:36.476 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T22:31:36.477 INFO:teuthology.orchestra.run.trial073.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T22:31:36.525 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/7 2026-02-20T22:31:36.639 INFO:teuthology.orchestra.run.trial073.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 6/7 2026-02-20T22:31:36.642 INFO:teuthology.orchestra.run.trial073.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T22:31:36.923 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/7 2026-02-20T22:31:36.923 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T22:31:36.923 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:31:37.184 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/7 2026-02-20T22:31:37.184 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/7 2026-02-20T22:31:37.184 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/7 2026-02-20T22:31:37.184 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/7 2026-02-20T22:31:37.184 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/7 2026-02-20T22:31:37.184 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/7 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:31:37.238 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:31:37.292 DEBUG:teuthology.parallel:result is None 2026-02-20T22:31:37.292 INFO:teuthology.run_tasks:Running task install... 2026-02-20T22:31:37.309 DEBUG:teuthology.task.install:project ceph 2026-02-20T22:31:37.309 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'f7870454149f22574086dd2ff55d050585136531'}} 2026-02-20T22:31:37.309 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'f7870454149f22574086dd2ff55d050585136531'} 2026-02-20T22:31:37.309 INFO:teuthology.task.install:Using flavor: default 2026-02-20T22:31:37.318 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2026-02-20T22:31:37.318 INFO:teuthology.task.install:extra packages: [] 2026-02-20T22:31:37.318 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'tag': None, 'wait_for_package': False} 2026-02-20T22:31:37.319 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:31:37.322 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'tag': None, 'wait_for_package': False} 2026-02-20T22:31:37.323 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:31:37.324 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'tag': None, 'wait_for_package': False} 2026-02-20T22:31:37.324 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:31:37.560 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/ 2026-02-20T22:31:37.560 INFO:teuthology.task.install.rpm:Package version is 20.2.0-677.gf7870454 2026-02-20T22:31:37.562 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/ 2026-02-20T22:31:37.562 INFO:teuthology.task.install.rpm:Package version is 20.2.0-677.gf7870454 2026-02-20T22:31:37.571 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/ 2026-02-20T22:31:37.571 INFO:teuthology.task.install.rpm:Package version is 20.2.0-677.gf7870454 2026-02-20T22:31:37.757 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-20T22:31:37.758 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:31:37.758 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-20T22:31:37.759 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-20T22:31:37.759 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:31:37.759 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-20T22:31:37.768 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-20T22:31:37.768 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:31:37.768 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-20T22:31:37.784 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-20T22:31:37.785 DEBUG:teuthology.orchestra.run.trial035:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/f7870454149f22574086dd2ff55d050585136531/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-20T22:31:37.786 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-20T22:31:37.786 DEBUG:teuthology.orchestra.run.trial073:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/f7870454149f22574086dd2ff55d050585136531/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-20T22:31:37.796 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-20T22:31:37.796 DEBUG:teuthology.orchestra.run.trial173:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/f7870454149f22574086dd2ff55d050585136531/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-20T22:31:37.850 DEBUG:teuthology.orchestra.run.trial035:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-20T22:31:37.851 DEBUG:teuthology.orchestra.run.trial073:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-20T22:31:37.860 DEBUG:teuthology.orchestra.run.trial173:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-20T22:31:37.923 DEBUG:teuthology.orchestra.run.trial035:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-20T22:31:37.927 DEBUG:teuthology.orchestra.run.trial073:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-20T22:31:37.933 DEBUG:teuthology.orchestra.run.trial173:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-20T22:31:37.986 INFO:teuthology.orchestra.run.trial035.stdout:check_obsoletes = 1 2026-02-20T22:31:37.988 DEBUG:teuthology.orchestra.run.trial035:> sudo yum clean all 2026-02-20T22:31:37.993 INFO:teuthology.orchestra.run.trial073.stdout:check_obsoletes = 1 2026-02-20T22:31:37.994 DEBUG:teuthology.orchestra.run.trial073:> sudo yum clean all 2026-02-20T22:31:37.997 INFO:teuthology.orchestra.run.trial173.stdout:check_obsoletes = 1 2026-02-20T22:31:37.999 DEBUG:teuthology.orchestra.run.trial173:> sudo yum clean all 2026-02-20T22:31:38.146 INFO:teuthology.orchestra.run.trial035.stdout:41 files removed 2026-02-20T22:31:38.152 INFO:teuthology.orchestra.run.trial073.stdout:41 files removed 2026-02-20T22:31:38.154 INFO:teuthology.orchestra.run.trial173.stdout:41 files removed 2026-02-20T22:31:38.160 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-radosgw 2026-02-20T22:31:38.167 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-radosgw 2026-02-20T22:31:38.169 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-radosgw 2026-02-20T22:31:38.432 INFO:teuthology.orchestra.run.trial035.stdout:ceph packages for x86_64 664 kB/s | 87 kB 00:00 2026-02-20T22:31:38.439 INFO:teuthology.orchestra.run.trial173.stdout:ceph packages for x86_64 693 kB/s | 87 kB 00:00 2026-02-20T22:31:38.441 INFO:teuthology.orchestra.run.trial073.stdout:ceph packages for x86_64 674 kB/s | 87 kB 00:00 2026-02-20T22:31:38.575 INFO:teuthology.orchestra.run.trial035.stdout:ceph noarch packages 153 kB/s | 18 kB 00:00 2026-02-20T22:31:38.577 INFO:teuthology.orchestra.run.trial173.stdout:ceph noarch packages 160 kB/s | 18 kB 00:00 2026-02-20T22:31:38.582 INFO:teuthology.orchestra.run.trial073.stdout:ceph noarch packages 156 kB/s | 18 kB 00:00 2026-02-20T22:31:38.702 INFO:teuthology.orchestra.run.trial035.stdout:ceph source packages 18 kB/s | 1.9 kB 00:00 2026-02-20T22:31:38.707 INFO:teuthology.orchestra.run.trial173.stdout:ceph source packages 18 kB/s | 1.9 kB 00:00 2026-02-20T22:31:38.709 INFO:teuthology.orchestra.run.trial073.stdout:ceph source packages 18 kB/s | 1.9 kB 00:00 2026-02-20T22:31:40.065 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - BaseOS 6.6 MB/s | 8.9 MB 00:01 2026-02-20T22:31:40.353 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - BaseOS 5.4 MB/s | 8.9 MB 00:01 2026-02-20T22:31:43.253 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - AppStream 10 MB/s | 27 MB 00:02 2026-02-20T22:31:43.369 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-20T22:31:44.627 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - BaseOS 1.5 MB/s | 8.9 MB 00:05 2026-02-20T22:31:46.666 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - CRB 8.4 MB/s | 7.8 MB 00:00 2026-02-20T22:31:47.512 INFO:teuthology.orchestra.run.trial035.stdout:CentOS Stream 9 - Extras packages 170 kB/s | 20 kB 00:00 2026-02-20T22:31:48.776 INFO:teuthology.orchestra.run.trial035.stdout:Extra Packages for Enterprise Linux 17 MB/s | 20 MB 00:01 2026-02-20T22:31:51.951 INFO:teuthology.orchestra.run.trial035.stdout:lab-extras 3.0 MB/s | 50 kB 00:00 2026-02-20T22:31:53.142 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout: ceph-radosgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout:Upgrading: 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout: librados2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 3.5 M 2026-02-20T22:31:53.143 INFO:teuthology.orchestra.run.trial035.stdout: librbd1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.8 M 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: ceph-base x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.9 M 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: ceph-selinux x86_64 2:20.2.0-677.gf7870454.el9 ceph 25 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: libcephfs2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 869 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-20T22:31:53.144 INFO:teuthology.orchestra.run.trial035.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: libradosstriper1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 250 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: librgw2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.4 M 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: python3-ceph-argparse x86_64 2:20.2.0-677.gf7870454.el9 ceph 45 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: python3-ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 175 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: python3-cephfs x86_64 2:20.2.0-677.gf7870454.el9 ceph 163 k 2026-02-20T22:31:53.145 INFO:teuthology.orchestra.run.trial035.stdout: python3-rados x86_64 2:20.2.0-677.gf7870454.el9 ceph 323 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: python3-rbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 305 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: python3-rgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 99 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout:Installing weak dependencies: 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:31:53.146 INFO:teuthology.orchestra.run.trial035.stdout:Install 32 Packages 2026-02-20T22:31:53.147 INFO:teuthology.orchestra.run.trial035.stdout:Upgrade 2 Packages 2026-02-20T22:31:53.147 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:53.147 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 78 M 2026-02-20T22:31:53.147 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:31:54.026 INFO:teuthology.orchestra.run.trial035.stdout:(1/34): ceph-base-20.2.0-677.gf7870454.el9.x86_ 15 MB/s | 5.9 MB 00:00 2026-02-20T22:31:54.060 INFO:teuthology.orchestra.run.trial035.stdout:(2/34): ceph-selinux-20.2.0-677.gf7870454.el9.x 757 kB/s | 25 kB 00:00 2026-02-20T22:31:54.111 INFO:teuthology.orchestra.run.trial035.stdout:(3/34): libcephfs2-20.2.0-677.gf7870454.el9.x86 17 MB/s | 869 kB 00:00 2026-02-20T22:31:54.136 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - CRB 934 kB/s | 7.8 MB 00:08 2026-02-20T22:31:54.154 INFO:teuthology.orchestra.run.trial035.stdout:(4/34): libradosstriper1-20.2.0-677.gf7870454.e 5.7 MB/s | 250 kB 00:00 2026-02-20T22:31:54.271 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - AppStream 2.9 MB/s | 27 MB 00:09 2026-02-20T22:31:54.573 INFO:teuthology.orchestra.run.trial035.stdout:(5/34): librgw2-20.2.0-677.gf7870454.el9.x86_64 15 MB/s | 6.4 MB 00:00 2026-02-20T22:31:54.631 INFO:teuthology.orchestra.run.trial035.stdout:(6/34): python3-ceph-argparse-20.2.0-677.gf7870 780 kB/s | 45 kB 00:00 2026-02-20T22:31:54.690 INFO:teuthology.orchestra.run.trial035.stdout:(7/34): python3-ceph-common-20.2.0-677.gf787045 2.9 MB/s | 175 kB 00:00 2026-02-20T22:31:54.762 INFO:teuthology.orchestra.run.trial035.stdout:(8/34): ceph-common-20.2.0-677.gf7870454.el9.x8 21 MB/s | 24 MB 00:01 2026-02-20T22:31:54.763 INFO:teuthology.orchestra.run.trial035.stdout:(9/34): python3-cephfs-20.2.0-677.gf7870454.el9 2.2 MB/s | 163 kB 00:00 2026-02-20T22:31:54.799 INFO:teuthology.orchestra.run.trial035.stdout:(10/34): ceph-radosgw-20.2.0-677.gf7870454.el9. 20 MB/s | 24 MB 00:01 2026-02-20T22:31:54.800 INFO:teuthology.orchestra.run.trial035.stdout:(11/34): python3-rbd-20.2.0-677.gf7870454.el9.x 8.1 MB/s | 305 kB 00:00 2026-02-20T22:31:54.801 INFO:teuthology.orchestra.run.trial035.stdout:(12/34): python3-rados-20.2.0-677.gf7870454.el9 8.2 MB/s | 323 kB 00:00 2026-02-20T22:31:54.811 INFO:teuthology.orchestra.run.trial035.stdout:(13/34): python3-rgw-20.2.0-677.gf7870454.el9.x 8.0 MB/s | 99 kB 00:00 2026-02-20T22:31:54.816 INFO:teuthology.orchestra.run.trial035.stdout:(14/34): mailcap-2.1.49-5.el9.noarch.rpm 2.1 MB/s | 33 kB 00:00 2026-02-20T22:31:54.819 INFO:teuthology.orchestra.run.trial035.stdout:(15/34): pciutils-3.7.0-7.el9.x86_64.rpm 5.0 MB/s | 93 kB 00:00 2026-02-20T22:31:54.827 INFO:teuthology.orchestra.run.trial035.stdout:(16/34): libnbd-1.20.3-4.el9.x86_64.rpm 14 MB/s | 164 kB 00:00 2026-02-20T22:31:54.828 INFO:teuthology.orchestra.run.trial035.stdout:(17/34): boost-program-options-1.75.0-13.el9.x8 6.0 MB/s | 104 kB 00:00 2026-02-20T22:31:54.829 INFO:teuthology.orchestra.run.trial035.stdout:(18/34): libpmemobj-1.12.1-1.el9.x86_64.rpm 16 MB/s | 160 kB 00:00 2026-02-20T22:31:54.833 INFO:teuthology.orchestra.run.trial035.stdout:(19/34): librabbitmq-0.11.0-7.el9.x86_64.rpm 8.9 MB/s | 45 kB 00:00 2026-02-20T22:31:54.842 INFO:teuthology.orchestra.run.trial035.stdout:(20/34): librdkafka-1.6.1-102.el9.x86_64.rpm 49 MB/s | 662 kB 00:00 2026-02-20T22:31:54.843 INFO:teuthology.orchestra.run.trial035.stdout:(21/34): lttng-ust-2.12.0-6.el9.x86_64.rpm 21 MB/s | 292 kB 00:00 2026-02-20T22:31:54.843 INFO:teuthology.orchestra.run.trial035.stdout:(22/34): qatlib-25.08.0-2.el9.x86_64.rpm 23 MB/s | 240 kB 00:00 2026-02-20T22:31:54.846 INFO:teuthology.orchestra.run.trial035.stdout:(23/34): qatlib-service-25.08.0-2.el9.x86_64.rp 8.2 MB/s | 37 kB 00:00 2026-02-20T22:31:54.848 INFO:teuthology.orchestra.run.trial035.stdout:(24/34): qatzip-libs-1.3.1-1.el9.x86_64.rpm 14 MB/s | 66 kB 00:00 2026-02-20T22:31:54.962 INFO:teuthology.orchestra.run.trial035.stdout:(25/34): libarrow-doc-9.0.0-15.el9.noarch.rpm 218 kB/s | 25 kB 00:00 2026-02-20T22:31:55.018 INFO:teuthology.orchestra.run.trial173.stdout:CentOS Stream 9 - Extras packages 133 kB/s | 20 kB 00:00 2026-02-20T22:31:55.036 INFO:teuthology.orchestra.run.trial035.stdout:(26/34): liboath-2.6.12-1.el9.x86_64.rpm 654 kB/s | 49 kB 00:00 2026-02-20T22:31:55.084 INFO:teuthology.orchestra.run.trial035.stdout:(27/34): gperftools-libs-2.9.1-3.el9.x86_64.rpm 1.2 MB/s | 308 kB 00:00 2026-02-20T22:31:55.091 INFO:teuthology.orchestra.run.trial035.stdout:(28/34): libunwind-1.6.2-1.el9.x86_64.rpm 1.2 MB/s | 67 kB 00:00 2026-02-20T22:31:55.179 INFO:teuthology.orchestra.run.trial035.stdout:(29/34): re2-20211101-20.el9.x86_64.rpm 2.1 MB/s | 191 kB 00:00 2026-02-20T22:31:55.190 INFO:teuthology.orchestra.run.trial035.stdout:(30/34): parquet-libs-9.0.0-15.el9.x86_64.rpm 7.7 MB/s | 838 kB 00:00 2026-02-20T22:31:55.230 INFO:teuthology.orchestra.run.trial035.stdout:(31/34): libarrow-9.0.0-15.el9.x86_64.rpm 11 MB/s | 4.4 MB 00:00 2026-02-20T22:31:55.272 INFO:teuthology.orchestra.run.trial035.stdout:(32/34): librados2-20.2.0-677.gf7870454.el9.x86 43 MB/s | 3.5 MB 00:00 2026-02-20T22:31:55.306 INFO:teuthology.orchestra.run.trial035.stdout:(33/34): librbd1-20.2.0-677.gf7870454.el9.x86_6 37 MB/s | 2.8 MB 00:00 2026-02-20T22:31:55.325 INFO:teuthology.orchestra.run.trial035.stdout:(34/34): thrift-0.15.0-4.el9.x86_64.rpm 11 MB/s | 1.6 MB 00:00 2026-02-20T22:31:55.326 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:31:55.326 INFO:teuthology.orchestra.run.trial035.stdout:Total 36 MB/s | 78 MB 00:02 2026-02-20T22:31:55.413 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:31:55.430 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:31:55.430 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:31:55.601 INFO:teuthology.orchestra.run.trial173.stdout:Extra Packages for Enterprise Linux 39 MB/s | 20 MB 00:00 2026-02-20T22:31:55.705 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:31:55.705 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:31:56.040 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:31:56.052 INFO:teuthology.orchestra.run.trial035.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/36 2026-02-20T22:31:56.206 INFO:teuthology.orchestra.run.trial035.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/36 2026-02-20T22:31:56.210 INFO:teuthology.orchestra.run.trial035.stdout: Upgrading : librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:31:56.237 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:31:56.274 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:31:56.274 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:31:56.286 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:31:56.297 INFO:teuthology.orchestra.run.trial035.stdout: Installing : liboath-2.6.12-1.el9.x86_64 6/36 2026-02-20T22:31:56.299 INFO:teuthology.orchestra.run.trial035.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/36 2026-02-20T22:31:56.302 INFO:teuthology.orchestra.run.trial035.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/36 2026-02-20T22:31:56.307 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 9/36 2026-02-20T22:31:56.316 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 10/36 2026-02-20T22:31:56.328 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:31:56.328 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:31:56.342 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:31:56.381 INFO:teuthology.orchestra.run.trial035.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/36 2026-02-20T22:31:56.387 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/36 2026-02-20T22:31:56.393 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 15/36 2026-02-20T22:31:56.395 INFO:teuthology.orchestra.run.trial035.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 16/36 2026-02-20T22:31:56.400 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 17/36 2026-02-20T22:31:56.524 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 18/36 2026-02-20T22:31:56.525 INFO:teuthology.orchestra.run.trial035.stdout: Upgrading : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:31:56.552 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:31:56.557 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 20/36 2026-02-20T22:31:56.564 INFO:teuthology.orchestra.run.trial035.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 21/36 2026-02-20T22:31:56.844 INFO:teuthology.orchestra.run.trial035.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 22/36 2026-02-20T22:31:56.845 INFO:teuthology.orchestra.run.trial035.stdout: Installing : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:31:56.861 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:31:56.866 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 24/36 2026-02-20T22:31:56.872 INFO:teuthology.orchestra.run.trial035.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 25/36 2026-02-20T22:31:56.875 INFO:teuthology.orchestra.run.trial035.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 26/36 2026-02-20T22:31:56.875 INFO:teuthology.orchestra.run.trial035.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:31:56.893 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:31:56.897 INFO:teuthology.orchestra.run.trial035.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 28/36 2026-02-20T22:31:56.929 INFO:teuthology.orchestra.run.trial035.stdout: Installing : mailcap-2.1.49-5.el9.noarch 29/36 2026-02-20T22:31:56.931 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 30/36 2026-02-20T22:31:58.010 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:31:58.012 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:31:58.307 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:31:58.310 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:31:58.314 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - CRB 4.6 MB/s | 7.8 MB 00:01 2026-02-20T22:31:58.352 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:31:58.352 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-20T22:31:58.352 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-20T22:31:58.353 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:31:58.356 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:31:58.784 INFO:teuthology.orchestra.run.trial173.stdout:lab-extras 1.4 MB/s | 50 kB 00:00 2026-02-20T22:31:59.239 INFO:teuthology.orchestra.run.trial073.stdout:CentOS Stream 9 - Extras packages 98 kB/s | 20 kB 00:00 2026-02-20T22:31:59.987 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:31:59.988 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:31:59.988 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:31:59.988 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:31:59.988 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:31:59.988 INFO:teuthology.orchestra.run.trial173.stdout: ceph-radosgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:31:59.988 INFO:teuthology.orchestra.run.trial173.stdout:Upgrading: 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: librados2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 3.5 M 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: librbd1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.8 M 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: ceph-base x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.9 M 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: ceph-selinux x86_64 2:20.2.0-677.gf7870454.el9 ceph 25 k 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: libcephfs2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 869 k 2026-02-20T22:31:59.989 INFO:teuthology.orchestra.run.trial173.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: libradosstriper1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 250 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: librgw2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.4 M 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: python3-ceph-argparse x86_64 2:20.2.0-677.gf7870454.el9 ceph 45 k 2026-02-20T22:31:59.990 INFO:teuthology.orchestra.run.trial173.stdout: python3-ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 175 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: python3-cephfs x86_64 2:20.2.0-677.gf7870454.el9 ceph 163 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: python3-rados x86_64 2:20.2.0-677.gf7870454.el9 ceph 323 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: python3-rbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 305 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: python3-rgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 99 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout:Installing weak dependencies: 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:59.991 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:31:59.992 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:31:59.992 INFO:teuthology.orchestra.run.trial173.stdout:Install 32 Packages 2026-02-20T22:31:59.992 INFO:teuthology.orchestra.run.trial173.stdout:Upgrade 2 Packages 2026-02-20T22:31:59.992 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:31:59.992 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 78 M 2026-02-20T22:31:59.993 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:00.545 INFO:teuthology.orchestra.run.trial073.stdout:Extra Packages for Enterprise Linux 16 MB/s | 20 MB 00:01 2026-02-20T22:32:00.722 INFO:teuthology.orchestra.run.trial173.stdout:(1/34): ceph-base-20.2.0-677.gf7870454.el9.x86_ 12 MB/s | 5.9 MB 00:00 2026-02-20T22:32:00.765 INFO:teuthology.orchestra.run.trial173.stdout:(2/34): ceph-selinux-20.2.0-677.gf7870454.el9.x 589 kB/s | 25 kB 00:00 2026-02-20T22:32:00.859 INFO:teuthology.orchestra.run.trial173.stdout:(3/34): libcephfs2-20.2.0-677.gf7870454.el9.x86 9.0 MB/s | 869 kB 00:00 2026-02-20T22:32:00.904 INFO:teuthology.orchestra.run.trial173.stdout:(4/34): libradosstriper1-20.2.0-677.gf7870454.e 5.5 MB/s | 250 kB 00:00 2026-02-20T22:32:01.363 INFO:teuthology.orchestra.run.trial173.stdout:(5/34): ceph-radosgw-20.2.0-677.gf7870454.el9.x 21 MB/s | 24 MB 00:01 2026-02-20T22:32:01.396 INFO:teuthology.orchestra.run.trial173.stdout:(6/34): ceph-common-20.2.0-677.gf7870454.el9.x8 20 MB/s | 24 MB 00:01 2026-02-20T22:32:01.404 INFO:teuthology.orchestra.run.trial173.stdout:(7/34): librgw2-20.2.0-677.gf7870454.el9.x86_64 13 MB/s | 6.4 MB 00:00 2026-02-20T22:32:01.404 INFO:teuthology.orchestra.run.trial173.stdout:(8/34): python3-ceph-argparse-20.2.0-677.gf7870 1.1 MB/s | 45 kB 00:00 2026-02-20T22:32:01.416 INFO:teuthology.orchestra.run.trial173.stdout:(9/34): python3-cephfs-20.2.0-677.gf7870454.el9 13 MB/s | 163 kB 00:00 2026-02-20T22:32:01.417 INFO:teuthology.orchestra.run.trial173.stdout:(10/34): python3-ceph-common-20.2.0-677.gf78704 13 MB/s | 175 kB 00:00 2026-02-20T22:32:01.418 INFO:teuthology.orchestra.run.trial173.stdout:(11/34): python3-rados-20.2.0-677.gf7870454.el9 23 MB/s | 323 kB 00:00 2026-02-20T22:32:01.428 INFO:teuthology.orchestra.run.trial173.stdout:(12/34): python3-rbd-20.2.0-677.gf7870454.el9.x 24 MB/s | 305 kB 00:00 2026-02-20T22:32:01.429 INFO:teuthology.orchestra.run.trial173.stdout:(13/34): python3-rgw-20.2.0-677.gf7870454.el9.x 7.9 MB/s | 99 kB 00:00 2026-02-20T22:32:01.477 INFO:teuthology.orchestra.run.trial173.stdout:(14/34): boost-program-options-1.75.0-13.el9.x8 2.1 MB/s | 104 kB 00:00 2026-02-20T22:32:01.495 INFO:teuthology.orchestra.run.trial173.stdout:(15/34): libnbd-1.20.3-4.el9.x86_64.rpm 9.0 MB/s | 164 kB 00:00 2026-02-20T22:32:01.503 INFO:teuthology.orchestra.run.trial173.stdout:(16/34): mailcap-2.1.49-5.el9.noarch.rpm 391 kB/s | 33 kB 00:00 2026-02-20T22:32:01.509 INFO:teuthology.orchestra.run.trial173.stdout:(17/34): libpmemobj-1.12.1-1.el9.x86_64.rpm 11 MB/s | 160 kB 00:00 2026-02-20T22:32:01.533 INFO:teuthology.orchestra.run.trial173.stdout:(18/34): librdkafka-1.6.1-102.el9.x86_64.rpm 28 MB/s | 662 kB 00:00 2026-02-20T22:32:01.534 INFO:teuthology.orchestra.run.trial173.stdout:(19/34): pciutils-3.7.0-7.el9.x86_64.rpm 884 kB/s | 93 kB 00:00 2026-02-20T22:32:01.537 INFO:teuthology.orchestra.run.trial173.stdout:(20/34): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.3 MB/s | 45 kB 00:00 2026-02-20T22:32:01.546 INFO:teuthology.orchestra.run.trial173.stdout:(21/34): lttng-ust-2.12.0-6.el9.x86_64.rpm 21 MB/s | 292 kB 00:00 2026-02-20T22:32:01.548 INFO:teuthology.orchestra.run.trial173.stdout:(22/34): qatlib-service-25.08.0-2.el9.x86_64.rp 3.2 MB/s | 37 kB 00:00 2026-02-20T22:32:01.557 INFO:teuthology.orchestra.run.trial173.stdout:(23/34): qatzip-libs-1.3.1-1.el9.x86_64.rpm 5.9 MB/s | 66 kB 00:00 2026-02-20T22:32:01.584 INFO:teuthology.orchestra.run.trial173.stdout:(24/34): qatlib-25.08.0-2.el9.x86_64.rpm 4.7 MB/s | 240 kB 00:00 2026-02-20T22:32:01.802 INFO:teuthology.orchestra.run.trial173.stdout:(25/34): libarrow-doc-9.0.0-15.el9.noarch.rpm 114 kB/s | 25 kB 00:00 2026-02-20T22:32:01.989 INFO:teuthology.orchestra.run.trial173.stdout:(26/34): gperftools-libs-2.9.1-3.el9.x86_64.rpm 698 kB/s | 308 kB 00:00 2026-02-20T22:32:02.090 INFO:teuthology.orchestra.run.trial173.stdout:(27/34): liboath-2.6.12-1.el9.x86_64.rpm 169 kB/s | 49 kB 00:00 2026-02-20T22:32:02.269 INFO:teuthology.orchestra.run.trial173.stdout:(28/34): libunwind-1.6.2-1.el9.x86_64.rpm 240 kB/s | 67 kB 00:00 2026-02-20T22:32:02.548 INFO:teuthology.orchestra.run.trial173.stdout:(29/34): libarrow-9.0.0-15.el9.x86_64.rpm 4.5 MB/s | 4.4 MB 00:00 2026-02-20T22:32:02.622 INFO:teuthology.orchestra.run.trial173.stdout:(30/34): re2-20211101-20.el9.x86_64.rpm 543 kB/s | 191 kB 00:00 2026-02-20T22:32:02.663 INFO:teuthology.orchestra.run.trial173.stdout:(31/34): parquet-libs-9.0.0-15.el9.x86_64.rpm 1.4 MB/s | 838 kB 00:00 2026-02-20T22:32:02.747 INFO:teuthology.orchestra.run.trial173.stdout:(32/34): librados2-20.2.0-677.gf7870454.el9.x86 28 MB/s | 3.5 MB 00:00 2026-02-20T22:32:02.776 INFO:teuthology.orchestra.run.trial173.stdout:(33/34): librbd1-20.2.0-677.gf7870454.el9.x86_6 25 MB/s | 2.8 MB 00:00 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /sys 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /proc 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /mnt 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /var/tmp 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /home 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /root 2026-02-20T22:32:02.886 INFO:teuthology.orchestra.run.trial035.stdout:skipping the directory /tmp 2026-02-20T22:32:02.887 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:03.199 INFO:teuthology.orchestra.run.trial173.stdout:(34/34): thrift-0.15.0-4.el9.x86_64.rpm 2.4 MB/s | 1.6 MB 00:00 2026-02-20T22:32:03.202 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:03.202 INFO:teuthology.orchestra.run.trial173.stdout:Total 24 MB/s | 78 MB 00:03 2026-02-20T22:32:03.290 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:32:03.308 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:32:03.308 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:32:03.584 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:32:03.584 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:32:03.692 INFO:teuthology.orchestra.run.trial073.stdout:lab-extras 2.6 MB/s | 50 kB 00:00 2026-02-20T22:32:03.916 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:32:03.917 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:32:03.927 INFO:teuthology.orchestra.run.trial173.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/36 2026-02-20T22:32:03.940 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:32:03.940 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:03.940 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-20T22:32:03.940 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:32:03.940 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:32:03.941 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:03.942 INFO:teuthology.orchestra.run.trial035.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:32:03.954 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:32:03.954 INFO:teuthology.orchestra.run.trial035.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:04.010 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:04.010 INFO:teuthology.orchestra.run.trial035.stdout:Creating group 'qat' with GID 992. 2026-02-20T22:32:04.010 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:04.080 INFO:teuthology.orchestra.run.trial173.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/36 2026-02-20T22:32:04.085 INFO:teuthology.orchestra.run.trial173.stdout: Upgrading : librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:04.116 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:04.153 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:32:04.154 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:04.166 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:04.174 INFO:teuthology.orchestra.run.trial173.stdout: Installing : liboath-2.6.12-1.el9.x86_64 6/36 2026-02-20T22:32:04.176 INFO:teuthology.orchestra.run.trial173.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/36 2026-02-20T22:32:04.179 INFO:teuthology.orchestra.run.trial173.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/36 2026-02-20T22:32:04.183 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 9/36 2026-02-20T22:32:04.192 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 10/36 2026-02-20T22:32:04.204 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:32:04.205 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:04.218 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:04.251 INFO:teuthology.orchestra.run.trial173.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/36 2026-02-20T22:32:04.255 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/36 2026-02-20T22:32:04.263 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 15/36 2026-02-20T22:32:04.265 INFO:teuthology.orchestra.run.trial173.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 16/36 2026-02-20T22:32:04.270 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 17/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 1/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 6/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 7/36 2026-02-20T22:32:04.330 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 8/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 9/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 10/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 13/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 14/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 15/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 16/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 17/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 18/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 19/36 2026-02-20T22:32:04.331 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 20/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 21/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 22/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 23/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 24/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 25/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 26/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 27/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 28/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 29/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 30/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : re2-1:20211101-20.el9.x86_64 31/36 2026-02-20T22:32:04.332 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 32/36 2026-02-20T22:32:04.333 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librados2-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:04.333 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 34/36 2026-02-20T22:32:04.333 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 35/36 2026-02-20T22:32:04.391 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:04.391 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:04.391 INFO:teuthology.orchestra.run.trial035.stdout:Upgraded: 2026-02-20T22:32:04.391 INFO:teuthology.orchestra.run.trial035.stdout: librados2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-20T22:32:04.392 INFO:teuthology.orchestra.run.trial035.stdout: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-20T22:32:04.393 INFO:teuthology.orchestra.run.trial035.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: re2-1:20211101-20.el9.x86_64 2026-02-20T22:32:04.394 INFO:teuthology.orchestra.run.trial035.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-20T22:32:04.395 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:04.395 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:04.396 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 18/36 2026-02-20T22:32:04.397 INFO:teuthology.orchestra.run.trial173.stdout: Upgrading : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:32:04.425 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:32:04.428 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 20/36 2026-02-20T22:32:04.434 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-test 2026-02-20T22:32:04.435 INFO:teuthology.orchestra.run.trial173.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 21/36 2026-02-20T22:32:04.716 INFO:teuthology.orchestra.run.trial173.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 22/36 2026-02-20T22:32:04.717 INFO:teuthology.orchestra.run.trial173.stdout: Installing : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:32:04.733 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:32:04.737 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 24/36 2026-02-20T22:32:04.740 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:13 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:04.742 INFO:teuthology.orchestra.run.trial173.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 25/36 2026-02-20T22:32:04.744 INFO:teuthology.orchestra.run.trial173.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 26/36 2026-02-20T22:32:04.744 INFO:teuthology.orchestra.run.trial173.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:32:04.761 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:32:04.764 INFO:teuthology.orchestra.run.trial173.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 28/36 2026-02-20T22:32:04.796 INFO:teuthology.orchestra.run.trial173.stdout: Installing : mailcap-2.1.49-5.el9.noarch 29/36 2026-02-20T22:32:04.797 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 30/36 2026-02-20T22:32:04.821 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:04.822 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:04.822 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout: ceph-test x86_64 2:20.2.0-677.gf7870454.el9 ceph 84 M 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout: libcephsqlite x86_64 2:20.2.0-677.gf7870454.el9 ceph 164 k 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:04.823 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:04.824 INFO:teuthology.orchestra.run.trial035.stdout:Install 5 Packages 2026-02-20T22:32:04.824 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:04.824 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 85 M 2026-02-20T22:32:04.824 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 365 M 2026-02-20T22:32:04.824 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:04.889 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout: ceph-radosgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout:Upgrading: 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout: librados2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 3.5 M 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout: librbd1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.8 M 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:04.891 INFO:teuthology.orchestra.run.trial073.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: ceph-base x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.9 M 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: ceph-selinux x86_64 2:20.2.0-677.gf7870454.el9 ceph 25 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: libcephfs2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 869 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-20T22:32:04.892 INFO:teuthology.orchestra.run.trial073.stdout: libradosstriper1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 250 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: librgw2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.4 M 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: python3-ceph-argparse x86_64 2:20.2.0-677.gf7870454.el9 ceph 45 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: python3-ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 175 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: python3-cephfs x86_64 2:20.2.0-677.gf7870454.el9 ceph 163 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: python3-rados x86_64 2:20.2.0-677.gf7870454.el9 ceph 323 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: python3-rbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 305 k 2026-02-20T22:32:04.893 INFO:teuthology.orchestra.run.trial073.stdout: python3-rgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 99 k 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout:Installing weak dependencies: 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout:Install 32 Packages 2026-02-20T22:32:04.894 INFO:teuthology.orchestra.run.trial073.stdout:Upgrade 2 Packages 2026-02-20T22:32:04.895 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:04.895 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 78 M 2026-02-20T22:32:04.895 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:04.999 INFO:teuthology.orchestra.run.trial035.stdout:(1/5): libcephsqlite-20.2.0-677.gf7870454.el9.x 1.8 MB/s | 164 kB 00:00 2026-02-20T22:32:05.068 INFO:teuthology.orchestra.run.trial035.stdout:(2/5): libxslt-1.1.34-12.el9.x86_64.rpm 1.4 MB/s | 233 kB 00:00 2026-02-20T22:32:05.097 INFO:teuthology.orchestra.run.trial035.stdout:(3/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.1 MB/s | 64 kB 00:00 2026-02-20T22:32:05.162 INFO:teuthology.orchestra.run.trial035.stdout:(4/5): socat-1.7.4.1-8.el9.x86_64.rpm 1.8 MB/s | 303 kB 00:00 2026-02-20T22:32:05.871 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:32:05.873 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:32:06.167 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:32:06.170 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:32:06.210 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:32:06.210 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-20T22:32:06.210 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-20T22:32:06.210 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:06.214 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:06.654 INFO:teuthology.orchestra.run.trial073.stdout:(1/34): ceph-base-20.2.0-677.gf7870454.el9.x86_ 4.4 MB/s | 5.9 MB 00:01 2026-02-20T22:32:06.665 INFO:teuthology.orchestra.run.trial073.stdout:(2/34): ceph-selinux-20.2.0-677.gf7870454.el9.x 2.1 MB/s | 25 kB 00:00 2026-02-20T22:32:06.696 INFO:teuthology.orchestra.run.trial073.stdout:(3/34): libcephfs2-20.2.0-677.gf7870454.el9.x86 28 MB/s | 869 kB 00:00 2026-02-20T22:32:06.707 INFO:teuthology.orchestra.run.trial035.stdout:(5/5): ceph-test-20.2.0-677.gf7870454.el9.x86_6 47 MB/s | 84 MB 00:01 2026-02-20T22:32:06.708 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:06.709 INFO:teuthology.orchestra.run.trial035.stdout:Total 45 MB/s | 85 MB 00:01 2026-02-20T22:32:06.709 INFO:teuthology.orchestra.run.trial073.stdout:(4/34): libradosstriper1-20.2.0-677.gf7870454.e 18 MB/s | 250 kB 00:00 2026-02-20T22:32:06.735 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:06.744 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:06.744 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:06.957 INFO:teuthology.orchestra.run.trial073.stdout:(5/34): librgw2-20.2.0-677.gf7870454.el9.x86_64 26 MB/s | 6.4 MB 00:00 2026-02-20T22:32:06.974 INFO:teuthology.orchestra.run.trial073.stdout:(6/34): python3-ceph-argparse-20.2.0-677.gf7870 2.6 MB/s | 45 kB 00:00 2026-02-20T22:32:06.995 INFO:teuthology.orchestra.run.trial073.stdout:(7/34): python3-ceph-common-20.2.0-677.gf787045 8.3 MB/s | 175 kB 00:00 2026-02-20T22:32:07.015 INFO:teuthology.orchestra.run.trial073.stdout:(8/34): python3-cephfs-20.2.0-677.gf7870454.el9 7.7 MB/s | 163 kB 00:00 2026-02-20T22:32:07.032 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:07.032 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:07.040 INFO:teuthology.orchestra.run.trial073.stdout:(9/34): python3-rados-20.2.0-677.gf7870454.el9. 13 MB/s | 323 kB 00:00 2026-02-20T22:32:07.068 INFO:teuthology.orchestra.run.trial073.stdout:(10/34): python3-rbd-20.2.0-677.gf7870454.el9.x 11 MB/s | 305 kB 00:00 2026-02-20T22:32:07.091 INFO:teuthology.orchestra.run.trial073.stdout:(11/34): python3-rgw-20.2.0-677.gf7870454.el9.x 4.3 MB/s | 99 kB 00:00 2026-02-20T22:32:07.349 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:07.355 INFO:teuthology.orchestra.run.trial035.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-20T22:32:07.361 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-20T22:32:07.369 INFO:teuthology.orchestra.run.trial035.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-20T22:32:07.369 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:32:07.540 INFO:teuthology.orchestra.run.trial073.stdout:(12/34): ceph-radosgw-20.2.0-677.gf7870454.el9. 11 MB/s | 24 MB 00:02 2026-02-20T22:32:07.575 INFO:teuthology.orchestra.run.trial073.stdout:(13/34): ceph-common-20.2.0-677.gf7870454.el9.x 11 MB/s | 24 MB 00:02 2026-02-20T22:32:07.653 INFO:teuthology.orchestra.run.trial073.stdout:(14/34): mailcap-2.1.49-5.el9.noarch.rpm 59 kB/s | 33 kB 00:00 2026-02-20T22:32:07.928 INFO:teuthology.orchestra.run.trial073.stdout:(15/34): boost-program-options-1.75.0-13.el9.x8 294 kB/s | 104 kB 00:00 2026-02-20T22:32:08.173 INFO:teuthology.orchestra.run.trial073.stdout:(16/34): pciutils-3.7.0-7.el9.x86_64.rpm 147 kB/s | 93 kB 00:00 2026-02-20T22:32:08.242 INFO:teuthology.orchestra.run.trial073.stdout:(17/34): libpmemobj-1.12.1-1.el9.x86_64.rpm 511 kB/s | 160 kB 00:00 2026-02-20T22:32:08.331 INFO:teuthology.orchestra.run.trial073.stdout:(18/34): librabbitmq-0.11.0-7.el9.x86_64.rpm 285 kB/s | 45 kB 00:00 2026-02-20T22:32:08.368 INFO:teuthology.orchestra.run.trial073.stdout:(19/34): libnbd-1.20.3-4.el9.x86_64.rpm 229 kB/s | 164 kB 00:00 2026-02-20T22:32:08.762 INFO:teuthology.orchestra.run.trial073.stdout:(20/34): qatlib-25.08.0-2.el9.x86_64.rpm 608 kB/s | 240 kB 00:00 2026-02-20T22:32:08.800 INFO:teuthology.orchestra.run.trial073.stdout:(21/34): lttng-ust-2.12.0-6.el9.x86_64.rpm 624 kB/s | 292 kB 00:00 2026-02-20T22:32:08.921 INFO:teuthology.orchestra.run.trial073.stdout:(22/34): qatlib-service-25.08.0-2.el9.x86_64.rp 233 kB/s | 37 kB 00:00 2026-02-20T22:32:08.959 INFO:teuthology.orchestra.run.trial073.stdout:(23/34): qatzip-libs-1.3.1-1.el9.x86_64.rpm 418 kB/s | 66 kB 00:00 2026-02-20T22:32:09.003 INFO:teuthology.orchestra.run.trial073.stdout:(24/34): gperftools-libs-2.9.1-3.el9.x86_64.rpm 3.7 MB/s | 308 kB 00:00 2026-02-20T22:32:09.019 INFO:teuthology.orchestra.run.trial073.stdout:(25/34): libarrow-doc-9.0.0-15.el9.noarch.rpm 1.5 MB/s | 25 kB 00:00 2026-02-20T22:32:09.035 INFO:teuthology.orchestra.run.trial073.stdout:(26/34): liboath-2.6.12-1.el9.x86_64.rpm 3.0 MB/s | 49 kB 00:00 2026-02-20T22:32:09.052 INFO:teuthology.orchestra.run.trial073.stdout:(27/34): libarrow-9.0.0-15.el9.x86_64.rpm 47 MB/s | 4.4 MB 00:00 2026-02-20T22:32:09.052 INFO:teuthology.orchestra.run.trial073.stdout:(28/34): libunwind-1.6.2-1.el9.x86_64.rpm 3.7 MB/s | 67 kB 00:00 2026-02-20T22:32:09.075 INFO:teuthology.orchestra.run.trial073.stdout:(29/34): re2-20211101-20.el9.x86_64.rpm 8.4 MB/s | 191 kB 00:00 2026-02-20T22:32:09.101 INFO:teuthology.orchestra.run.trial073.stdout:(30/34): librdkafka-1.6.1-102.el9.x86_64.rpm 772 kB/s | 662 kB 00:00 2026-02-20T22:32:09.158 INFO:teuthology.orchestra.run.trial073.stdout:(31/34): parquet-libs-9.0.0-15.el9.x86_64.rpm 7.7 MB/s | 838 kB 00:00 2026-02-20T22:32:09.228 INFO:teuthology.orchestra.run.trial073.stdout:(32/34): librados2-20.2.0-677.gf7870454.el9.x86 28 MB/s | 3.5 MB 00:00 2026-02-20T22:32:09.266 INFO:teuthology.orchestra.run.trial073.stdout:(33/34): librbd1-20.2.0-677.gf7870454.el9.x86_6 26 MB/s | 2.8 MB 00:00 2026-02-20T22:32:09.463 INFO:teuthology.orchestra.run.trial073.stdout:(34/34): thrift-0.15.0-4.el9.x86_64.rpm 4.1 MB/s | 1.6 MB 00:00 2026-02-20T22:32:09.470 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:09.470 INFO:teuthology.orchestra.run.trial073.stdout:Total 17 MB/s | 78 MB 00:04 2026-02-20T22:32:09.554 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:09.571 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:09.572 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:09.847 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:09.847 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:10.182 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:10.193 INFO:teuthology.orchestra.run.trial073.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/36 2026-02-20T22:32:10.346 INFO:teuthology.orchestra.run.trial073.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/36 2026-02-20T22:32:10.352 INFO:teuthology.orchestra.run.trial073.stdout: Upgrading : librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:10.379 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:10.415 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:32:10.416 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:10.428 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:10.437 INFO:teuthology.orchestra.run.trial073.stdout: Installing : liboath-2.6.12-1.el9.x86_64 6/36 2026-02-20T22:32:10.440 INFO:teuthology.orchestra.run.trial073.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/36 2026-02-20T22:32:10.444 INFO:teuthology.orchestra.run.trial073.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/36 2026-02-20T22:32:10.448 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 9/36 2026-02-20T22:32:10.457 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 10/36 2026-02-20T22:32:10.468 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:32:10.469 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:10.483 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:10.521 INFO:teuthology.orchestra.run.trial073.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/36 2026-02-20T22:32:10.525 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/36 2026-02-20T22:32:10.531 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 15/36 2026-02-20T22:32:10.533 INFO:teuthology.orchestra.run.trial073.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 16/36 2026-02-20T22:32:10.538 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 17/36 2026-02-20T22:32:10.660 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 18/36 2026-02-20T22:32:10.661 INFO:teuthology.orchestra.run.trial073.stdout: Upgrading : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:32:10.688 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:32:10.691 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 20/36 2026-02-20T22:32:10.698 INFO:teuthology.orchestra.run.trial073.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 21/36 2026-02-20T22:32:10.788 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:10.788 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /sys 2026-02-20T22:32:10.788 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /proc 2026-02-20T22:32:10.788 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /mnt 2026-02-20T22:32:10.788 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /var/tmp 2026-02-20T22:32:10.789 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /home 2026-02-20T22:32:10.789 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /root 2026-02-20T22:32:10.789 INFO:teuthology.orchestra.run.trial173.stdout:skipping the directory /tmp 2026-02-20T22:32:10.789 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:10.978 INFO:teuthology.orchestra.run.trial073.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 22/36 2026-02-20T22:32:10.979 INFO:teuthology.orchestra.run.trial073.stdout: Installing : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:32:10.996 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:32:11.002 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 24/36 2026-02-20T22:32:11.009 INFO:teuthology.orchestra.run.trial073.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 25/36 2026-02-20T22:32:11.012 INFO:teuthology.orchestra.run.trial073.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 26/36 2026-02-20T22:32:11.012 INFO:teuthology.orchestra.run.trial073.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:32:11.031 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:32:11.034 INFO:teuthology.orchestra.run.trial073.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 28/36 2026-02-20T22:32:11.065 INFO:teuthology.orchestra.run.trial073.stdout: Installing : mailcap-2.1.49-5.el9.noarch 29/36 2026-02-20T22:32:11.067 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 30/36 2026-02-20T22:32:11.092 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:32:11.110 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:32:11.445 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:32:11.446 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 1/5 2026-02-20T22:32:11.446 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2/5 2026-02-20T22:32:11.446 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-20T22:32:11.446 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-20T22:32:11.500 INFO:teuthology.orchestra.run.trial035.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-20T22:32:11.501 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:11.501 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:11.538 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph 2026-02-20T22:32:11.812 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:32:11.836 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:32:11.837 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:11.837 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-20T22:32:11.837 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:32:11.837 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:32:11.837 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:11.838 INFO:teuthology.orchestra.run.trial173.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:32:11.839 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:20 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:11.851 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:32:11.851 INFO:teuthology.orchestra.run.trial173.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:11.908 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:11.908 INFO:teuthology.orchestra.run.trial173.stdout:Creating group 'qat' with GID 992. 2026-02-20T22:32:11.908 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:11.923 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:11.924 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:11.924 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:11.924 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ceph x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.5 k 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mds x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.3 M 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr x86_64 2:20.2.0-677.gf7870454.el9 ceph 961 k 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-modules-core noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 290 k 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mon x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.0 M 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ceph-osd x86_64 2:20.2.0-677.gf7870454.el9 ceph 17 M 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-20T22:32:11.925 INFO:teuthology.orchestra.run.trial035.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-20T22:32:11.926 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-20T22:32:11.927 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:11.928 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:11.929 INFO:teuthology.orchestra.run.trial035.stdout:Install 39 Packages 2026-02-20T22:32:11.929 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:11.929 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 30 M 2026-02-20T22:32:11.929 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 99 M 2026-02-20T22:32:11.930 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:12.139 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:32:12.141 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 1/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 6/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 7/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 8/36 2026-02-20T22:32:12.249 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 9/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 10/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 13/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 14/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 15/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 16/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 17/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 18/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 19/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 20/36 2026-02-20T22:32:12.250 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 21/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 22/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 23/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 24/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 25/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 26/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 27/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 28/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 29/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 30/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : re2-1:20211101-20.el9.x86_64 31/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 32/36 2026-02-20T22:32:12.251 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librados2-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:12.252 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 34/36 2026-02-20T22:32:12.252 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 35/36 2026-02-20T22:32:12.262 INFO:teuthology.orchestra.run.trial035.stdout:(1/39): ceph-20.2.0-677.gf7870454.el9.x86_64.rp 126 kB/s | 6.5 kB 00:00 2026-02-20T22:32:12.310 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:12.310 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:12.310 INFO:teuthology.orchestra.run.trial173.stdout:Upgraded: 2026-02-20T22:32:12.310 INFO:teuthology.orchestra.run.trial173.stdout: librados2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-20T22:32:12.311 INFO:teuthology.orchestra.run.trial173.stdout: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-20T22:32:12.312 INFO:teuthology.orchestra.run.trial173.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: re2-1:20211101-20.el9.x86_64 2026-02-20T22:32:12.313 INFO:teuthology.orchestra.run.trial173.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-20T22:32:12.314 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:12.314 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:12.351 INFO:teuthology.orchestra.run.trial035.stdout:(2/39): ceph-mgr-20.2.0-677.gf7870454.el9.x86_6 6.7 MB/s | 961 kB 00:00 2026-02-20T22:32:12.353 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-test 2026-02-20T22:32:12.375 INFO:teuthology.orchestra.run.trial035.stdout:(3/39): ceph-mds-20.2.0-677.gf7870454.el9.x86_6 14 MB/s | 2.3 MB 00:00 2026-02-20T22:32:12.413 INFO:teuthology.orchestra.run.trial035.stdout:(4/39): ceph-mgr-modules-core-20.2.0-677.gf7870 7.5 MB/s | 290 kB 00:00 2026-02-20T22:32:12.437 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:32:12.440 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:32:12.476 INFO:teuthology.orchestra.run.trial035.stdout:(5/39): ledmon-libs-1.1.0-3.el9.x86_64.rpm 640 kB/s | 40 kB 00:00 2026-02-20T22:32:12.478 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:32:12.478 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-20T22:32:12.478 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-20T22:32:12.478 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:12.482 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:12.499 INFO:teuthology.orchestra.run.trial035.stdout:(6/39): libconfig-1.7.2-9.el9.x86_64.rpm 3.2 MB/s | 72 kB 00:00 2026-02-20T22:32:12.512 INFO:teuthology.orchestra.run.trial035.stdout:(7/39): ceph-mon-20.2.0-677.gf7870454.el9.x86_6 20 MB/s | 5.0 MB 00:00 2026-02-20T22:32:12.543 INFO:teuthology.orchestra.run.trial035.stdout:(8/39): python3-cffi-1.14.5-5.el9.x86_64.rpm 5.5 MB/s | 253 kB 00:00 2026-02-20T22:32:12.567 INFO:teuthology.orchestra.run.trial035.stdout:(9/39): python3-ply-3.11-14.el9.noarch.rpm 4.5 MB/s | 106 kB 00:00 2026-02-20T22:32:12.591 INFO:teuthology.orchestra.run.trial035.stdout:(10/39): python3-pycparser-2.20-6.el9.noarch.rp 5.5 MB/s | 135 kB 00:00 2026-02-20T22:32:12.615 INFO:teuthology.orchestra.run.trial035.stdout:(11/39): python3-requests-2.25.1-10.el9.noarch. 5.3 MB/s | 126 kB 00:00 2026-02-20T22:32:12.639 INFO:teuthology.orchestra.run.trial035.stdout:(12/39): python3-urllib3-1.26.5-7.el9.noarch.rp 8.8 MB/s | 218 kB 00:00 2026-02-20T22:32:12.656 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:14 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:12.659 INFO:teuthology.orchestra.run.trial035.stdout:(13/39): python3-cryptography-36.0.1-5.el9.x86_ 8.4 MB/s | 1.2 MB 00:00 2026-02-20T22:32:12.663 INFO:teuthology.orchestra.run.trial035.stdout:(14/39): unzip-6.0-59.el9.x86_64.rpm 7.3 MB/s | 182 kB 00:00 2026-02-20T22:32:12.683 INFO:teuthology.orchestra.run.trial035.stdout:(15/39): zip-3.0-35.el9.x86_64.rpm 11 MB/s | 266 kB 00:00 2026-02-20T22:32:12.740 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:12.741 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:12.741 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:32:12.741 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:12.741 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:32:12.741 INFO:teuthology.orchestra.run.trial173.stdout: ceph-test x86_64 2:20.2.0-677.gf7870454.el9 ceph 84 M 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout: libcephsqlite x86_64 2:20.2.0-677.gf7870454.el9 ceph 164 k 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout:Install 5 Packages 2026-02-20T22:32:12.742 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:12.743 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 85 M 2026-02-20T22:32:12.743 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 365 M 2026-02-20T22:32:12.743 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:12.751 INFO:teuthology.orchestra.run.trial035.stdout:(16/39): ceph-osd-20.2.0-677.gf7870454.el9.x86_ 42 MB/s | 17 MB 00:00 2026-02-20T22:32:13.112 INFO:teuthology.orchestra.run.trial173.stdout:(1/5): libxslt-1.1.34-12.el9.x86_64.rpm 3.5 MB/s | 233 kB 00:00 2026-02-20T22:32:13.132 INFO:teuthology.orchestra.run.trial173.stdout:(2/5): libcephsqlite-20.2.0-677.gf7870454.el9.x 1.9 MB/s | 164 kB 00:00 2026-02-20T22:32:13.133 INFO:teuthology.orchestra.run.trial173.stdout:(3/5): socat-1.7.4.1-8.el9.x86_64.rpm 14 MB/s | 303 kB 00:00 2026-02-20T22:32:13.171 INFO:teuthology.orchestra.run.trial173.stdout:(4/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.6 MB/s | 64 kB 00:00 2026-02-20T22:32:13.359 INFO:teuthology.orchestra.run.trial035.stdout:(17/39): lua-5.4.4-4.el9.x86_64.rpm 279 kB/s | 188 kB 00:00 2026-02-20T22:32:13.400 INFO:teuthology.orchestra.run.trial035.stdout:(18/39): python3-libstoragemgmt-1.10.1-1.el9.x8 272 kB/s | 177 kB 00:00 2026-02-20T22:32:13.418 INFO:teuthology.orchestra.run.trial035.stdout:(19/39): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 326 kB/s | 246 kB 00:00 2026-02-20T22:32:13.465 INFO:teuthology.orchestra.run.trial035.stdout:(20/39): lua-devel-5.4.4-4.el9.x86_64.rpm 483 kB/s | 22 kB 00:00 2026-02-20T22:32:13.500 INFO:teuthology.orchestra.run.trial035.stdout:(21/39): python3-toml-0.10.2-6.el9.noarch.rpm 418 kB/s | 42 kB 00:00 2026-02-20T22:32:13.538 INFO:teuthology.orchestra.run.trial035.stdout:(22/39): python3-packaging-20.9-5.el9.noarch.rp 431 kB/s | 77 kB 00:00 2026-02-20T22:32:13.584 INFO:teuthology.orchestra.run.trial035.stdout:(23/39): python3-autocommand-2.2.2-8.el9.noarch 348 kB/s | 29 kB 00:00 2026-02-20T22:32:13.662 INFO:teuthology.orchestra.run.trial035.stdout:(24/39): luarocks-3.9.2-5.el9.noarch.rpm 769 kB/s | 151 kB 00:00 2026-02-20T22:32:13.662 INFO:teuthology.orchestra.run.trial035.stdout:(25/39): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 560 kB/s | 43 kB 00:00 2026-02-20T22:32:13.679 INFO:teuthology.orchestra.run.trial035.stdout:(26/39): python3-backports-tarfile-1.2.0-1.el9. 427 kB/s | 60 kB 00:00 2026-02-20T22:32:13.688 INFO:teuthology.orchestra.run.trial035.stdout:(27/39): python3-cheroot-10.0.1-4.el9.noarch.rp 6.5 MB/s | 173 kB 00:00 2026-02-20T22:32:13.733 INFO:teuthology.orchestra.run.trial035.stdout:(28/39): python3-cherrypy-18.6.1-2.el9.noarch.r 4.9 MB/s | 358 kB 00:00 2026-02-20T22:32:13.748 INFO:teuthology.orchestra.run.trial035.stdout:(29/39): python3-jaraco-8.2.1-3.el9.noarch.rpm 155 kB/s | 11 kB 00:00 2026-02-20T22:32:13.751 INFO:teuthology.orchestra.run.trial035.stdout:(30/39): python3-jaraco-classes-3.2.1-5.el9.noa 280 kB/s | 18 kB 00:00 2026-02-20T22:32:13.771 INFO:teuthology.orchestra.run.trial035.stdout:(31/39): python3-jaraco-collections-3.0.0-8.el9 619 kB/s | 23 kB 00:00 2026-02-20T22:32:13.797 INFO:teuthology.orchestra.run.trial035.stdout:(32/39): python3-jaraco-context-6.0.1-3.el9.noa 398 kB/s | 20 kB 00:00 2026-02-20T22:32:13.806 INFO:teuthology.orchestra.run.trial035.stdout:(33/39): python3-jaraco-functools-3.5.0-2.el9.n 355 kB/s | 19 kB 00:00 2026-02-20T22:32:13.822 INFO:teuthology.orchestra.run.trial035.stdout:(34/39): python3-jaraco-text-4.0.0-2.el9.noarch 517 kB/s | 26 kB 00:00 2026-02-20T22:32:13.903 INFO:teuthology.orchestra.run.trial035.stdout:(35/39): python3-more-itertools-8.12.0-2.el9.no 746 kB/s | 79 kB 00:00 2026-02-20T22:32:13.914 INFO:teuthology.orchestra.run.trial035.stdout:(36/39): python3-portend-3.1.0-2.el9.noarch.rpm 151 kB/s | 16 kB 00:00 2026-02-20T22:32:13.922 INFO:teuthology.orchestra.run.trial035.stdout:(37/39): python3-pyOpenSSL-21.0.0-1.el9.noarch. 895 kB/s | 90 kB 00:00 2026-02-20T22:32:13.946 INFO:teuthology.orchestra.run.trial035.stdout:(38/39): python3-tempora-5.0.0-2.el9.noarch.rpm 835 kB/s | 36 kB 00:00 2026-02-20T22:32:13.974 INFO:teuthology.orchestra.run.trial035.stdout:(39/39): python3-zc-lockfile-2.0-10.el9.noarch. 332 kB/s | 20 kB 00:00 2026-02-20T22:32:13.981 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:13.982 INFO:teuthology.orchestra.run.trial035.stdout:Total 15 MB/s | 30 MB 00:02 2026-02-20T22:32:14.110 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:14.128 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:14.129 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:14.272 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:14.272 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:14.457 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:14.460 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/39 2026-02-20T22:32:14.464 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/39 2026-02-20T22:32:14.469 INFO:teuthology.orchestra.run.trial035.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/39 2026-02-20T22:32:14.471 INFO:teuthology.orchestra.run.trial035.stdout: Installing : unzip-6.0-59.el9.x86_64 4/39 2026-02-20T22:32:14.477 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 5/39 2026-02-20T22:32:14.501 INFO:teuthology.orchestra.run.trial035.stdout: Installing : zip-3.0-35.el9.x86_64 6/39 2026-02-20T22:32:14.504 INFO:teuthology.orchestra.run.trial035.stdout: Installing : luarocks-3.9.2-5.el9.noarch 7/39 2026-02-20T22:32:14.509 INFO:teuthology.orchestra.run.trial035.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 8/39 2026-02-20T22:32:14.513 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 9/39 2026-02-20T22:32:14.520 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 10/39 2026-02-20T22:32:14.523 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 11/39 2026-02-20T22:32:14.529 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 12/39 2026-02-20T22:32:14.534 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 13/39 2026-02-20T22:32:14.538 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 14/39 2026-02-20T22:32:14.543 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 15/39 2026-02-20T22:32:14.547 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 16/39 2026-02-20T22:32:14.554 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 17/39 2026-02-20T22:32:14.557 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 18/39 2026-02-20T22:32:14.567 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 19/39 2026-02-20T22:32:14.590 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:32:14.602 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 21/39 2026-02-20T22:32:14.609 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 22/39 2026-02-20T22:32:14.622 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/39 2026-02-20T22:32:14.637 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/39 2026-02-20T22:32:14.710 INFO:teuthology.orchestra.run.trial173.stdout:(5/5): ceph-test-20.2.0-677.gf7870454.el9.x86_6 50 MB/s | 84 MB 00:01 2026-02-20T22:32:14.711 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:14.711 INFO:teuthology.orchestra.run.trial173.stdout:Total 43 MB/s | 85 MB 00:01 2026-02-20T22:32:14.713 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/39 2026-02-20T22:32:14.721 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 26/39 2026-02-20T22:32:14.737 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:32:14.744 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/39 2026-02-20T22:32:14.746 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:32:14.746 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:32:14.773 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 28/39 2026-02-20T22:32:14.779 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/39 2026-02-20T22:32:14.825 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/39 2026-02-20T22:32:14.868 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 31/39 2026-02-20T22:32:14.869 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:32:14.893 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:32:14.893 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:14.893 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-20T22:32:14.893 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:32:14.893 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:32:14.893 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:14.898 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 33/39 2026-02-20T22:32:14.914 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:14.914 INFO:teuthology.orchestra.run.trial035.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-20T22:32:14.914 INFO:teuthology.orchestra.run.trial035.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-20T22:32:14.914 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:14.921 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:14.944 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:14.944 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-20T22:32:14.945 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:15.035 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:32:15.035 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:32:15.350 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:32:15.355 INFO:teuthology.orchestra.run.trial173.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-20T22:32:15.361 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-20T22:32:15.369 INFO:teuthology.orchestra.run.trial173.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-20T22:32:15.369 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:32:15.629 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 35/39 2026-02-20T22:32:15.631 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:32:15.656 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:32:15.656 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:15.656 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-20T22:32:15.656 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:32:15.656 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:32:15.656 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:15.870 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:32:15.892 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:32:15.892 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:15.893 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-20T22:32:15.893 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:32:15.893 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:32:15.893 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:15.989 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:32:16.010 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:32:16.010 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:16.010 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-20T22:32:16.010 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:32:16.010 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:32:16.010 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:16.026 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-2:20.2.0-677.gf7870454.el9.x86_64 1/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 3/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 4/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 5/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 6/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 7/39 2026-02-20T22:32:16.367 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 8/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 9/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 10/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-ply-3.11-14.el9.noarch 11/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 12/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 13/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 14/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : unzip-6.0-59.el9.x86_64 15/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : zip-3.0-35.el9.x86_64 16/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 17/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : lua-5.4.4-4.el9.x86_64 18/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 19/39 2026-02-20T22:32:16.368 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 21/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 22/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 23/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 24/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 25/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 26/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 27/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 28/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 29/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 30/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 31/39 2026-02-20T22:32:16.369 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 32/39 2026-02-20T22:32:16.370 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 33/39 2026-02-20T22:32:16.370 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 34/39 2026-02-20T22:32:16.370 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 35/39 2026-02-20T22:32:16.370 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 36/39 2026-02-20T22:32:16.370 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 37/39 2026-02-20T22:32:16.370 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 38/39 2026-02-20T22:32:16.423 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 39/39 2026-02-20T22:32:16.423 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:16.423 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:16.423 INFO:teuthology.orchestra.run.trial035.stdout: ceph-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:16.423 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: lua-5.4.4-4.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-20T22:32:16.424 INFO:teuthology.orchestra.run.trial035.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-20T22:32:16.425 INFO:teuthology.orchestra.run.trial035.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-ply-3.11-14.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: unzip-6.0-59.el9.x86_64 2026-02-20T22:32:16.426 INFO:teuthology.orchestra.run.trial035.stdout: zip-3.0-35.el9.x86_64 2026-02-20T22:32:16.427 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:16.427 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:16.460 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-base 2026-02-20T22:32:16.772 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:25 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:16.837 INFO:teuthology.orchestra.run.trial035.stdout:Package ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:16.854 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:16.855 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:16.855 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:16.877 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install cephadm 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /sys 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /proc 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /mnt 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /var/tmp 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /home 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /root 2026-02-20T22:32:16.981 INFO:teuthology.orchestra.run.trial073.stdout:skipping the directory /tmp 2026-02-20T22:32:16.982 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:17.181 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:26 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:17.264 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:17.264 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:17.264 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout: cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 1.0 M 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 1.0 M 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 1.0 M 2026-02-20T22:32:17.265 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:17.385 INFO:teuthology.orchestra.run.trial035.stdout:cephadm-20.2.0-677.gf7870454.el9.noarch.rpm 8.3 MB/s | 1.0 MB 00:00 2026-02-20T22:32:17.385 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:17.385 INFO:teuthology.orchestra.run.trial035.stdout:Total 8.3 MB/s | 1.0 MB 00:00 2026-02-20T22:32:17.385 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:17.388 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:17.388 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:17.391 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:17.392 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:17.409 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:17.471 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:17.484 INFO:teuthology.orchestra.run.trial035.stdout: Installing : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:17.546 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:17.600 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:17.600 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:17.600 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:17.601 INFO:teuthology.orchestra.run.trial035.stdout: cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:17.601 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:17.601 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:17.628 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-immutable-object-cache 2026-02-20T22:32:17.940 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:26 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:18.009 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:32:18.022 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:18.023 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:18.023 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repo Size 2026-02-20T22:32:18.023 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-677.gf7870454.el9 ceph 154 k 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 154 k 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 447 k 2026-02-20T22:32:18.024 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:18.033 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:32:18.033 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:18.033 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-20T22:32:18.033 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:32:18.033 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:32:18.033 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:18.034 INFO:teuthology.orchestra.run.trial073.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:32:18.046 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:32:18.046 INFO:teuthology.orchestra.run.trial073.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:18.099 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:18.100 INFO:teuthology.orchestra.run.trial073.stdout:Creating group 'qat' with GID 992. 2026-02-20T22:32:18.100 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:18.109 INFO:teuthology.orchestra.run.trial035.stdout:ceph-immutable-object-cache-20.2.0-677.gf787045 1.7 MB/s | 154 kB 00:00 2026-02-20T22:32:18.110 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:18.110 INFO:teuthology.orchestra.run.trial035.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-20T22:32:18.110 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:18.114 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:18.114 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:18.141 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:18.141 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:18.190 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:18.192 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:18.214 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:18.214 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:18.214 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-20T22:32:18.214 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 1/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 6/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 7/36 2026-02-20T22:32:18.425 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 8/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 9/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 10/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 13/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 14/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 15/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 16/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 17/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 18/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 19/36 2026-02-20T22:32:18.426 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 20/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 21/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 22/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 23/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 24/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 25/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 26/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 27/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 28/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 29/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 30/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : re2-1:20211101-20.el9.x86_64 31/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 32/36 2026-02-20T22:32:18.427 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librados2-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:32:18.428 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 34/36 2026-02-20T22:32:18.428 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 35/36 2026-02-20T22:32:18.486 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:32:18.486 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout:Upgraded: 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: librados2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-20T22:32:18.487 INFO:teuthology.orchestra.run.trial073.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-20T22:32:18.488 INFO:teuthology.orchestra.run.trial073.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: re2-1:20211101-20.el9.x86_64 2026-02-20T22:32:18.489 INFO:teuthology.orchestra.run.trial073.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-20T22:32:18.490 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:18.490 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:18.491 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:18.491 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:18.491 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:18.491 INFO:teuthology.orchestra.run.trial035.stdout: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:18.491 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:18.491 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:18.519 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-mgr 2026-02-20T22:32:18.530 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-test 2026-02-20T22:32:18.823 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:27 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:18.838 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:15 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:18.887 INFO:teuthology.orchestra.run.trial035.stdout:Package ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:18.904 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:18.905 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:18.905 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:18.920 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:18.920 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: ceph-test x86_64 2:20.2.0-677.gf7870454.el9 ceph 84 M 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: libcephsqlite x86_64 2:20.2.0-677.gf7870454.el9 ceph 164 k 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-20T22:32:18.921 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:18.922 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:18.922 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:18.922 INFO:teuthology.orchestra.run.trial073.stdout:Install 5 Packages 2026-02-20T22:32:18.922 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:18.922 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 85 M 2026-02-20T22:32:18.923 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 365 M 2026-02-20T22:32:18.923 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:18.927 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-mgr-dashboard 2026-02-20T22:32:19.093 INFO:teuthology.orchestra.run.trial073.stdout:(1/5): libcephsqlite-20.2.0-677.gf7870454.el9.x 1.9 MB/s | 164 kB 00:00 2026-02-20T22:32:19.134 INFO:teuthology.orchestra.run.trial073.stdout:(2/5): libxslt-1.1.34-12.el9.x86_64.rpm 1.8 MB/s | 233 kB 00:00 2026-02-20T22:32:19.157 INFO:teuthology.orchestra.run.trial073.stdout:(3/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.8 MB/s | 64 kB 00:00 2026-02-20T22:32:19.158 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:32:19.176 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:32:19.211 INFO:teuthology.orchestra.run.trial073.stdout:(4/5): socat-1.7.4.1-8.el9.x86_64.rpm 2.5 MB/s | 303 kB 00:00 2026-02-20T22:32:19.232 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:19.315 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:19.316 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:19.316 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:19.316 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:19.316 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-dashboard noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 11 M 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: ceph-grafana-dashboards noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 43 k 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: ceph-prometheus-alerts noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 17 k 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-20T22:32:19.317 INFO:teuthology.orchestra.run.trial035.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout:Install 14 Packages 2026-02-20T22:32:19.318 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:19.319 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 16 M 2026-02-20T22:32:19.319 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 158 M 2026-02-20T22:32:19.319 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:19.500 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:32:19.500 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 1/5 2026-02-20T22:32:19.500 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2/5 2026-02-20T22:32:19.500 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-20T22:32:19.500 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-20T22:32:19.553 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-20T22:32:19.553 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:19.553 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:32:19.553 INFO:teuthology.orchestra.run.trial173.stdout: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:19.554 INFO:teuthology.orchestra.run.trial173.stdout: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:19.554 INFO:teuthology.orchestra.run.trial173.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-20T22:32:19.554 INFO:teuthology.orchestra.run.trial173.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-20T22:32:19.554 INFO:teuthology.orchestra.run.trial173.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-20T22:32:19.554 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:19.554 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:19.595 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph 2026-02-20T22:32:19.899 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:21 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:19.983 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:19.984 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:19.984 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:32:19.984 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:19.984 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:32:19.984 INFO:teuthology.orchestra.run.trial173.stdout: ceph x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.5 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mds x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.3 M 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr x86_64 2:20.2.0-677.gf7870454.el9 ceph 961 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-modules-core noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 290 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mon x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.0 M 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: ceph-osd x86_64 2:20.2.0-677.gf7870454.el9 ceph 17 M 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-20T22:32:19.985 INFO:teuthology.orchestra.run.trial173.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-20T22:32:19.986 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-20T22:32:19.987 INFO:teuthology.orchestra.run.trial173.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout:Install 39 Packages 2026-02-20T22:32:19.988 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:19.989 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 30 M 2026-02-20T22:32:19.989 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 99 M 2026-02-20T22:32:19.989 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:20.007 INFO:teuthology.orchestra.run.trial035.stdout:(1/14): ceph-prometheus-alerts-20.2.0-677.gf787 65 kB/s | 17 kB 00:00 2026-02-20T22:32:20.039 INFO:teuthology.orchestra.run.trial035.stdout:(2/14): protobuf-3.14.0-17.el9.x86_64.rpm 31 MB/s | 1.0 MB 00:00 2026-02-20T22:32:20.044 INFO:teuthology.orchestra.run.trial035.stdout:(3/14): python3-jmespath-1.0.1-1.el9.noarch.rpm 8.8 MB/s | 48 kB 00:00 2026-02-20T22:32:20.051 INFO:teuthology.orchestra.run.trial035.stdout:(4/14): python3-protobuf-3.14.0-17.el9.noarch.r 42 MB/s | 267 kB 00:00 2026-02-20T22:32:20.058 INFO:teuthology.orchestra.run.trial035.stdout:(5/14): ceph-grafana-dashboards-20.2.0-677.gf78 136 kB/s | 43 kB 00:00 2026-02-20T22:32:20.468 INFO:teuthology.orchestra.run.trial035.stdout:(6/14): abseil-cpp-20211102.0-4.el9.x86_64.rpm 1.3 MB/s | 551 kB 00:00 2026-02-20T22:32:20.521 INFO:teuthology.orchestra.run.trial035.stdout:(7/14): grpc-data-1.46.7-10.el9.noarch.rpm 366 kB/s | 19 kB 00:00 2026-02-20T22:32:20.624 INFO:teuthology.orchestra.run.trial173.stdout:(1/39): ceph-20.2.0-677.gf7870454.el9.x86_64.rp 122 kB/s | 6.5 kB 00:00 2026-02-20T22:32:20.682 INFO:teuthology.orchestra.run.trial073.stdout:(5/5): ceph-test-20.2.0-677.gf7870454.el9.x86_6 50 MB/s | 84 MB 00:01 2026-02-20T22:32:20.683 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:20.683 INFO:teuthology.orchestra.run.trial073.stdout:Total 48 MB/s | 85 MB 00:01 2026-02-20T22:32:20.699 INFO:teuthology.orchestra.run.trial035.stdout:(8/14): python3-grpcio-1.46.7-10.el9.x86_64.rpm 11 MB/s | 2.0 MB 00:00 2026-02-20T22:32:20.709 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:20.719 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:20.719 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:20.725 INFO:teuthology.orchestra.run.trial173.stdout:(2/39): ceph-mgr-20.2.0-677.gf7870454.el9.x86_6 6.1 MB/s | 961 kB 00:00 2026-02-20T22:32:20.750 INFO:teuthology.orchestra.run.trial173.stdout:(3/39): ceph-mds-20.2.0-677.gf7870454.el9.x86_6 13 MB/s | 2.3 MB 00:00 2026-02-20T22:32:20.755 INFO:teuthology.orchestra.run.trial035.stdout:(9/14): python3-grpcio-tools-1.46.7-10.el9.x86_ 2.5 MB/s | 144 kB 00:00 2026-02-20T22:32:20.786 INFO:teuthology.orchestra.run.trial173.stdout:(4/39): ceph-mgr-modules-core-20.2.0-677.gf7870 7.9 MB/s | 290 kB 00:00 2026-02-20T22:32:20.809 INFO:teuthology.orchestra.run.trial035.stdout:(10/14): python3-repoze-lru-0.7-16.el9.noarch.r 574 kB/s | 31 kB 00:00 2026-02-20T22:32:20.865 INFO:teuthology.orchestra.run.trial035.stdout:(11/14): python3-routes-2.5.1-5.el9.noarch.rpm 3.3 MB/s | 188 kB 00:00 2026-02-20T22:32:20.919 INFO:teuthology.orchestra.run.trial035.stdout:(12/14): python3-xmltodict-0.12.0-15.el9.noarch 415 kB/s | 22 kB 00:00 2026-02-20T22:32:20.950 INFO:teuthology.orchestra.run.trial173.stdout:(5/39): ceph-mon-20.2.0-677.gf7870454.el9.x86_6 15 MB/s | 5.0 MB 00:00 2026-02-20T22:32:21.006 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:21.006 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:21.136 INFO:teuthology.orchestra.run.trial035.stdout:(13/14): ceph-mgr-dashboard-20.2.0-677.gf787045 7.6 MB/s | 11 MB 00:01 2026-02-20T22:32:21.228 INFO:teuthology.orchestra.run.trial173.stdout:(6/39): ceph-osd-20.2.0-677.gf7870454.el9.x86_6 34 MB/s | 17 MB 00:00 2026-02-20T22:32:21.318 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:21.324 INFO:teuthology.orchestra.run.trial073.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-20T22:32:21.329 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-20T22:32:21.336 INFO:teuthology.orchestra.run.trial073.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-20T22:32:21.337 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:32:21.360 INFO:teuthology.orchestra.run.trial173.stdout:(7/39): ledmon-libs-1.1.0-3.el9.x86_64.rpm 70 kB/s | 40 kB 00:00 2026-02-20T22:32:21.506 INFO:teuthology.orchestra.run.trial173.stdout:(8/39): libconfig-1.7.2-9.el9.x86_64.rpm 130 kB/s | 72 kB 00:00 2026-02-20T22:32:21.722 INFO:teuthology.orchestra.run.trial035.stdout:(14/14): protobuf-compiler-3.14.0-17.el9.x86_64 516 kB/s | 862 kB 00:01 2026-02-20T22:32:21.726 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:21.726 INFO:teuthology.orchestra.run.trial035.stdout:Total 6.5 MB/s | 16 MB 00:02 2026-02-20T22:32:21.743 INFO:teuthology.orchestra.run.trial173.stdout:(9/39): python3-ply-3.11-14.el9.noarch.rpm 450 kB/s | 106 kB 00:00 2026-02-20T22:32:21.762 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:21.771 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:21.771 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:21.867 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:21.868 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:21.986 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:21.995 INFO:teuthology.orchestra.run.trial035.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 1/14 2026-02-20T22:32:21.998 INFO:teuthology.orchestra.run.trial035.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 2/14 2026-02-20T22:32:22.004 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 3/14 2026-02-20T22:32:22.015 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 4/14 2026-02-20T22:32:22.017 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 5/14 2026-02-20T22:32:22.044 INFO:teuthology.orchestra.run.trial035.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 6/14 2026-02-20T22:32:22.058 INFO:teuthology.orchestra.run.trial173.stdout:(10/39): python3-pycparser-2.20-6.el9.noarch.rp 429 kB/s | 135 kB 00:00 2026-02-20T22:32:22.087 INFO:teuthology.orchestra.run.trial035.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 7/14 2026-02-20T22:32:22.116 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 8/14 2026-02-20T22:32:22.126 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 9/14 2026-02-20T22:32:22.133 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/14 2026-02-20T22:32:22.136 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 11/14 2026-02-20T22:32:22.143 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 12/14 2026-02-20T22:32:22.308 INFO:teuthology.orchestra.run.trial173.stdout:(11/39): python3-requests-2.25.1-10.el9.noarch. 507 kB/s | 126 kB 00:00 2026-02-20T22:32:22.401 INFO:teuthology.orchestra.run.trial173.stdout:(12/39): python3-cffi-1.14.5-5.el9.x86_64.rpm 216 kB/s | 253 kB 00:01 2026-02-20T22:32:22.701 INFO:teuthology.orchestra.run.trial173.stdout:(13/39): python3-urllib3-1.26.5-7.el9.noarch.rp 554 kB/s | 218 kB 00:00 2026-02-20T22:32:22.884 INFO:teuthology.orchestra.run.trial173.stdout:(14/39): python3-cryptography-36.0.1-5.el9.x86_ 837 kB/s | 1.2 MB 00:01 2026-02-20T22:32:22.946 INFO:teuthology.orchestra.run.trial173.stdout:(15/39): unzip-6.0-59.el9.x86_64.rpm 334 kB/s | 182 kB 00:00 2026-02-20T22:32:23.095 INFO:teuthology.orchestra.run.trial173.stdout:(16/39): zip-3.0-35.el9.x86_64.rpm 675 kB/s | 266 kB 00:00 2026-02-20T22:32:23.245 INFO:teuthology.orchestra.run.trial173.stdout:(17/39): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 682 kB/s | 246 kB 00:00 2026-02-20T22:32:23.270 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 13/14 2026-02-20T22:32:23.275 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T22:32:23.352 INFO:teuthology.orchestra.run.trial173.stdout:(18/39): python3-libstoragemgmt-1.10.1-1.el9.x8 689 kB/s | 177 kB 00:00 2026-02-20T22:32:23.354 INFO:teuthology.orchestra.run.trial173.stdout:(19/39): lua-5.4.4-4.el9.x86_64.rpm 462 kB/s | 188 kB 00:00 2026-02-20T22:32:23.422 INFO:teuthology.orchestra.run.trial173.stdout:(20/39): python3-packaging-20.9-5.el9.noarch.rp 437 kB/s | 77 kB 00:00 2026-02-20T22:32:23.451 INFO:teuthology.orchestra.run.trial173.stdout:(21/39): python3-toml-0.10.2-6.el9.noarch.rpm 419 kB/s | 42 kB 00:00 2026-02-20T22:32:23.479 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T22:32:23.479 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 1/14 2026-02-20T22:32:23.479 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 2/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 3/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 4/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 5/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 6/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 7/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 8/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 9/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 10/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 11/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 12/14 2026-02-20T22:32:23.480 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 13/14 2026-02-20T22:32:23.511 INFO:teuthology.orchestra.run.trial173.stdout:(22/39): python3-autocommand-2.2.2-8.el9.noarch 496 kB/s | 29 kB 00:00 2026-02-20T22:32:23.531 INFO:teuthology.orchestra.run.trial173.stdout:(23/39): luarocks-3.9.2-5.el9.noarch.rpm 1.3 MB/s | 151 kB 00:00 2026-02-20T22:32:23.534 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 14/14 2026-02-20T22:32:23.534 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:23.534 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:23.534 INFO:teuthology.orchestra.run.trial035.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-20T22:32:23.535 INFO:teuthology.orchestra.run.trial035.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-20T22:32:23.536 INFO:teuthology.orchestra.run.trial035.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-20T22:32:23.536 INFO:teuthology.orchestra.run.trial035.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-20T22:32:23.536 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:23.536 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:23.551 INFO:teuthology.orchestra.run.trial173.stdout:(24/39): python3-backports-tarfile-1.2.0-1.el9. 1.4 MB/s | 60 kB 00:00 2026-02-20T22:32:23.553 INFO:teuthology.orchestra.run.trial173.stdout:(25/39): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 2.0 MB/s | 43 kB 00:00 2026-02-20T22:32:23.565 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-20T22:32:23.594 INFO:teuthology.orchestra.run.trial173.stdout:(26/39): python3-cheroot-10.0.1-4.el9.noarch.rp 4.0 MB/s | 173 kB 00:00 2026-02-20T22:32:23.596 INFO:teuthology.orchestra.run.trial173.stdout:(27/39): python3-cherrypy-18.6.1-2.el9.noarch.r 8.1 MB/s | 358 kB 00:00 2026-02-20T22:32:23.615 INFO:teuthology.orchestra.run.trial173.stdout:(28/39): python3-jaraco-8.2.1-3.el9.noarch.rpm 514 kB/s | 11 kB 00:00 2026-02-20T22:32:23.617 INFO:teuthology.orchestra.run.trial173.stdout:(29/39): python3-jaraco-classes-3.2.1-5.el9.noa 835 kB/s | 18 kB 00:00 2026-02-20T22:32:23.635 INFO:teuthology.orchestra.run.trial173.stdout:(30/39): python3-jaraco-collections-3.0.0-8.el9 1.1 MB/s | 23 kB 00:00 2026-02-20T22:32:23.639 INFO:teuthology.orchestra.run.trial173.stdout:(31/39): python3-jaraco-context-6.0.1-3.el9.noa 938 kB/s | 20 kB 00:00 2026-02-20T22:32:23.656 INFO:teuthology.orchestra.run.trial173.stdout:(32/39): python3-jaraco-functools-3.5.0-2.el9.n 938 kB/s | 19 kB 00:00 2026-02-20T22:32:23.660 INFO:teuthology.orchestra.run.trial173.stdout:(33/39): python3-jaraco-text-4.0.0-2.el9.noarch 1.2 MB/s | 26 kB 00:00 2026-02-20T22:32:23.678 INFO:teuthology.orchestra.run.trial173.stdout:(34/39): python3-more-itertools-8.12.0-2.el9.no 3.6 MB/s | 79 kB 00:00 2026-02-20T22:32:23.680 INFO:teuthology.orchestra.run.trial173.stdout:(35/39): python3-portend-3.1.0-2.el9.noarch.rpm 790 kB/s | 16 kB 00:00 2026-02-20T22:32:23.700 INFO:teuthology.orchestra.run.trial173.stdout:(36/39): python3-pyOpenSSL-21.0.0-1.el9.noarch. 4.1 MB/s | 90 kB 00:00 2026-02-20T22:32:23.702 INFO:teuthology.orchestra.run.trial173.stdout:(37/39): python3-tempora-5.0.0-2.el9.noarch.rpm 1.7 MB/s | 36 kB 00:00 2026-02-20T22:32:23.721 INFO:teuthology.orchestra.run.trial173.stdout:(38/39): python3-zc-lockfile-2.0-10.el9.noarch. 929 kB/s | 20 kB 00:00 2026-02-20T22:32:23.877 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:32 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:23.900 INFO:teuthology.orchestra.run.trial173.stdout:(39/39): lua-devel-5.4.4-4.el9.x86_64.rpm 41 kB/s | 22 kB 00:00 2026-02-20T22:32:23.905 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:23.905 INFO:teuthology.orchestra.run.trial173.stdout:Total 7.7 MB/s | 30 MB 00:03 2026-02-20T22:32:23.960 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:23.960 INFO:teuthology.orchestra.run.trial035.stdout:====================================================================================== 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout:====================================================================================== 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 7.4 M 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-20T22:32:23.961 INFO:teuthology.orchestra.run.trial035.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout:====================================================================================== 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout:Install 12 Packages 2026-02-20T22:32:23.962 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:23.963 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 43 M 2026-02-20T22:32:23.963 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 234 M 2026-02-20T22:32:23.963 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:24.044 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:32:24.062 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:32:24.062 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:32:24.204 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:32:24.205 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:32:24.387 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:32:24.389 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/39 2026-02-20T22:32:24.394 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/39 2026-02-20T22:32:24.399 INFO:teuthology.orchestra.run.trial173.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/39 2026-02-20T22:32:24.401 INFO:teuthology.orchestra.run.trial173.stdout: Installing : unzip-6.0-59.el9.x86_64 4/39 2026-02-20T22:32:24.407 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 5/39 2026-02-20T22:32:24.431 INFO:teuthology.orchestra.run.trial173.stdout: Installing : zip-3.0-35.el9.x86_64 6/39 2026-02-20T22:32:24.434 INFO:teuthology.orchestra.run.trial173.stdout: Installing : luarocks-3.9.2-5.el9.noarch 7/39 2026-02-20T22:32:24.439 INFO:teuthology.orchestra.run.trial173.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 8/39 2026-02-20T22:32:24.444 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 9/39 2026-02-20T22:32:24.450 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 10/39 2026-02-20T22:32:24.454 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 11/39 2026-02-20T22:32:24.460 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 12/39 2026-02-20T22:32:24.465 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 13/39 2026-02-20T22:32:24.468 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 14/39 2026-02-20T22:32:24.474 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 15/39 2026-02-20T22:32:24.478 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 16/39 2026-02-20T22:32:24.485 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 17/39 2026-02-20T22:32:24.488 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 18/39 2026-02-20T22:32:24.498 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 19/39 2026-02-20T22:32:24.521 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:32:24.534 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 21/39 2026-02-20T22:32:24.540 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 22/39 2026-02-20T22:32:24.554 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/39 2026-02-20T22:32:24.570 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/39 2026-02-20T22:32:24.647 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/39 2026-02-20T22:32:24.655 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 26/39 2026-02-20T22:32:24.679 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/39 2026-02-20T22:32:24.708 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 28/39 2026-02-20T22:32:24.714 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/39 2026-02-20T22:32:24.729 INFO:teuthology.orchestra.run.trial035.stdout:(1/12): ceph-mgr-diskprediction-local-20.2.0-67 32 MB/s | 7.4 MB 00:00 2026-02-20T22:32:24.761 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/39 2026-02-20T22:32:24.804 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 31/39 2026-02-20T22:32:24.805 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:32:24.820 INFO:teuthology.orchestra.run.trial035.stdout:(2/12): flexiblas-3.0.4-9.el9.x86_64.rpm 327 kB/s | 30 kB 00:00 2026-02-20T22:32:24.830 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:32:24.830 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:24.830 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-20T22:32:24.830 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:32:24.830 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:32:24.830 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:24.834 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 33/39 2026-02-20T22:32:24.852 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:24.852 INFO:teuthology.orchestra.run.trial173.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-20T22:32:24.852 INFO:teuthology.orchestra.run.trial173.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-20T22:32:24.852 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:24.864 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:24.889 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:24.889 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-20T22:32:24.890 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:24.976 INFO:teuthology.orchestra.run.trial035.stdout:(3/12): libquadmath-11.5.0-14.el9.x86_64.rpm 387 kB/s | 184 kB 00:00 2026-02-20T22:32:25.008 INFO:teuthology.orchestra.run.trial035.stdout:(4/12): flexiblas-netlib-3.0.4-9.el9.x86_64.rpm 16 MB/s | 3.0 MB 00:00 2026-02-20T22:32:25.033 INFO:teuthology.orchestra.run.trial035.stdout:(5/12): openblas-0.3.29-1.el9.x86_64.rpm 1.6 MB/s | 42 kB 00:00 2026-02-20T22:32:25.049 INFO:teuthology.orchestra.run.trial035.stdout:(6/12): flexiblas-openblas-openmp-3.0.4-9.el9.x 203 kB/s | 15 kB 00:00 2026-02-20T22:32:25.101 INFO:teuthology.orchestra.run.trial035.stdout:(7/12): openblas-openmp-0.3.29-1.el9.x86_64.rpm 78 MB/s | 5.3 MB 00:00 2026-02-20T22:32:25.140 INFO:teuthology.orchestra.run.trial035.stdout:(8/12): libgfortran-11.5.0-14.el9.x86_64.rpm 1.2 MB/s | 794 kB 00:00 2026-02-20T22:32:25.162 INFO:teuthology.orchestra.run.trial035.stdout:(9/12): python3-devel-3.9.25-3.el9.x86_64.rpm 2.1 MB/s | 244 kB 00:00 2026-02-20T22:32:25.183 INFO:teuthology.orchestra.run.trial035.stdout:(10/12): python3-numpy-1.23.5-2.el9.x86_64.rpm 75 MB/s | 6.1 MB 00:00 2026-02-20T22:32:25.186 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:32:25.204 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:32:25.317 INFO:teuthology.orchestra.run.trial035.stdout:(11/12): python3-numpy-f2py-1.23.5-2.el9.x86_64 2.4 MB/s | 442 kB 00:00 2026-02-20T22:32:25.523 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:32:25.524 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 1/5 2026-02-20T22:32:25.524 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2/5 2026-02-20T22:32:25.524 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-20T22:32:25.524 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-20T22:32:25.572 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 35/39 2026-02-20T22:32:25.574 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:32:25.577 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-20T22:32:25.577 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:25.578 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:25.599 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:32:25.599 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:25.599 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-20T22:32:25.599 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:32:25.599 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:32:25.599 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:25.617 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph 2026-02-20T22:32:25.619 INFO:teuthology.orchestra.run.trial035.stdout:(12/12): python3-scipy-1.9.3-2.el9.x86_64.rpm 42 MB/s | 19 MB 00:00 2026-02-20T22:32:25.619 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:25.619 INFO:teuthology.orchestra.run.trial035.stdout:Total 26 MB/s | 43 MB 00:01 2026-02-20T22:32:25.785 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:25.799 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:25.799 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:25.813 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:32:25.835 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:32:25.835 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:25.835 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-20T22:32:25.836 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:32:25.836 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:32:25.836 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:25.928 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:22 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:25.932 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:32:25.952 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:32:25.952 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:25.952 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-20T22:32:25.952 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:32:25.953 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:32:25.953 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:25.969 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:32:26.001 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:26.001 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:26.011 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:26.013 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:26.013 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:26.013 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:26.013 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:26.013 INFO:teuthology.orchestra.run.trial073.stdout: ceph x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.5 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mds x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.3 M 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr x86_64 2:20.2.0-677.gf7870454.el9 ceph 961 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-modules-core noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 290 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mon x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.0 M 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: ceph-osd x86_64 2:20.2.0-677.gf7870454.el9 ceph 17 M 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-20T22:32:26.014 INFO:teuthology.orchestra.run.trial073.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-20T22:32:26.015 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T22:32:26.016 INFO:teuthology.orchestra.run.trial073.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout:Install 39 Packages 2026-02-20T22:32:26.017 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:26.018 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 30 M 2026-02-20T22:32:26.018 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 99 M 2026-02-20T22:32:26.018 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:26.219 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:26.222 INFO:teuthology.orchestra.run.trial035.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 1/12 2026-02-20T22:32:26.228 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 2/12 2026-02-20T22:32:26.262 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 3/12 2026-02-20T22:32:26.267 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 4/12 2026-02-20T22:32:26.291 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-2:20.2.0-677.gf7870454.el9.x86_64 1/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 3/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 4/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 5/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 6/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 7/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 8/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 9/39 2026-02-20T22:32:26.292 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 10/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-ply-3.11-14.el9.noarch 11/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 12/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 13/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 14/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : unzip-6.0-59.el9.x86_64 15/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : zip-3.0-35.el9.x86_64 16/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 17/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : lua-5.4.4-4.el9.x86_64 18/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 19/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 21/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 22/39 2026-02-20T22:32:26.293 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 23/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 24/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 25/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 26/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 27/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 28/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 29/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 30/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 31/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 32/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 33/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 34/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 35/39 2026-02-20T22:32:26.294 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 36/39 2026-02-20T22:32:26.295 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 37/39 2026-02-20T22:32:26.295 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 38/39 2026-02-20T22:32:26.326 INFO:teuthology.orchestra.run.trial035.stdout: Installing : openblas-0.3.29-1.el9.x86_64 5/12 2026-02-20T22:32:26.328 INFO:teuthology.orchestra.run.trial035.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 6/12 2026-02-20T22:32:26.347 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 39/39 2026-02-20T22:32:26.347 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:26.347 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:32:26.347 INFO:teuthology.orchestra.run.trial173.stdout: ceph-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:26.347 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: lua-5.4.4-4.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-20T22:32:26.348 INFO:teuthology.orchestra.run.trial173.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-20T22:32:26.349 INFO:teuthology.orchestra.run.trial173.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-ply-3.11-14.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: unzip-6.0-59.el9.x86_64 2026-02-20T22:32:26.350 INFO:teuthology.orchestra.run.trial173.stdout: zip-3.0-35.el9.x86_64 2026-02-20T22:32:26.351 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:26.351 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:26.351 INFO:teuthology.orchestra.run.trial035.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 7/12 2026-02-20T22:32:26.383 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-base 2026-02-20T22:32:26.390 INFO:teuthology.orchestra.run.trial073.stdout:(1/39): ceph-20.2.0-677.gf7870454.el9.x86_64.rp 126 kB/s | 6.5 kB 00:00 2026-02-20T22:32:26.480 INFO:teuthology.orchestra.run.trial073.stdout:(2/39): ceph-mgr-20.2.0-677.gf7870454.el9.x86_6 6.6 MB/s | 961 kB 00:00 2026-02-20T22:32:26.506 INFO:teuthology.orchestra.run.trial073.stdout:(3/39): ceph-mds-20.2.0-677.gf7870454.el9.x86_6 14 MB/s | 2.3 MB 00:00 2026-02-20T22:32:26.548 INFO:teuthology.orchestra.run.trial073.stdout:(4/39): ceph-mgr-modules-core-20.2.0-677.gf7870 6.8 MB/s | 290 kB 00:00 2026-02-20T22:32:26.626 INFO:teuthology.orchestra.run.trial073.stdout:(5/39): ceph-mon-20.2.0-677.gf7870454.el9.x86_6 21 MB/s | 5.0 MB 00:00 2026-02-20T22:32:26.626 INFO:teuthology.orchestra.run.trial073.stdout:(6/39): ledmon-libs-1.1.0-3.el9.x86_64.rpm 520 kB/s | 40 kB 00:00 2026-02-20T22:32:26.671 INFO:teuthology.orchestra.run.trial035.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 8/12 2026-02-20T22:32:26.694 INFO:teuthology.orchestra.run.trial073.stdout:(7/39): python3-cffi-1.14.5-5.el9.x86_64.rpm 3.6 MB/s | 253 kB 00:00 2026-02-20T22:32:26.699 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:26.711 INFO:teuthology.orchestra.run.trial073.stdout:(8/39): libconfig-1.7.2-9.el9.x86_64.rpm 849 kB/s | 72 kB 00:00 2026-02-20T22:32:26.744 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 9/12 2026-02-20T22:32:26.755 INFO:teuthology.orchestra.run.trial073.stdout:(9/39): python3-ply-3.11-14.el9.noarch.rpm 2.4 MB/s | 106 kB 00:00 2026-02-20T22:32:26.764 INFO:teuthology.orchestra.run.trial173.stdout:Package ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:26.779 INFO:teuthology.orchestra.run.trial073.stdout:(10/39): python3-cryptography-36.0.1-5.el9.x86_ 15 MB/s | 1.2 MB 00:00 2026-02-20T22:32:26.782 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:26.782 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:32:26.783 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:26.804 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install cephadm 2026-02-20T22:32:26.805 INFO:teuthology.orchestra.run.trial073.stdout:(11/39): python3-requests-2.25.1-10.el9.noarch. 5.0 MB/s | 126 kB 00:00 2026-02-20T22:32:26.830 INFO:teuthology.orchestra.run.trial073.stdout:(12/39): python3-urllib3-1.26.5-7.el9.noarch.rp 8.4 MB/s | 218 kB 00:00 2026-02-20T22:32:26.879 INFO:teuthology.orchestra.run.trial073.stdout:(13/39): ceph-osd-20.2.0-677.gf7870454.el9.x86_ 43 MB/s | 17 MB 00:00 2026-02-20T22:32:26.880 INFO:teuthology.orchestra.run.trial073.stdout:(14/39): unzip-6.0-59.el9.x86_64.rpm 3.6 MB/s | 182 kB 00:00 2026-02-20T22:32:26.880 INFO:teuthology.orchestra.run.trial073.stdout:(15/39): python3-pycparser-2.20-6.el9.noarch.rp 1.1 MB/s | 135 kB 00:00 2026-02-20T22:32:26.904 INFO:teuthology.orchestra.run.trial073.stdout:(16/39): zip-3.0-35.el9.x86_64.rpm 10 MB/s | 266 kB 00:00 2026-02-20T22:32:27.104 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:29 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:27.185 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:27.186 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:27.186 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:32:27.186 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:27.186 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:32:27.186 INFO:teuthology.orchestra.run.trial173.stdout: cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 1.0 M 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 1.0 M 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 1.0 M 2026-02-20T22:32:27.187 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:27.306 INFO:teuthology.orchestra.run.trial173.stdout:cephadm-20.2.0-677.gf7870454.el9.noarch.rpm 8.4 MB/s | 1.0 MB 00:00 2026-02-20T22:32:27.307 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:27.307 INFO:teuthology.orchestra.run.trial173.stdout:Total 8.2 MB/s | 1.0 MB 00:00 2026-02-20T22:32:27.307 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:32:27.309 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:32:27.310 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:32:27.313 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:32:27.313 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:32:27.332 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:32:27.351 INFO:teuthology.orchestra.run.trial073.stdout:(17/39): lua-5.4.4-4.el9.x86_64.rpm 400 kB/s | 188 kB 00:00 2026-02-20T22:32:27.368 INFO:teuthology.orchestra.run.trial073.stdout:(18/39): python3-libstoragemgmt-1.10.1-1.el9.x8 381 kB/s | 177 kB 00:00 2026-02-20T22:32:27.376 INFO:teuthology.orchestra.run.trial073.stdout:(19/39): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 496 kB/s | 246 kB 00:00 2026-02-20T22:32:27.392 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:27.406 INFO:teuthology.orchestra.run.trial173.stdout: Installing : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:27.409 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T22:32:27.453 INFO:teuthology.orchestra.run.trial073.stdout:(20/39): python3-packaging-20.9-5.el9.noarch.rp 764 kB/s | 77 kB 00:00 2026-02-20T22:32:27.459 INFO:teuthology.orchestra.run.trial073.stdout:(21/39): python3-toml-0.10.2-6.el9.noarch.rpm 458 kB/s | 42 kB 00:00 2026-02-20T22:32:27.473 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:27.528 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:27.528 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:27.528 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:32:27.528 INFO:teuthology.orchestra.run.trial173.stdout: cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:27.529 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:27.529 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:27.555 INFO:teuthology.orchestra.run.trial073.stdout:(22/39): python3-autocommand-2.2.2-8.el9.noarch 309 kB/s | 29 kB 00:00 2026-02-20T22:32:27.556 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-immutable-object-cache 2026-02-20T22:32:27.596 INFO:teuthology.orchestra.run.trial073.stdout:(23/39): python3-backports-tarfile-1.2.0-1.el9. 1.4 MB/s | 60 kB 00:00 2026-02-20T22:32:27.599 INFO:teuthology.orchestra.run.trial073.stdout:(24/39): luarocks-3.9.2-5.el9.noarch.rpm 1.0 MB/s | 151 kB 00:00 2026-02-20T22:32:27.621 INFO:teuthology.orchestra.run.trial073.stdout:(25/39): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.7 MB/s | 43 kB 00:00 2026-02-20T22:32:27.638 INFO:teuthology.orchestra.run.trial073.stdout:(26/39): python3-cheroot-10.0.1-4.el9.noarch.rp 4.3 MB/s | 173 kB 00:00 2026-02-20T22:32:27.658 INFO:teuthology.orchestra.run.trial073.stdout:(27/39): python3-jaraco-8.2.1-3.el9.noarch.rpm 542 kB/s | 11 kB 00:00 2026-02-20T22:32:27.678 INFO:teuthology.orchestra.run.trial073.stdout:(28/39): python3-jaraco-classes-3.2.1-5.el9.noa 868 kB/s | 18 kB 00:00 2026-02-20T22:32:27.682 INFO:teuthology.orchestra.run.trial073.stdout:(29/39): python3-cherrypy-18.6.1-2.el9.noarch.r 5.8 MB/s | 358 kB 00:00 2026-02-20T22:32:27.698 INFO:teuthology.orchestra.run.trial073.stdout:(30/39): python3-jaraco-collections-3.0.0-8.el9 1.1 MB/s | 23 kB 00:00 2026-02-20T22:32:27.702 INFO:teuthology.orchestra.run.trial073.stdout:(31/39): python3-jaraco-context-6.0.1-3.el9.noa 973 kB/s | 20 kB 00:00 2026-02-20T22:32:27.718 INFO:teuthology.orchestra.run.trial073.stdout:(32/39): python3-jaraco-functools-3.5.0-2.el9.n 962 kB/s | 19 kB 00:00 2026-02-20T22:32:27.722 INFO:teuthology.orchestra.run.trial073.stdout:(33/39): python3-jaraco-text-4.0.0-2.el9.noarch 1.3 MB/s | 26 kB 00:00 2026-02-20T22:32:27.740 INFO:teuthology.orchestra.run.trial073.stdout:(34/39): python3-more-itertools-8.12.0-2.el9.no 3.5 MB/s | 79 kB 00:00 2026-02-20T22:32:27.742 INFO:teuthology.orchestra.run.trial073.stdout:(35/39): python3-portend-3.1.0-2.el9.noarch.rpm 825 kB/s | 16 kB 00:00 2026-02-20T22:32:27.762 INFO:teuthology.orchestra.run.trial073.stdout:(36/39): python3-tempora-5.0.0-2.el9.noarch.rpm 1.7 MB/s | 36 kB 00:00 2026-02-20T22:32:27.763 INFO:teuthology.orchestra.run.trial073.stdout:(37/39): python3-pyOpenSSL-21.0.0-1.el9.noarch. 3.9 MB/s | 90 kB 00:00 2026-02-20T22:32:27.783 INFO:teuthology.orchestra.run.trial073.stdout:(38/39): python3-zc-lockfile-2.0-10.el9.noarch. 970 kB/s | 20 kB 00:00 2026-02-20T22:32:27.823 INFO:teuthology.orchestra.run.trial073.stdout:(39/39): lua-devel-5.4.4-4.el9.x86_64.rpm 50 kB/s | 22 kB 00:00 2026-02-20T22:32:27.827 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:27.827 INFO:teuthology.orchestra.run.trial073.stdout:Total 17 MB/s | 30 MB 00:01 2026-02-20T22:32:27.860 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 11/12 2026-02-20T22:32:27.861 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T22:32:27.865 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:29 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:27.949 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:27.949 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repo Size 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-677.gf7870454.el9 ceph 154 k 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:27.950 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 154 k 2026-02-20T22:32:27.951 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 447 k 2026-02-20T22:32:27.951 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:27.966 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:27.984 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:27.984 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:28.035 INFO:teuthology.orchestra.run.trial173.stdout:ceph-immutable-object-cache-20.2.0-677.gf787045 1.8 MB/s | 154 kB 00:00 2026-02-20T22:32:28.036 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:28.036 INFO:teuthology.orchestra.run.trial173.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-20T22:32:28.036 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:32:28.040 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:32:28.040 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:32:28.067 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:32:28.067 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:32:28.116 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:32:28.118 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:28.127 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:28.128 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 1/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 2/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 3/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 4/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 5/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 6/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 7/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 8/12 2026-02-20T22:32:28.132 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 9/12 2026-02-20T22:32:28.133 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T22:32:28.133 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 11/12 2026-02-20T22:32:28.141 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:28.142 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:28.142 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-20T22:32:28.142 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:28.190 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 12/12 2026-02-20T22:32:28.190 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:28.190 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:28.190 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-diskprediction-local-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:28.190 INFO:teuthology.orchestra.run.trial035.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:28.191 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:28.228 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-mgr-rook 2026-02-20T22:32:28.313 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:28.315 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/39 2026-02-20T22:32:28.319 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/39 2026-02-20T22:32:28.324 INFO:teuthology.orchestra.run.trial073.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/39 2026-02-20T22:32:28.326 INFO:teuthology.orchestra.run.trial073.stdout: Installing : unzip-6.0-59.el9.x86_64 4/39 2026-02-20T22:32:28.332 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 5/39 2026-02-20T22:32:28.356 INFO:teuthology.orchestra.run.trial073.stdout: Installing : zip-3.0-35.el9.x86_64 6/39 2026-02-20T22:32:28.361 INFO:teuthology.orchestra.run.trial073.stdout: Installing : luarocks-3.9.2-5.el9.noarch 7/39 2026-02-20T22:32:28.366 INFO:teuthology.orchestra.run.trial073.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 8/39 2026-02-20T22:32:28.371 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 9/39 2026-02-20T22:32:28.377 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 10/39 2026-02-20T22:32:28.381 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 11/39 2026-02-20T22:32:28.386 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 12/39 2026-02-20T22:32:28.392 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 13/39 2026-02-20T22:32:28.395 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 14/39 2026-02-20T22:32:28.401 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 15/39 2026-02-20T22:32:28.405 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 16/39 2026-02-20T22:32:28.411 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 17/39 2026-02-20T22:32:28.412 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:28.412 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:28.412 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:32:28.412 INFO:teuthology.orchestra.run.trial173.stdout: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:28.412 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:28.412 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:28.415 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 18/39 2026-02-20T22:32:28.425 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 19/39 2026-02-20T22:32:28.440 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-mgr 2026-02-20T22:32:28.448 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:32:28.461 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 21/39 2026-02-20T22:32:28.467 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 22/39 2026-02-20T22:32:28.481 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/39 2026-02-20T22:32:28.497 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/39 2026-02-20T22:32:28.540 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:37 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:28.574 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/39 2026-02-20T22:32:28.582 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 26/39 2026-02-20T22:32:28.606 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/39 2026-02-20T22:32:28.623 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:28.623 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-rook noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 50 k 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-20T22:32:28.624 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout:Install 10 Packages 2026-02-20T22:32:28.625 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:28.626 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 2.0 M 2026-02-20T22:32:28.626 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 25 M 2026-02-20T22:32:28.626 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:28.635 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 28/39 2026-02-20T22:32:28.641 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/39 2026-02-20T22:32:28.688 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/39 2026-02-20T22:32:28.731 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 31/39 2026-02-20T22:32:28.732 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:32:28.745 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:30 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:28.756 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:32:28.756 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:28.756 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-20T22:32:28.756 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:32:28.756 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:32:28.756 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:28.761 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 33/39 2026-02-20T22:32:28.778 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:28.778 INFO:teuthology.orchestra.run.trial073.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-20T22:32:28.778 INFO:teuthology.orchestra.run.trial073.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-20T22:32:28.778 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:28.787 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:28.809 INFO:teuthology.orchestra.run.trial173.stdout:Package ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:28.811 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:32:28.811 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-20T22:32:28.811 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:28.827 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:28.828 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:32:28.828 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:28.849 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-mgr-dashboard 2026-02-20T22:32:28.861 INFO:teuthology.orchestra.run.trial035.stdout:(1/10): ceph-mgr-rook-20.2.0-677.gf7870454.el9. 690 kB/s | 50 kB 00:00 2026-02-20T22:32:28.878 INFO:teuthology.orchestra.run.trial035.stdout:(2/10): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 159 kB 00:00 2026-02-20T22:32:28.879 INFO:teuthology.orchestra.run.trial035.stdout:(3/10): python3-pyasn1-modules-0.4.8-6.el9.noar 3.0 MB/s | 279 kB 00:00 2026-02-20T22:32:28.907 INFO:teuthology.orchestra.run.trial035.stdout:(4/10): python3-certifi-2023.05.07-4.el9.noarch 507 kB/s | 14 kB 00:00 2026-02-20T22:32:28.909 INFO:teuthology.orchestra.run.trial035.stdout:(5/10): python3-cachetools-4.2.4-1.el9.noarch.r 1.0 MB/s | 32 kB 00:00 2026-02-20T22:32:28.925 INFO:teuthology.orchestra.run.trial035.stdout:(6/10): python3-requests-oauthlib-1.3.0-12.el9. 846 kB/s | 54 kB 00:00 2026-02-20T22:32:28.935 INFO:teuthology.orchestra.run.trial035.stdout:(7/10): python3-google-auth-2.45.0-1.el9.noarch 9.0 MB/s | 254 kB 00:00 2026-02-20T22:32:28.944 INFO:teuthology.orchestra.run.trial035.stdout:(8/10): python3-websocket-client-1.2.3-2.el9.no 9.8 MB/s | 90 kB 00:00 2026-02-20T22:32:28.946 INFO:teuthology.orchestra.run.trial035.stdout:(9/10): python3-kubernetes-26.1.0-3.el9.noarch. 28 MB/s | 1.0 MB 00:00 2026-02-20T22:32:28.953 INFO:teuthology.orchestra.run.trial035.stdout:(10/10): python3-rsa-4.9-2.el9.noarch.rpm 2.1 MB/s | 59 kB 00:00 2026-02-20T22:32:28.953 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:28.954 INFO:teuthology.orchestra.run.trial035.stdout:Total 6.0 MB/s | 2.0 MB 00:00 2026-02-20T22:32:28.979 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:28.987 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:28.987 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:29.026 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:29.027 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:29.100 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:29.151 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/10 2026-02-20T22:32:29.162 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:31 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:29.163 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/10 2026-02-20T22:32:29.178 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/10 2026-02-20T22:32:29.183 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/10 2026-02-20T22:32:29.190 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/10 2026-02-20T22:32:29.229 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/10 2026-02-20T22:32:29.241 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T22:32:29.246 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-dashboard noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 11 M 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout: ceph-grafana-dashboards noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 43 k 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout: ceph-prometheus-alerts noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 17 k 2026-02-20T22:32:29.247 INFO:teuthology.orchestra.run.trial173.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:29.248 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:32:29.249 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:32:29.249 INFO:teuthology.orchestra.run.trial173.stdout:Install 14 Packages 2026-02-20T22:32:29.249 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:29.249 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 16 M 2026-02-20T22:32:29.249 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 158 M 2026-02-20T22:32:29.250 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:29.497 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 35/39 2026-02-20T22:32:29.499 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:32:29.523 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:32:29.523 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:29.523 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-20T22:32:29.523 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:32:29.524 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:32:29.524 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:29.558 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 8/10 2026-02-20T22:32:29.572 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 9/10 2026-02-20T22:32:29.573 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 1/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 2/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 3/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 4/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 5/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 6/10 2026-02-20T22:32:29.680 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T22:32:29.681 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 8/10 2026-02-20T22:32:29.681 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 9/10 2026-02-20T22:32:29.736 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 10/10 2026-02-20T22:32:29.736 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:29.736 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-20T22:32:29.737 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:29.738 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:29.739 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:32:29.761 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:32:29.761 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:29.761 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-20T22:32:29.761 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:32:29.762 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:32:29.762 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:29.766 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-mgr-cephadm 2026-02-20T22:32:29.862 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:32:29.884 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:32:29.884 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:29.884 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-20T22:32:29.884 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:32:29.884 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:32:29.885 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:29.902 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:32:30.013 INFO:teuthology.orchestra.run.trial173.stdout:(1/14): ceph-prometheus-alerts-20.2.0-677.gf787 279 kB/s | 17 kB 00:00 2026-02-20T22:32:30.026 INFO:teuthology.orchestra.run.trial173.stdout:(2/14): ceph-grafana-dashboards-20.2.0-677.gf78 570 kB/s | 43 kB 00:00 2026-02-20T22:32:30.070 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:39 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:30.089 INFO:teuthology.orchestra.run.trial173.stdout:(3/14): python3-jmespath-1.0.1-1.el9.noarch.rpm 758 kB/s | 48 kB 00:00 2026-02-20T22:32:30.140 INFO:teuthology.orchestra.run.trial173.stdout:(4/14): protobuf-3.14.0-17.el9.x86_64.rpm 7.9 MB/s | 1.0 MB 00:00 2026-02-20T22:32:30.153 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 173 k 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:30.154 INFO:teuthology.orchestra.run.trial035.stdout:Install 7 Packages 2026-02-20T22:32:30.155 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:30.155 INFO:teuthology.orchestra.run.trial173.stdout:(5/14): python3-protobuf-3.14.0-17.el9.noarch.r 4.1 MB/s | 267 kB 00:00 2026-02-20T22:32:30.155 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 7.1 M 2026-02-20T22:32:30.155 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 33 M 2026-02-20T22:32:30.155 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-2:20.2.0-677.gf7870454.el9.x86_64 1/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 3/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 4/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 5/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 6/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 7/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 8/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 9/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 10/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-ply-3.11-14.el9.noarch 11/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 12/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 13/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 14/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : unzip-6.0-59.el9.x86_64 15/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : zip-3.0-35.el9.x86_64 16/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 17/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : lua-5.4.4-4.el9.x86_64 18/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 19/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 21/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 22/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 23/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 24/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 25/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 26/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 27/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 28/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 29/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 30/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 31/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 32/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 33/39 2026-02-20T22:32:30.242 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 34/39 2026-02-20T22:32:30.243 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 35/39 2026-02-20T22:32:30.243 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 36/39 2026-02-20T22:32:30.243 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 37/39 2026-02-20T22:32:30.243 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 38/39 2026-02-20T22:32:30.245 INFO:teuthology.orchestra.run.trial173.stdout:(6/14): ceph-mgr-dashboard-20.2.0-677.gf7870454 36 MB/s | 11 MB 00:00 2026-02-20T22:32:30.301 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 39/39 2026-02-20T22:32:30.301 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:30.301 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ceph-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:32:30.302 INFO:teuthology.orchestra.run.trial073.stdout: lua-5.4.4-4.el9.x86_64 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-20T22:32:30.303 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-ply-3.11-14.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-20T22:32:30.304 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: unzip-6.0-59.el9.x86_64 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: zip-3.0-35.el9.x86_64 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:30.305 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:30.336 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-base 2026-02-20T22:32:30.369 INFO:teuthology.orchestra.run.trial173.stdout:(7/14): grpc-data-1.46.7-10.el9.noarch.rpm 158 kB/s | 19 kB 00:00 2026-02-20T22:32:30.408 INFO:teuthology.orchestra.run.trial035.stdout:(1/7): python3-babel-2.9.1-2.el9.noarch.rpm 67 MB/s | 6.0 MB 00:00 2026-02-20T22:32:30.408 INFO:teuthology.orchestra.run.trial035.stdout:(2/7): ceph-mgr-cephadm-20.2.0-677.gf7870454.el 1.9 MB/s | 173 kB 00:00 2026-02-20T22:32:30.430 INFO:teuthology.orchestra.run.trial173.stdout:(8/14): abseil-cpp-20211102.0-4.el9.x86_64.rpm 2.0 MB/s | 551 kB 00:00 2026-02-20T22:32:30.435 INFO:teuthology.orchestra.run.trial035.stdout:(3/7): python3-markupsafe-1.1.1-12.el9.x86_64.r 1.2 MB/s | 35 kB 00:00 2026-02-20T22:32:30.442 INFO:teuthology.orchestra.run.trial173.stdout:(9/14): protobuf-compiler-3.14.0-17.el9.x86_64. 2.8 MB/s | 862 kB 00:00 2026-02-20T22:32:30.496 INFO:teuthology.orchestra.run.trial173.stdout:(10/14): python3-repoze-lru-0.7-16.el9.noarch.r 582 kB/s | 31 kB 00:00 2026-02-20T22:32:30.522 INFO:teuthology.orchestra.run.trial173.stdout:(11/14): python3-grpcio-1.46.7-10.el9.x86_64.rp 13 MB/s | 2.0 MB 00:00 2026-02-20T22:32:30.524 INFO:teuthology.orchestra.run.trial173.stdout:(12/14): python3-grpcio-tools-1.46.7-10.el9.x86 1.5 MB/s | 144 kB 00:00 2026-02-20T22:32:30.527 INFO:teuthology.orchestra.run.trial035.stdout:(4/7): python3-natsort-7.1.1-5.el9.noarch.rpm 629 kB/s | 58 kB 00:00 2026-02-20T22:32:30.535 INFO:teuthology.orchestra.run.trial173.stdout:(13/14): python3-routes-2.5.1-5.el9.noarch.rpm 4.6 MB/s | 188 kB 00:00 2026-02-20T22:32:30.554 INFO:teuthology.orchestra.run.trial173.stdout:(14/14): python3-xmltodict-0.12.0-15.el9.noarch 682 kB/s | 22 kB 00:00 2026-02-20T22:32:30.557 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:30.557 INFO:teuthology.orchestra.run.trial173.stdout:Total 12 MB/s | 16 MB 00:01 2026-02-20T22:32:30.574 INFO:teuthology.orchestra.run.trial035.stdout:(5/7): python3-jinja2-2.11.3-8.el9.noarch.rpm 972 kB/s | 249 kB 00:00 2026-02-20T22:32:30.578 INFO:teuthology.orchestra.run.trial035.stdout:(6/7): python3-typing-extensions-4.15.0-1.el9.n 1.7 MB/s | 86 kB 00:00 2026-02-20T22:32:30.583 INFO:teuthology.orchestra.run.trial035.stdout:(7/7): python3-asyncssh-2.13.2-5.el9.noarch.rpm 3.1 MB/s | 548 kB 00:00 2026-02-20T22:32:30.585 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:30.585 INFO:teuthology.orchestra.run.trial035.stdout:Total 16 MB/s | 7.1 MB 00:00 2026-02-20T22:32:30.593 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:32:30.603 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:32:30.603 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:32:30.622 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:30.629 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:30.629 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:30.642 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:27 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:30.699 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:32:30.700 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:32:30.700 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:30.701 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:30.706 INFO:teuthology.orchestra.run.trial073.stdout:Package ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:30.724 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:30.724 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:30.725 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:30.746 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install cephadm 2026-02-20T22:32:30.791 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:30.817 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:32:30.826 INFO:teuthology.orchestra.run.trial173.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 1/14 2026-02-20T22:32:30.829 INFO:teuthology.orchestra.run.trial173.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 2/14 2026-02-20T22:32:30.834 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 3/14 2026-02-20T22:32:30.840 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 1/7 2026-02-20T22:32:30.845 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 4/14 2026-02-20T22:32:30.847 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 5/14 2026-02-20T22:32:30.850 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/7 2026-02-20T22:32:30.855 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/7 2026-02-20T22:32:30.874 INFO:teuthology.orchestra.run.trial173.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 6/14 2026-02-20T22:32:30.917 INFO:teuthology.orchestra.run.trial173.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 7/14 2026-02-20T22:32:30.946 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 8/14 2026-02-20T22:32:30.957 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 9/14 2026-02-20T22:32:30.964 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/14 2026-02-20T22:32:30.967 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 11/14 2026-02-20T22:32:30.974 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 12/14 2026-02-20T22:32:31.056 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:31.077 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T22:32:31.101 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 5/7 2026-02-20T22:32:31.125 INFO:teuthology.orchestra.run.trial035.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 6/7 2026-02-20T22:32:31.126 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T22:32:31.139 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:31.140 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:31.140 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:31.140 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:31.140 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:31.140 INFO:teuthology.orchestra.run.trial073.stdout: cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 1.0 M 2026-02-20T22:32:31.140 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 1.0 M 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 1.0 M 2026-02-20T22:32:31.141 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:31.231 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T22:32:31.231 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/7 2026-02-20T22:32:31.231 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/7 2026-02-20T22:32:31.231 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 3/7 2026-02-20T22:32:31.232 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T22:32:31.232 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 5/7 2026-02-20T22:32:31.232 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 6/7 2026-02-20T22:32:31.260 INFO:teuthology.orchestra.run.trial073.stdout:cephadm-20.2.0-677.gf7870454.el9.noarch.rpm 8.3 MB/s | 1.0 MB 00:00 2026-02-20T22:32:31.260 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:31.260 INFO:teuthology.orchestra.run.trial073.stdout:Total 8.3 MB/s | 1.0 MB 00:00 2026-02-20T22:32:31.260 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:31.263 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:31.263 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:31.266 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:31.267 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:31.285 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:31.287 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 7/7 2026-02-20T22:32:31.287 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:31.288 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:31.318 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-fuse 2026-02-20T22:32:31.346 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:31.360 INFO:teuthology.orchestra.run.trial073.stdout: Installing : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:31.424 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:31.478 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:32:31.478 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:31.478 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:31.479 INFO:teuthology.orchestra.run.trial073.stdout: cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:31.479 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:31.479 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:31.506 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-immutable-object-cache 2026-02-20T22:32:31.627 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:40 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:31.711 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:31.711 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:31.711 INFO:teuthology.orchestra.run.trial035.stdout: Package Architecture Version Repository Size 2026-02-20T22:32:31.711 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:31.711 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:31.711 INFO:teuthology.orchestra.run.trial035.stdout: ceph-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 943 k 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 943 k 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 2.7 M 2026-02-20T22:32:31.712 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:31.823 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:31.831 INFO:teuthology.orchestra.run.trial035.stdout:ceph-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 7.7 MB/s | 943 kB 00:00 2026-02-20T22:32:31.831 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:31.831 INFO:teuthology.orchestra.run.trial035.stdout:Total 7.7 MB/s | 943 kB 00:00 2026-02-20T22:32:31.832 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:31.836 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:31.836 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:31.869 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:31.869 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:31.906 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:31.906 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repo Size 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-677.gf7870454.el9 ceph 154 k 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 154 k 2026-02-20T22:32:31.907 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 447 k 2026-02-20T22:32:31.908 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:31.958 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:31.975 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:31.992 INFO:teuthology.orchestra.run.trial073.stdout:ceph-immutable-object-cache-20.2.0-677.gf787045 1.8 MB/s | 154 kB 00:00 2026-02-20T22:32:31.992 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:31.992 INFO:teuthology.orchestra.run.trial073.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-20T22:32:31.992 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:31.997 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:31.997 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:32.024 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:32.024 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:32.074 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:32.075 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:32.097 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:32.097 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:32.097 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-20T22:32:32.097 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:32.124 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 13/14 2026-02-20T22:32:32.129 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T22:32:32.225 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:32.281 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:32.281 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:32.282 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:32.282 INFO:teuthology.orchestra.run.trial035.stdout: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:32.282 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:32.282 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:32.307 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install ceph-volume 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 1/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 2/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 3/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 4/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 5/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 6/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 7/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 8/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 9/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 10/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 11/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 12/14 2026-02-20T22:32:32.322 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 13/14 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 14/14 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-20T22:32:32.377 INFO:teuthology.orchestra.run.trial173.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-20T22:32:32.378 INFO:teuthology.orchestra.run.trial173.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-20T22:32:32.378 INFO:teuthology.orchestra.run.trial173.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-20T22:32:32.378 INFO:teuthology.orchestra.run.trial173.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-20T22:32:32.378 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:32.378 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:32:32.395 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:32:32.395 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:32.395 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:32.395 INFO:teuthology.orchestra.run.trial073.stdout: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:32.395 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:32.395 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:32.410 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-20T22:32:32.425 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-mgr 2026-02-20T22:32:32.616 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:41 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:32.698 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:32.699 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:32.699 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repository Size 2026-02-20T22:32:32.699 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:32.699 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:32.699 INFO:teuthology.orchestra.run.trial035.stdout: ceph-volume noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 297 k 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:Install 2 Packages 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 648 k 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 2.2 M 2026-02-20T22:32:32.700 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:32.714 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:00:34 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:32:32.733 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:29 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:32.796 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout:====================================================================================== 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout:====================================================================================== 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 7.4 M 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-20T22:32:32.797 INFO:teuthology.orchestra.run.trial173.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:32.798 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:32:32.799 INFO:teuthology.orchestra.run.trial173.stdout:====================================================================================== 2026-02-20T22:32:32.799 INFO:teuthology.orchestra.run.trial173.stdout:Install 12 Packages 2026-02-20T22:32:32.799 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:32:32.800 INFO:teuthology.orchestra.run.trial073.stdout:Package ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:32.800 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 43 M 2026-02-20T22:32:32.800 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 234 M 2026-02-20T22:32:32.800 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:32:32.815 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:32.816 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:32.816 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:32.819 INFO:teuthology.orchestra.run.trial035.stdout:(1/2): cryptsetup-2.8.1-3.el9.x86_64.rpm 5.8 MB/s | 351 kB 00:00 2026-02-20T22:32:32.838 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-mgr-dashboard 2026-02-20T22:32:32.857 INFO:teuthology.orchestra.run.trial035.stdout:(2/2): ceph-volume-20.2.0-677.gf7870454.el9.noa 3.0 MB/s | 297 kB 00:00 2026-02-20T22:32:32.857 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:32.857 INFO:teuthology.orchestra.run.trial035.stdout:Total 4.0 MB/s | 648 kB 00:00 2026-02-20T22:32:32.866 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:32.873 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:32.873 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:32.918 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:32.918 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:33.000 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:33.063 INFO:teuthology.orchestra.run.trial035.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 1/2 2026-02-20T22:32:33.065 INFO:teuthology.orchestra.run.trial035.stdout: Installing : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T22:32:33.080 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T22:32:33.080 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:33.080 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-20T22:32:33.080 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:33.147 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:30 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:33.175 INFO:teuthology.orchestra.run.trial173.stdout:(1/12): ceph-mgr-diskprediction-local-20.2.0-67 32 MB/s | 7.4 MB 00:00 2026-02-20T22:32:33.229 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:33.229 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:33.229 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-dashboard noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 11 M 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: ceph-grafana-dashboards noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 43 k 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: ceph-prometheus-alerts noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 17 k 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-20T22:32:33.230 INFO:teuthology.orchestra.run.trial073.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:33.231 INFO:teuthology.orchestra.run.trial073.stdout:Install 14 Packages 2026-02-20T22:32:33.232 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:33.232 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 16 M 2026-02-20T22:32:33.232 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 158 M 2026-02-20T22:32:33.233 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:33.306 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 1/2 2026-02-20T22:32:33.363 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 2/2 2026-02-20T22:32:33.363 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:33.364 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:33.364 INFO:teuthology.orchestra.run.trial035.stdout: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch cryptsetup-2.8.1-3.el9.x86_64 2026-02-20T22:32:33.364 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:33.364 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:33.392 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install librados-devel 2026-02-20T22:32:33.600 INFO:teuthology.orchestra.run.trial173.stdout:(2/12): flexiblas-3.0.4-9.el9.x86_64.rpm 69 kB/s | 30 kB 00:00 2026-02-20T22:32:33.705 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:42 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:33.789 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:33.790 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:33.790 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repo Size 2026-02-20T22:32:33.790 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:33.790 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout: librados-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 126 k 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 126 k 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 449 k 2026-02-20T22:32:33.791 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:33.878 INFO:teuthology.orchestra.run.trial035.stdout:librados-devel-20.2.0-677.gf7870454.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-20T22:32:33.878 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:33.878 INFO:teuthology.orchestra.run.trial035.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-20T22:32:33.878 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:33.880 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:33.880 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:33.912 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:33.912 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:33.940 INFO:teuthology.orchestra.run.trial173.stdout:(3/12): libquadmath-11.5.0-14.el9.x86_64.rpm 185 kB/s | 184 kB 00:00 2026-02-20T22:32:33.966 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:33.983 INFO:teuthology.orchestra.run.trial035.stdout: Installing : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:33.994 INFO:teuthology.orchestra.run.trial073.stdout:(1/14): ceph-prometheus-alerts-20.2.0-677.gf787 283 kB/s | 17 kB 00:00 2026-02-20T22:32:34.009 INFO:teuthology.orchestra.run.trial073.stdout:(2/14): ceph-grafana-dashboards-20.2.0-677.gf78 566 kB/s | 43 kB 00:00 2026-02-20T22:32:34.039 INFO:teuthology.orchestra.run.trial173.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-9.el9.x 150 kB/s | 15 kB 00:00 2026-02-20T22:32:34.061 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:34.120 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:34.120 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:34.120 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:34.120 INFO:teuthology.orchestra.run.trial035.stdout: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:34.120 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:34.121 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:34.147 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install libcephfs2 2026-02-20T22:32:34.217 INFO:teuthology.orchestra.run.trial173.stdout:(5/12): openblas-0.3.29-1.el9.x86_64.rpm 237 kB/s | 42 kB 00:00 2026-02-20T22:32:34.227 INFO:teuthology.orchestra.run.trial073.stdout:(3/14): ceph-mgr-dashboard-20.2.0-677.gf7870454 36 MB/s | 11 MB 00:00 2026-02-20T22:32:34.320 INFO:teuthology.orchestra.run.trial073.stdout:(4/14): python3-jmespath-1.0.1-1.el9.noarch.rpm 153 kB/s | 48 kB 00:00 2026-02-20T22:32:34.326 INFO:teuthology.orchestra.run.trial173.stdout:(6/12): libgfortran-11.5.0-14.el9.x86_64.rpm 575 kB/s | 794 kB 00:01 2026-02-20T22:32:34.462 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:43 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:34.527 INFO:teuthology.orchestra.run.trial035.stdout:Package libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:34.546 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:34.546 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:34.546 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:34.568 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install libcephfs-devel 2026-02-20T22:32:34.659 INFO:teuthology.orchestra.run.trial073.stdout:(5/14): protobuf-3.14.0-17.el9.x86_64.rpm 1.5 MB/s | 1.0 MB 00:00 2026-02-20T22:32:34.661 INFO:teuthology.orchestra.run.trial173.stdout:(7/12): python3-devel-3.9.25-3.el9.x86_64.rpm 731 kB/s | 244 kB 00:00 2026-02-20T22:32:34.737 INFO:teuthology.orchestra.run.trial073.stdout:(6/14): python3-protobuf-3.14.0-17.el9.noarch.r 525 kB/s | 267 kB 00:00 2026-02-20T22:32:34.781 INFO:teuthology.orchestra.run.trial073.stdout:(7/14): grpc-data-1.46.7-10.el9.noarch.rpm 443 kB/s | 19 kB 00:00 2026-02-20T22:32:34.782 INFO:teuthology.orchestra.run.trial073.stdout:(8/14): abseil-cpp-20211102.0-4.el9.x86_64.rpm 4.4 MB/s | 551 kB 00:00 2026-02-20T22:32:34.822 INFO:teuthology.orchestra.run.trial073.stdout:(9/14): python3-grpcio-tools-1.46.7-10.el9.x86_ 3.5 MB/s | 144 kB 00:00 2026-02-20T22:32:34.840 INFO:teuthology.orchestra.run.trial073.stdout:(10/14): python3-repoze-lru-0.7-16.el9.noarch.r 1.7 MB/s | 31 kB 00:00 2026-02-20T22:32:34.867 INFO:teuthology.orchestra.run.trial073.stdout:(11/14): python3-routes-2.5.1-5.el9.noarch.rpm 6.9 MB/s | 188 kB 00:00 2026-02-20T22:32:34.870 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:43 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:34.884 INFO:teuthology.orchestra.run.trial073.stdout:(12/14): python3-xmltodict-0.12.0-15.el9.noarch 1.2 MB/s | 22 kB 00:00 2026-02-20T22:32:34.954 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:34.955 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:34.955 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repo Size 2026-02-20T22:32:34.955 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:34.955 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:34.955 INFO:teuthology.orchestra.run.trial035.stdout: libcephfs-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 34 k 2026-02-20T22:32:34.955 INFO:teuthology.orchestra.run.trial035.stdout:Installing dependencies: 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout: libcephfs-proxy2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 k 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout:Install 2 Packages 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 58 k 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 207 k 2026-02-20T22:32:34.956 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:35.019 INFO:teuthology.orchestra.run.trial035.stdout:(1/2): libcephfs-devel-20.2.0-677.gf7870454.el9 542 kB/s | 34 kB 00:00 2026-02-20T22:32:35.022 INFO:teuthology.orchestra.run.trial035.stdout:(2/2): libcephfs-proxy2-20.2.0-677.gf7870454.el 362 kB/s | 24 kB 00:00 2026-02-20T22:32:35.023 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:35.023 INFO:teuthology.orchestra.run.trial035.stdout:Total 857 kB/s | 58 kB 00:00 2026-02-20T22:32:35.023 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:35.026 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:35.026 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:35.032 INFO:teuthology.orchestra.run.trial073.stdout:(13/14): python3-grpcio-1.46.7-10.el9.x86_64.rp 8.1 MB/s | 2.0 MB 00:00 2026-02-20T22:32:35.059 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:35.059 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:35.108 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:35.109 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:32:35.124 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:32:35.141 INFO:teuthology.orchestra.run.trial035.stdout: Installing : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:32:35.194 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:32:35.194 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:32:35.250 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:32:35.250 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:35.250 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:35.250 INFO:teuthology.orchestra.run.trial035.stdout: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:35.250 INFO:teuthology.orchestra.run.trial035.stdout: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:35.251 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:35.251 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:35.276 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install librados2 2026-02-20T22:32:35.578 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:44 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:35.643 INFO:teuthology.orchestra.run.trial035.stdout:Package librados2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:35.661 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:35.662 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:35.662 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:35.682 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install librbd1 2026-02-20T22:32:35.884 INFO:teuthology.orchestra.run.trial073.stdout:(14/14): protobuf-compiler-3.14.0-17.el9.x86_64 551 kB/s | 862 kB 00:01 2026-02-20T22:32:35.888 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:35.888 INFO:teuthology.orchestra.run.trial073.stdout:Total 5.9 MB/s | 16 MB 00:02 2026-02-20T22:32:35.922 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:35.931 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:35.932 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:35.986 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:44 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:36.027 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:36.028 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:36.051 INFO:teuthology.orchestra.run.trial035.stdout:Package librbd1-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:36.070 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:36.071 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:36.071 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:36.092 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install python3-rados 2026-02-20T22:32:36.146 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:36.153 INFO:teuthology.orchestra.run.trial073.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 1/14 2026-02-20T22:32:36.157 INFO:teuthology.orchestra.run.trial073.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 2/14 2026-02-20T22:32:36.162 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 3/14 2026-02-20T22:32:36.173 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 4/14 2026-02-20T22:32:36.175 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 5/14 2026-02-20T22:32:36.203 INFO:teuthology.orchestra.run.trial073.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 6/14 2026-02-20T22:32:36.246 INFO:teuthology.orchestra.run.trial073.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 7/14 2026-02-20T22:32:36.274 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 8/14 2026-02-20T22:32:36.284 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 9/14 2026-02-20T22:32:36.291 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/14 2026-02-20T22:32:36.294 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 11/14 2026-02-20T22:32:36.301 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 12/14 2026-02-20T22:32:36.403 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:45 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Package python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:36.487 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:36.488 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:36.489 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:36.509 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install python3-rgw 2026-02-20T22:32:36.822 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:45 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:36.889 INFO:teuthology.orchestra.run.trial035.stdout:Package python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:36.907 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:36.907 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:36.907 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:36.929 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install python3-cephfs 2026-02-20T22:32:37.121 INFO:teuthology.orchestra.run.trial173.stdout:(8/12): flexiblas-netlib-3.0.4-9.el9.x86_64.rpm 869 kB/s | 3.0 MB 00:03 2026-02-20T22:32:37.231 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:46 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:37.296 INFO:teuthology.orchestra.run.trial035.stdout:Package python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:37.314 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:37.314 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:37.315 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:37.335 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install python3-rbd 2026-02-20T22:32:37.436 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 13/14 2026-02-20T22:32:37.441 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T22:32:37.640 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:46 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 1/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 2/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 3/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 4/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 5/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 6/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 7/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 8/14 2026-02-20T22:32:37.645 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 9/14 2026-02-20T22:32:37.646 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 10/14 2026-02-20T22:32:37.646 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 11/14 2026-02-20T22:32:37.646 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 12/14 2026-02-20T22:32:37.646 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 13/14 2026-02-20T22:32:37.699 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 14/14 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-20T22:32:37.700 INFO:teuthology.orchestra.run.trial073.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:37.701 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:37.702 INFO:teuthology.orchestra.run.trial173.stdout:(9/12): python3-numpy-f2py-1.23.5-2.el9.x86_64. 764 kB/s | 442 kB 00:00 2026-02-20T22:32:37.704 INFO:teuthology.orchestra.run.trial035.stdout:Package python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:37.723 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:37.723 INFO:teuthology.orchestra.run.trial035.stdout:Nothing to do. 2026-02-20T22:32:37.723 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:37.732 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-20T22:32:37.745 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install rbd-fuse 2026-02-20T22:32:38.043 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:35 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:38.055 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:38.128 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout:====================================================================================== 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout:====================================================================================== 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 7.4 M 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-20T22:32:38.129 INFO:teuthology.orchestra.run.trial073.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:38.130 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:38.131 INFO:teuthology.orchestra.run.trial073.stdout:====================================================================================== 2026-02-20T22:32:38.131 INFO:teuthology.orchestra.run.trial073.stdout:Install 12 Packages 2026-02-20T22:32:38.131 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:38.131 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 43 M 2026-02-20T22:32:38.131 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 234 M 2026-02-20T22:32:38.131 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:38.139 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout: Package Architecture Version Repository Size 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout: rbd-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 91 k 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:38.140 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:38.141 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 91 k 2026-02-20T22:32:38.141 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 238 k 2026-02-20T22:32:38.141 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:38.214 INFO:teuthology.orchestra.run.trial035.stdout:rbd-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-20T22:32:38.214 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:38.214 INFO:teuthology.orchestra.run.trial035.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-20T22:32:38.215 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:38.219 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:38.219 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:38.251 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:38.251 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:38.303 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:38.319 INFO:teuthology.orchestra.run.trial035.stdout: Installing : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:38.404 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:38.428 INFO:teuthology.orchestra.run.trial073.stdout:(1/12): libquadmath-11.5.0-14.el9.x86_64.rpm 1.2 MB/s | 184 kB 00:00 2026-02-20T22:32:38.461 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:38.461 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:38.461 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:38.461 INFO:teuthology.orchestra.run.trial035.stdout: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:38.462 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:38.462 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:38.472 INFO:teuthology.orchestra.run.trial073.stdout:(2/12): libgfortran-11.5.0-14.el9.x86_64.rpm 4.1 MB/s | 794 kB 00:00 2026-02-20T22:32:38.476 INFO:teuthology.orchestra.run.trial073.stdout:(3/12): flexiblas-3.0.4-9.el9.x86_64.rpm 622 kB/s | 30 kB 00:00 2026-02-20T22:32:38.489 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install rbd-mirror 2026-02-20T22:32:38.497 INFO:teuthology.orchestra.run.trial073.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-9.el9.x 682 kB/s | 15 kB 00:00 2026-02-20T22:32:38.512 INFO:teuthology.orchestra.run.trial073.stdout:(5/12): ceph-mgr-diskprediction-local-20.2.0-67 32 MB/s | 7.4 MB 00:00 2026-02-20T22:32:38.520 INFO:teuthology.orchestra.run.trial073.stdout:(6/12): openblas-0.3.29-1.el9.x86_64.rpm 1.9 MB/s | 42 kB 00:00 2026-02-20T22:32:38.565 INFO:teuthology.orchestra.run.trial073.stdout:(7/12): python3-devel-3.9.25-3.el9.x86_64.rpm 5.2 MB/s | 244 kB 00:00 2026-02-20T22:32:38.642 INFO:teuthology.orchestra.run.trial073.stdout:(8/12): flexiblas-netlib-3.0.4-9.el9.x86_64.rpm 18 MB/s | 3.0 MB 00:00 2026-02-20T22:32:38.668 INFO:teuthology.orchestra.run.trial073.stdout:(9/12): python3-numpy-f2py-1.23.5-2.el9.x86_64. 17 MB/s | 442 kB 00:00 2026-02-20T22:32:38.704 INFO:teuthology.orchestra.run.trial073.stdout:(10/12): openblas-openmp-0.3.29-1.el9.x86_64.rp 28 MB/s | 5.3 MB 00:00 2026-02-20T22:32:38.757 INFO:teuthology.orchestra.run.trial073.stdout:(11/12): python3-numpy-1.23.5-2.el9.x86_64.rpm 32 MB/s | 6.1 MB 00:00 2026-02-20T22:32:38.800 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:38.819 INFO:teuthology.orchestra.run.trial073.stdout:(12/12): python3-scipy-1.9.3-2.el9.x86_64.rpm 128 MB/s | 19 MB 00:00 2026-02-20T22:32:38.819 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:38.819 INFO:teuthology.orchestra.run.trial073.stdout:Total 62 MB/s | 43 MB 00:00 2026-02-20T22:32:38.884 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:38.884 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:38.884 INFO:teuthology.orchestra.run.trial035.stdout: Package Arch Version Repo Size 2026-02-20T22:32:38.884 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout: rbd-mirror x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.9 M 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 2.9 M 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 11 M 2026-02-20T22:32:38.885 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:38.978 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:38.991 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:38.991 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:39.034 INFO:teuthology.orchestra.run.trial035.stdout:rbd-mirror-20.2.0-677.gf7870454.el9.x86_64.rpm 19 MB/s | 2.9 MB 00:00 2026-02-20T22:32:39.035 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:39.035 INFO:teuthology.orchestra.run.trial035.stdout:Total 19 MB/s | 2.9 MB 00:00 2026-02-20T22:32:39.035 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:39.040 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:39.040 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:39.080 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:39.080 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:39.194 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:39.194 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:39.260 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:39.262 INFO:teuthology.orchestra.run.trial035.stdout: Installing : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:39.285 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:39.285 INFO:teuthology.orchestra.run.trial035.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:39.285 INFO:teuthology.orchestra.run.trial035.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-20T22:32:39.285 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T22:32:39.285 INFO:teuthology.orchestra.run.trial035.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T22:32:39.285 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:39.410 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:39.413 INFO:teuthology.orchestra.run.trial073.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 1/12 2026-02-20T22:32:39.419 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 2/12 2026-02-20T22:32:39.453 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 3/12 2026-02-20T22:32:39.457 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 4/12 2026-02-20T22:32:39.517 INFO:teuthology.orchestra.run.trial073.stdout: Installing : openblas-0.3.29-1.el9.x86_64 5/12 2026-02-20T22:32:39.520 INFO:teuthology.orchestra.run.trial073.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 6/12 2026-02-20T22:32:39.541 INFO:teuthology.orchestra.run.trial073.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 7/12 2026-02-20T22:32:39.623 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:39.623 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:39.623 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:39.623 INFO:teuthology.orchestra.run.trial035.stdout: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:39.623 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:39.623 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:39.650 DEBUG:teuthology.orchestra.run.trial035:> sudo yum -y install rbd-nbd 2026-02-20T22:32:39.860 INFO:teuthology.orchestra.run.trial073.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 8/12 2026-02-20T22:32:39.932 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 9/12 2026-02-20T22:32:39.964 INFO:teuthology.orchestra.run.trial035.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:31:51 PM UTC. 2026-02-20T22:32:40.048 INFO:teuthology.orchestra.run.trial035.stdout:Dependencies resolved. 2026-02-20T22:32:40.048 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:40.048 INFO:teuthology.orchestra.run.trial035.stdout: Package Architecture Version Repository Size 2026-02-20T22:32:40.048 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:40.048 INFO:teuthology.orchestra.run.trial035.stdout:Installing: 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout: rbd-nbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 180 k 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout:Transaction Summary 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout:================================================================================ 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout:Install 1 Package 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout:Total download size: 180 k 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout:Installed size: 498 k 2026-02-20T22:32:40.049 INFO:teuthology.orchestra.run.trial035.stdout:Downloading Packages: 2026-02-20T22:32:40.134 INFO:teuthology.orchestra.run.trial035.stdout:rbd-nbd-20.2.0-677.gf7870454.el9.x86_64.rpm 2.0 MB/s | 180 kB 00:00 2026-02-20T22:32:40.135 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:40.135 INFO:teuthology.orchestra.run.trial035.stdout:Total 2.0 MB/s | 180 kB 00:00 2026-02-20T22:32:40.135 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction check 2026-02-20T22:32:40.139 INFO:teuthology.orchestra.run.trial035.stdout:Transaction check succeeded. 2026-02-20T22:32:40.140 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction test 2026-02-20T22:32:40.171 INFO:teuthology.orchestra.run.trial035.stdout:Transaction test succeeded. 2026-02-20T22:32:40.171 INFO:teuthology.orchestra.run.trial035.stdout:Running transaction 2026-02-20T22:32:40.227 INFO:teuthology.orchestra.run.trial035.stdout: Preparing : 1/1 2026-02-20T22:32:40.244 INFO:teuthology.orchestra.run.trial035.stdout: Installing : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:40.328 INFO:teuthology.orchestra.run.trial035.stdout: Running scriptlet: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:40.386 INFO:teuthology.orchestra.run.trial035.stdout: Verifying : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:40.387 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:40.387 INFO:teuthology.orchestra.run.trial035.stdout:Installed: 2026-02-20T22:32:40.387 INFO:teuthology.orchestra.run.trial035.stdout: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:40.387 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:32:40.387 INFO:teuthology.orchestra.run.trial035.stdout:Complete! 2026-02-20T22:32:40.418 DEBUG:teuthology.parallel:result is None 2026-02-20T22:32:40.591 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T22:32:40.853 INFO:teuthology.orchestra.run.trial173.stdout:(10/12): openblas-openmp-0.3.29-1.el9.x86_64.rp 815 kB/s | 5.3 MB 00:06 2026-02-20T22:32:41.062 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 11/12 2026-02-20T22:32:41.063 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 1/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 2/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 3/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 4/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 5/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 6/12 2026-02-20T22:32:41.341 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 7/12 2026-02-20T22:32:41.342 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 8/12 2026-02-20T22:32:41.342 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 9/12 2026-02-20T22:32:41.342 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T22:32:41.342 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 11/12 2026-02-20T22:32:41.398 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 12/12 2026-02-20T22:32:41.398 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:41.398 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-diskprediction-local-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-20T22:32:41.399 INFO:teuthology.orchestra.run.trial073.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-20T22:32:41.400 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:41.400 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:41.436 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-mgr-rook 2026-02-20T22:32:41.735 INFO:teuthology.orchestra.run.trial173.stdout:(11/12): python3-numpy-1.23.5-2.el9.x86_64.rpm 887 kB/s | 6.1 MB 00:07 2026-02-20T22:32:41.741 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:38 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:41.823 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-rook noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 50 k 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-20T22:32:41.825 INFO:teuthology.orchestra.run.trial073.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout:Install 10 Packages 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:41.826 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 2.0 M 2026-02-20T22:32:41.827 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 25 M 2026-02-20T22:32:41.827 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:42.752 INFO:teuthology.orchestra.run.trial073.stdout:(1/10): ceph-mgr-rook-20.2.0-677.gf7870454.el9. 677 kB/s | 50 kB 00:00 2026-02-20T22:32:43.250 INFO:teuthology.orchestra.run.trial073.stdout:(2/10): python3-requests-oauthlib-1.3.0-12.el9. 108 kB/s | 54 kB 00:00 2026-02-20T22:32:43.292 INFO:teuthology.orchestra.run.trial073.stdout:(3/10): python3-pyasn1-0.4.8-6.el9.noarch.rpm 259 kB/s | 159 kB 00:00 2026-02-20T22:32:43.316 INFO:teuthology.orchestra.run.trial073.stdout:(4/10): python3-cachetools-4.2.4-1.el9.noarch.r 492 kB/s | 32 kB 00:00 2026-02-20T22:32:43.331 INFO:teuthology.orchestra.run.trial073.stdout:(5/10): python3-certifi-2023.05.07-4.el9.noarch 356 kB/s | 14 kB 00:00 2026-02-20T22:32:43.353 INFO:teuthology.orchestra.run.trial073.stdout:(6/10): python3-google-auth-2.45.0-1.el9.noarch 6.7 MB/s | 254 kB 00:00 2026-02-20T22:32:43.371 INFO:teuthology.orchestra.run.trial073.stdout:(7/10): python3-rsa-4.9-2.el9.noarch.rpm 3.3 MB/s | 59 kB 00:00 2026-02-20T22:32:43.383 INFO:teuthology.orchestra.run.trial073.stdout:(8/10): python3-kubernetes-26.1.0-3.el9.noarch. 20 MB/s | 1.0 MB 00:00 2026-02-20T22:32:43.388 INFO:teuthology.orchestra.run.trial073.stdout:(9/10): python3-websocket-client-1.2.3-2.el9.no 4.9 MB/s | 90 kB 00:00 2026-02-20T22:32:43.514 INFO:teuthology.orchestra.run.trial073.stdout:(10/10): python3-pyasn1-modules-0.4.8-6.el9.noa 334 kB/s | 279 kB 00:00 2026-02-20T22:32:43.516 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:43.516 INFO:teuthology.orchestra.run.trial073.stdout:Total 1.2 MB/s | 2.0 MB 00:01 2026-02-20T22:32:43.539 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:43.547 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:43.548 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:43.587 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:43.587 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:43.662 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:43.713 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/10 2026-02-20T22:32:43.725 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/10 2026-02-20T22:32:43.740 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/10 2026-02-20T22:32:43.745 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/10 2026-02-20T22:32:43.753 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/10 2026-02-20T22:32:43.793 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/10 2026-02-20T22:32:43.805 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T22:32:44.127 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 8/10 2026-02-20T22:32:44.141 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 9/10 2026-02-20T22:32:44.142 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T22:32:44.248 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 1/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 2/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 3/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 4/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 5/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 6/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 8/10 2026-02-20T22:32:44.249 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 9/10 2026-02-20T22:32:44.309 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 10/10 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-20T22:32:44.310 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-20T22:32:44.311 INFO:teuthology.orchestra.run.trial073.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-20T22:32:44.311 INFO:teuthology.orchestra.run.trial073.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-20T22:32:44.311 INFO:teuthology.orchestra.run.trial073.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-20T22:32:44.311 INFO:teuthology.orchestra.run.trial073.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-20T22:32:44.311 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:44.311 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:44.340 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-mgr-cephadm 2026-02-20T22:32:44.647 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:41 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:44.730 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:44.731 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:44.731 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:44.731 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:44.731 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 173 k 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:44.732 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:44.733 INFO:teuthology.orchestra.run.trial073.stdout:Install 7 Packages 2026-02-20T22:32:44.733 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:44.733 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 7.1 M 2026-02-20T22:32:44.733 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 33 M 2026-02-20T22:32:44.733 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:44.982 INFO:teuthology.orchestra.run.trial073.stdout:(1/7): python3-jinja2-2.11.3-8.el9.noarch.rpm 3.8 MB/s | 249 kB 00:00 2026-02-20T22:32:44.993 INFO:teuthology.orchestra.run.trial073.stdout:(2/7): python3-markupsafe-1.1.1-12.el9.x86_64.r 3.2 MB/s | 35 kB 00:00 2026-02-20T22:32:45.003 INFO:teuthology.orchestra.run.trial073.stdout:(3/7): ceph-mgr-cephadm-20.2.0-677.gf7870454.el 2.0 MB/s | 173 kB 00:00 2026-02-20T22:32:45.022 INFO:teuthology.orchestra.run.trial073.stdout:(4/7): python3-babel-2.9.1-2.el9.noarch.rpm 57 MB/s | 6.0 MB 00:00 2026-02-20T22:32:45.128 INFO:teuthology.orchestra.run.trial073.stdout:(5/7): python3-natsort-7.1.1-5.el9.noarch.rpm 462 kB/s | 58 kB 00:00 2026-02-20T22:32:45.163 INFO:teuthology.orchestra.run.trial073.stdout:(6/7): python3-typing-extensions-4.15.0-1.el9.n 614 kB/s | 86 kB 00:00 2026-02-20T22:32:45.201 INFO:teuthology.orchestra.run.trial073.stdout:(7/7): python3-asyncssh-2.13.2-5.el9.noarch.rpm 2.6 MB/s | 548 kB 00:00 2026-02-20T22:32:45.203 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:45.203 INFO:teuthology.orchestra.run.trial073.stdout:Total 15 MB/s | 7.1 MB 00:00 2026-02-20T22:32:45.239 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:45.245 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:45.245 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:45.318 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:45.318 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:45.410 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:45.459 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 1/7 2026-02-20T22:32:45.468 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/7 2026-02-20T22:32:45.474 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/7 2026-02-20T22:32:45.695 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T22:32:45.719 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 5/7 2026-02-20T22:32:45.743 INFO:teuthology.orchestra.run.trial073.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 6/7 2026-02-20T22:32:45.744 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T22:32:45.851 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T22:32:45.852 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/7 2026-02-20T22:32:45.852 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/7 2026-02-20T22:32:45.852 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 3/7 2026-02-20T22:32:45.852 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T22:32:45.852 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 5/7 2026-02-20T22:32:45.852 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 6/7 2026-02-20T22:32:45.908 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 7/7 2026-02-20T22:32:45.908 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:45.908 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:45.908 INFO:teuthology.orchestra.run.trial073.stdout: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:32:45.908 INFO:teuthology.orchestra.run.trial073.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-20T22:32:45.908 INFO:teuthology.orchestra.run.trial073.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-20T22:32:45.909 INFO:teuthology.orchestra.run.trial073.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-20T22:32:45.909 INFO:teuthology.orchestra.run.trial073.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-20T22:32:45.909 INFO:teuthology.orchestra.run.trial073.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-20T22:32:45.909 INFO:teuthology.orchestra.run.trial073.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-20T22:32:45.909 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:45.909 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:45.939 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-fuse 2026-02-20T22:32:46.249 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:43 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:46.333 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:46.333 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:46.333 INFO:teuthology.orchestra.run.trial073.stdout: Package Architecture Version Repository Size 2026-02-20T22:32:46.333 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout: ceph-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 943 k 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:46.334 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 943 k 2026-02-20T22:32:46.335 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 2.7 M 2026-02-20T22:32:46.335 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:46.452 INFO:teuthology.orchestra.run.trial073.stdout:ceph-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 7.7 MB/s | 943 kB 00:00 2026-02-20T22:32:46.453 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:46.453 INFO:teuthology.orchestra.run.trial073.stdout:Total 7.7 MB/s | 943 kB 00:00 2026-02-20T22:32:46.453 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:46.457 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:46.457 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:46.492 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:46.492 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:46.582 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:46.599 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:46.866 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:46.923 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:46.923 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:46.923 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:46.923 INFO:teuthology.orchestra.run.trial073.stdout: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:46.923 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:46.923 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:46.952 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install ceph-volume 2026-02-20T22:32:47.256 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:44 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:47.338 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:47.339 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:47.339 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repository Size 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout: ceph-volume noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 297 k 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:47.340 INFO:teuthology.orchestra.run.trial073.stdout:Install 2 Packages 2026-02-20T22:32:47.341 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:47.341 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 648 k 2026-02-20T22:32:47.341 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 2.2 M 2026-02-20T22:32:47.341 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:47.523 INFO:teuthology.orchestra.run.trial073.stdout:(1/2): ceph-volume-20.2.0-677.gf7870454.el9.noa 3.0 MB/s | 297 kB 00:00 2026-02-20T22:32:47.538 INFO:teuthology.orchestra.run.trial073.stdout:(2/2): cryptsetup-2.8.1-3.el9.x86_64.rpm 3.1 MB/s | 351 kB 00:00 2026-02-20T22:32:47.538 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:47.538 INFO:teuthology.orchestra.run.trial073.stdout:Total 3.2 MB/s | 648 kB 00:00 2026-02-20T22:32:47.546 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:47.552 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:47.552 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:47.596 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:47.596 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:47.676 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:47.739 INFO:teuthology.orchestra.run.trial073.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 1/2 2026-02-20T22:32:47.741 INFO:teuthology.orchestra.run.trial073.stdout: Installing : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T22:32:47.756 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T22:32:47.756 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:47.756 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-20T22:32:47.756 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:47.974 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 1/2 2026-02-20T22:32:48.031 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 2/2 2026-02-20T22:32:48.031 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:48.031 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:48.032 INFO:teuthology.orchestra.run.trial073.stdout: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch cryptsetup-2.8.1-3.el9.x86_64 2026-02-20T22:32:48.032 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:48.032 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:48.059 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install librados-devel 2026-02-20T22:32:48.371 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:45 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:48.454 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repo Size 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout: librados-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 126 k 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:48.455 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:48.456 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 126 k 2026-02-20T22:32:48.456 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 449 k 2026-02-20T22:32:48.456 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:48.541 INFO:teuthology.orchestra.run.trial073.stdout:librados-devel-20.2.0-677.gf7870454.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-20T22:32:48.541 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:48.541 INFO:teuthology.orchestra.run.trial073.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-20T22:32:48.541 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:48.544 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:48.544 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:48.575 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:48.575 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:48.629 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:48.645 INFO:teuthology.orchestra.run.trial073.stdout: Installing : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:48.727 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:48.785 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:48.785 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:48.785 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:48.785 INFO:teuthology.orchestra.run.trial073.stdout: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:48.785 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:48.785 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:48.814 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install libcephfs2 2026-02-20T22:32:49.125 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:46 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:49.190 INFO:teuthology.orchestra.run.trial073.stdout:Package libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:49.208 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:49.209 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:49.209 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:49.230 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install libcephfs-devel 2026-02-20T22:32:49.538 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:46 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:49.622 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:49.623 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repo Size 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout: libcephfs-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 34 k 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout:Installing dependencies: 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout: libcephfs-proxy2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 k 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:49.624 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:49.625 INFO:teuthology.orchestra.run.trial073.stdout:Install 2 Packages 2026-02-20T22:32:49.625 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:49.625 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 58 k 2026-02-20T22:32:49.625 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 207 k 2026-02-20T22:32:49.625 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:49.687 INFO:teuthology.orchestra.run.trial073.stdout:(1/2): libcephfs-devel-20.2.0-677.gf7870454.el9 538 kB/s | 34 kB 00:00 2026-02-20T22:32:49.690 INFO:teuthology.orchestra.run.trial073.stdout:(2/2): libcephfs-proxy2-20.2.0-677.gf7870454.el 365 kB/s | 24 kB 00:00 2026-02-20T22:32:49.691 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:49.691 INFO:teuthology.orchestra.run.trial073.stdout:Total 865 kB/s | 58 kB 00:00 2026-02-20T22:32:49.691 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:49.694 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:49.694 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:49.725 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:49.726 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:49.774 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:49.775 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:32:49.789 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:32:49.805 INFO:teuthology.orchestra.run.trial073.stdout: Installing : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:32:49.862 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:32:49.862 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:32:49.920 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:32:49.920 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:49.920 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:49.920 INFO:teuthology.orchestra.run.trial073.stdout: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:49.920 INFO:teuthology.orchestra.run.trial073.stdout: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:49.921 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:49.921 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:49.949 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install librados2 2026-02-20T22:32:50.262 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:50.326 INFO:teuthology.orchestra.run.trial073.stdout:Package librados2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:50.344 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:50.345 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:50.345 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:50.366 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install librbd1 2026-02-20T22:32:50.679 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:50.744 INFO:teuthology.orchestra.run.trial073.stdout:Package librbd1-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:50.762 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:50.763 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:50.763 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:50.784 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install python3-rados 2026-02-20T22:32:51.093 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:51.160 INFO:teuthology.orchestra.run.trial073.stdout:Package python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:51.178 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:51.179 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:51.179 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:51.201 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install python3-rgw 2026-02-20T22:32:51.510 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:51.575 INFO:teuthology.orchestra.run.trial073.stdout:Package python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:51.593 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:51.594 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:51.594 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:51.615 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install python3-cephfs 2026-02-20T22:32:51.926 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:51.991 INFO:teuthology.orchestra.run.trial073.stdout:Package python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:52.009 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:52.009 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:52.010 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:52.032 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install python3-rbd 2026-02-20T22:32:52.341 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:49 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:52.407 INFO:teuthology.orchestra.run.trial073.stdout:Package python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:32:52.425 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:52.426 INFO:teuthology.orchestra.run.trial073.stdout:Nothing to do. 2026-02-20T22:32:52.426 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:52.447 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install rbd-fuse 2026-02-20T22:32:52.756 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:49 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:52.839 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout: Package Architecture Version Repository Size 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout: rbd-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 91 k 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 91 k 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 238 k 2026-02-20T22:32:52.840 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:52.928 INFO:teuthology.orchestra.run.trial073.stdout:rbd-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 1.0 MB/s | 91 kB 00:00 2026-02-20T22:32:52.929 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:52.929 INFO:teuthology.orchestra.run.trial073.stdout:Total 1.0 MB/s | 91 kB 00:00 2026-02-20T22:32:52.929 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:52.932 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:52.933 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:52.963 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:52.964 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:53.015 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:53.031 INFO:teuthology.orchestra.run.trial073.stdout: Installing : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:53.110 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:53.170 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:53.170 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:53.170 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:53.170 INFO:teuthology.orchestra.run.trial073.stdout: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:53.170 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:53.170 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:53.198 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install rbd-mirror 2026-02-20T22:32:53.513 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:50 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:53.597 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:53.597 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:53.597 INFO:teuthology.orchestra.run.trial073.stdout: Package Arch Version Repo Size 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout: rbd-mirror x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.9 M 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 2.9 M 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 11 M 2026-02-20T22:32:53.598 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:53.744 INFO:teuthology.orchestra.run.trial073.stdout:rbd-mirror-20.2.0-677.gf7870454.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-20T22:32:53.745 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:53.745 INFO:teuthology.orchestra.run.trial073.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-20T22:32:53.745 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:53.750 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:53.750 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:53.790 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:53.790 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:53.970 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:53.971 INFO:teuthology.orchestra.run.trial073.stdout: Installing : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:53.994 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:53.994 INFO:teuthology.orchestra.run.trial073.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:32:53.995 INFO:teuthology.orchestra.run.trial073.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-20T22:32:53.995 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T22:32:53.995 INFO:teuthology.orchestra.run.trial073.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T22:32:53.995 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:54.278 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:54.278 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:54.279 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:54.279 INFO:teuthology.orchestra.run.trial073.stdout: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:54.279 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:54.279 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:54.306 DEBUG:teuthology.orchestra.run.trial073:> sudo yum -y install rbd-nbd 2026-02-20T22:32:54.620 INFO:teuthology.orchestra.run.trial073.stdout:Last metadata expiration check: 0:00:51 ago on Fri 20 Feb 2026 10:32:03 PM UTC. 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout:Dependencies resolved. 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout: Package Architecture Version Repository Size 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout:Installing: 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout: rbd-nbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 180 k 2026-02-20T22:32:54.704 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout:Transaction Summary 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout:================================================================================ 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout:Install 1 Package 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout:Total download size: 180 k 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout:Installed size: 498 k 2026-02-20T22:32:54.705 INFO:teuthology.orchestra.run.trial073.stdout:Downloading Packages: 2026-02-20T22:32:54.791 INFO:teuthology.orchestra.run.trial073.stdout:rbd-nbd-20.2.0-677.gf7870454.el9.x86_64.rpm 2.0 MB/s | 180 kB 00:00 2026-02-20T22:32:54.791 INFO:teuthology.orchestra.run.trial073.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:32:54.791 INFO:teuthology.orchestra.run.trial073.stdout:Total 2.0 MB/s | 180 kB 00:00 2026-02-20T22:32:54.792 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction check 2026-02-20T22:32:54.796 INFO:teuthology.orchestra.run.trial073.stdout:Transaction check succeeded. 2026-02-20T22:32:54.796 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction test 2026-02-20T22:32:54.827 INFO:teuthology.orchestra.run.trial073.stdout:Transaction test succeeded. 2026-02-20T22:32:54.827 INFO:teuthology.orchestra.run.trial073.stdout:Running transaction 2026-02-20T22:32:54.884 INFO:teuthology.orchestra.run.trial073.stdout: Preparing : 1/1 2026-02-20T22:32:54.901 INFO:teuthology.orchestra.run.trial073.stdout: Installing : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:54.983 INFO:teuthology.orchestra.run.trial073.stdout: Running scriptlet: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:55.042 INFO:teuthology.orchestra.run.trial073.stdout: Verifying : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:32:55.042 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:55.043 INFO:teuthology.orchestra.run.trial073.stdout:Installed: 2026-02-20T22:32:55.043 INFO:teuthology.orchestra.run.trial073.stdout: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:32:55.043 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:32:55.043 INFO:teuthology.orchestra.run.trial073.stdout:Complete! 2026-02-20T22:32:55.074 DEBUG:teuthology.parallel:result is None 2026-02-20T22:33:00.073 INFO:teuthology.orchestra.run.trial173.stdout:(12/12): python3-scipy-1.9.3-2.el9.x86_64.rpm 882 kB/s | 19 MB 00:22 2026-02-20T22:33:00.076 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:00.076 INFO:teuthology.orchestra.run.trial173.stdout:Total 1.6 MB/s | 43 MB 00:27 2026-02-20T22:33:00.234 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:00.248 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:00.248 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:00.451 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:00.451 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:00.667 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:00.670 INFO:teuthology.orchestra.run.trial173.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 1/12 2026-02-20T22:33:00.676 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 2/12 2026-02-20T22:33:00.710 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 3/12 2026-02-20T22:33:00.715 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 4/12 2026-02-20T22:33:00.774 INFO:teuthology.orchestra.run.trial173.stdout: Installing : openblas-0.3.29-1.el9.x86_64 5/12 2026-02-20T22:33:00.776 INFO:teuthology.orchestra.run.trial173.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 6/12 2026-02-20T22:33:00.798 INFO:teuthology.orchestra.run.trial173.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 7/12 2026-02-20T22:33:01.118 INFO:teuthology.orchestra.run.trial173.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 8/12 2026-02-20T22:33:01.190 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 9/12 2026-02-20T22:33:01.854 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T22:33:02.306 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 11/12 2026-02-20T22:33:02.307 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T22:33:02.601 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 1/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 2/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 3/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 4/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 5/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 6/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 7/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 8/12 2026-02-20T22:33:02.602 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 9/12 2026-02-20T22:33:02.603 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T22:33:02.603 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 11/12 2026-02-20T22:33:02.659 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 12/12 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-diskprediction-local-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-20T22:33:02.660 INFO:teuthology.orchestra.run.trial173.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-20T22:33:02.661 INFO:teuthology.orchestra.run.trial173.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-20T22:33:02.661 INFO:teuthology.orchestra.run.trial173.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-20T22:33:02.661 INFO:teuthology.orchestra.run.trial173.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-20T22:33:02.661 INFO:teuthology.orchestra.run.trial173.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-20T22:33:02.661 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:02.661 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:02.696 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-mgr-rook 2026-02-20T22:33:03.009 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:05 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:03.092 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:03.093 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:03.093 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:33:03.093 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:03.093 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-rook noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 50 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-20T22:33:03.094 INFO:teuthology.orchestra.run.trial173.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout:Install 10 Packages 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 2.0 M 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 25 M 2026-02-20T22:33:03.095 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:03.402 INFO:teuthology.orchestra.run.trial173.stdout:(1/10): ceph-mgr-rook-20.2.0-677.gf7870454.el9. 571 kB/s | 50 kB 00:00 2026-02-20T22:33:03.898 INFO:teuthology.orchestra.run.trial173.stdout:(2/10): python3-requests-oauthlib-1.3.0-12.el9. 108 kB/s | 54 kB 00:00 2026-02-20T22:33:03.980 INFO:teuthology.orchestra.run.trial173.stdout:(3/10): python3-cachetools-4.2.4-1.el9.noarch.r 390 kB/s | 32 kB 00:00 2026-02-20T22:33:04.003 INFO:teuthology.orchestra.run.trial173.stdout:(4/10): python3-pyasn1-0.4.8-6.el9.noarch.rpm 230 kB/s | 159 kB 00:00 2026-02-20T22:33:04.026 INFO:teuthology.orchestra.run.trial173.stdout:(5/10): python3-certifi-2023.05.07-4.el9.noarch 308 kB/s | 14 kB 00:00 2026-02-20T22:33:04.140 INFO:teuthology.orchestra.run.trial173.stdout:(6/10): python3-google-auth-2.45.0-1.el9.noarch 1.8 MB/s | 254 kB 00:00 2026-02-20T22:33:04.210 INFO:teuthology.orchestra.run.trial173.stdout:(7/10): python3-kubernetes-26.1.0-3.el9.noarch. 5.6 MB/s | 1.0 MB 00:00 2026-02-20T22:33:04.232 INFO:teuthology.orchestra.run.trial173.stdout:(8/10): python3-rsa-4.9-2.el9.noarch.rpm 643 kB/s | 59 kB 00:00 2026-02-20T22:33:04.298 INFO:teuthology.orchestra.run.trial173.stdout:(9/10): python3-websocket-client-1.2.3-2.el9.no 1.0 MB/s | 90 kB 00:00 2026-02-20T22:33:04.725 INFO:teuthology.orchestra.run.trial173.stdout:(10/10): python3-pyasn1-modules-0.4.8-6.el9.noa 198 kB/s | 279 kB 00:01 2026-02-20T22:33:04.727 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:04.727 INFO:teuthology.orchestra.run.trial173.stdout:Total 1.2 MB/s | 2.0 MB 00:01 2026-02-20T22:33:04.752 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:04.761 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:04.761 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:04.801 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:04.802 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:04.877 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:04.929 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/10 2026-02-20T22:33:04.941 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/10 2026-02-20T22:33:04.956 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/10 2026-02-20T22:33:04.960 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/10 2026-02-20T22:33:04.968 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/10 2026-02-20T22:33:05.007 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/10 2026-02-20T22:33:05.019 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T22:33:05.338 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 8/10 2026-02-20T22:33:05.352 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 9/10 2026-02-20T22:33:05.353 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 1/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 2/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 3/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 4/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 5/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 6/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 8/10 2026-02-20T22:33:05.463 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 9/10 2026-02-20T22:33:05.521 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 10/10 2026-02-20T22:33:05.521 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:05.521 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:05.521 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:33:05.521 INFO:teuthology.orchestra.run.trial173.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-20T22:33:05.522 INFO:teuthology.orchestra.run.trial173.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-20T22:33:05.523 INFO:teuthology.orchestra.run.trial173.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-20T22:33:05.523 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:05.523 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:05.554 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-mgr-cephadm 2026-02-20T22:33:05.864 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:07 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 173 k 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-20T22:33:05.947 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout:Install 7 Packages 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 7.1 M 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 33 M 2026-02-20T22:33:05.948 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:06.217 INFO:teuthology.orchestra.run.trial173.stdout:(1/7): ceph-mgr-cephadm-20.2.0-677.gf7870454.el 2.0 MB/s | 173 kB 00:00 2026-02-20T22:33:06.635 INFO:teuthology.orchestra.run.trial173.stdout:(2/7): python3-markupsafe-1.1.1-12.el9.x86_64.r 83 kB/s | 35 kB 00:00 2026-02-20T22:33:06.880 INFO:teuthology.orchestra.run.trial173.stdout:(3/7): python3-jinja2-2.11.3-8.el9.noarch.rpm 332 kB/s | 249 kB 00:00 2026-02-20T22:33:07.163 INFO:teuthology.orchestra.run.trial173.stdout:(4/7): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.0 MB/s | 548 kB 00:00 2026-02-20T22:33:07.169 INFO:teuthology.orchestra.run.trial173.stdout:(5/7): python3-natsort-7.1.1-5.el9.noarch.rpm 200 kB/s | 58 kB 00:00 2026-02-20T22:33:07.238 INFO:teuthology.orchestra.run.trial173.stdout:(6/7): python3-typing-extensions-4.15.0-1.el9.n 1.1 MB/s | 86 kB 00:00 2026-02-20T22:33:13.405 INFO:teuthology.orchestra.run.trial173.stdout:(7/7): python3-babel-2.9.1-2.el9.noarch.rpm 840 kB/s | 6.0 MB 00:07 2026-02-20T22:33:13.407 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:13.407 INFO:teuthology.orchestra.run.trial173.stdout:Total 973 kB/s | 7.1 MB 00:07 2026-02-20T22:33:13.444 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:13.451 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:13.451 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:13.524 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:13.525 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:13.615 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:13.664 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 1/7 2026-02-20T22:33:13.674 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/7 2026-02-20T22:33:13.679 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/7 2026-02-20T22:33:13.898 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T22:33:13.921 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 5/7 2026-02-20T22:33:13.945 INFO:teuthology.orchestra.run.trial173.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 6/7 2026-02-20T22:33:13.946 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T22:33:14.055 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T22:33:14.055 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/7 2026-02-20T22:33:14.055 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/7 2026-02-20T22:33:14.055 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 3/7 2026-02-20T22:33:14.055 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T22:33:14.056 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 5/7 2026-02-20T22:33:14.056 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 6/7 2026-02-20T22:33:14.112 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 7/7 2026-02-20T22:33:14.112 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:14.112 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:14.113 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:14.144 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-fuse 2026-02-20T22:33:14.453 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:16 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:14.537 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:14.537 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:14.537 INFO:teuthology.orchestra.run.trial173.stdout: Package Architecture Version Repository Size 2026-02-20T22:33:14.537 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:14.537 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout: ceph-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 943 k 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 943 k 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 2.7 M 2026-02-20T22:33:14.538 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:14.682 INFO:teuthology.orchestra.run.trial173.stdout:ceph-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 6.4 MB/s | 943 kB 00:00 2026-02-20T22:33:14.682 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:14.682 INFO:teuthology.orchestra.run.trial173.stdout:Total 6.3 MB/s | 943 kB 00:00 2026-02-20T22:33:14.682 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:14.687 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:14.687 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:14.720 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:14.720 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:14.811 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:14.828 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:15.091 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:15.149 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:15.150 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:15.150 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:15.150 INFO:teuthology.orchestra.run.trial173.stdout: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:15.150 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:15.150 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:15.179 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install ceph-volume 2026-02-20T22:33:15.491 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:17 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:15.576 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repository Size 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout: ceph-volume noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 297 k 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Install 2 Packages 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 648 k 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 2.2 M 2026-02-20T22:33:15.577 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:15.789 INFO:teuthology.orchestra.run.trial173.stdout:(1/2): ceph-volume-20.2.0-677.gf7870454.el9.noa 2.9 MB/s | 297 kB 00:00 2026-02-20T22:33:15.993 INFO:teuthology.orchestra.run.trial173.stdout:(2/2): cryptsetup-2.8.1-3.el9.x86_64.rpm 1.1 MB/s | 351 kB 00:00 2026-02-20T22:33:15.995 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:15.996 INFO:teuthology.orchestra.run.trial173.stdout:Total 1.5 MB/s | 648 kB 00:00 2026-02-20T22:33:16.005 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:16.012 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:16.012 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:16.056 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:16.056 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:16.139 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:16.201 INFO:teuthology.orchestra.run.trial173.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 1/2 2026-02-20T22:33:16.203 INFO:teuthology.orchestra.run.trial173.stdout: Installing : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T22:33:16.217 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T22:33:16.217 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:33:16.217 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-20T22:33:16.217 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:16.436 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 1/2 2026-02-20T22:33:16.494 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 2/2 2026-02-20T22:33:16.494 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:16.495 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:16.495 INFO:teuthology.orchestra.run.trial173.stdout: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch cryptsetup-2.8.1-3.el9.x86_64 2026-02-20T22:33:16.495 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:16.495 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:16.524 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install librados-devel 2026-02-20T22:33:16.837 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:18 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repo Size 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout: librados-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 126 k 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:16.921 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:16.922 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:16.922 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:33:16.922 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:16.922 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 126 k 2026-02-20T22:33:16.922 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 449 k 2026-02-20T22:33:16.922 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:17.006 INFO:teuthology.orchestra.run.trial173.stdout:librados-devel-20.2.0-677.gf7870454.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-20T22:33:17.007 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:17.007 INFO:teuthology.orchestra.run.trial173.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-20T22:33:17.007 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:17.010 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:17.010 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:17.042 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:17.042 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:17.097 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:17.113 INFO:teuthology.orchestra.run.trial173.stdout: Installing : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:17.204 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:17.262 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:17.262 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:17.263 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:17.263 INFO:teuthology.orchestra.run.trial173.stdout: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:17.263 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:17.263 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:17.290 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install libcephfs2 2026-02-20T22:33:17.606 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:19 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:17.670 INFO:teuthology.orchestra.run.trial173.stdout:Package libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:17.689 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:17.690 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:17.690 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:17.711 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install libcephfs-devel 2026-02-20T22:33:18.024 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:20 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repo Size 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout: libcephfs-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 34 k 2026-02-20T22:33:18.108 INFO:teuthology.orchestra.run.trial173.stdout:Installing dependencies: 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout: libcephfs-proxy2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 k 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout:Install 2 Packages 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 58 k 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 207 k 2026-02-20T22:33:18.109 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:18.172 INFO:teuthology.orchestra.run.trial173.stdout:(1/2): libcephfs-devel-20.2.0-677.gf7870454.el9 538 kB/s | 34 kB 00:00 2026-02-20T22:33:18.173 INFO:teuthology.orchestra.run.trial173.stdout:(2/2): libcephfs-proxy2-20.2.0-677.gf7870454.el 371 kB/s | 24 kB 00:00 2026-02-20T22:33:18.174 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:18.174 INFO:teuthology.orchestra.run.trial173.stdout:Total 883 kB/s | 58 kB 00:00 2026-02-20T22:33:18.174 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:18.177 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:18.177 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:18.210 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:18.210 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:18.260 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:18.260 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:33:18.277 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:33:18.293 INFO:teuthology.orchestra.run.trial173.stdout: Installing : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:33:18.348 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:33:18.348 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:18.405 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:18.432 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install librados2 2026-02-20T22:33:18.742 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:20 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:18.807 INFO:teuthology.orchestra.run.trial173.stdout:Package librados2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:18.825 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:18.826 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:18.826 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:18.848 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install librbd1 2026-02-20T22:33:19.152 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:21 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:19.217 INFO:teuthology.orchestra.run.trial173.stdout:Package librbd1-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:19.235 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:19.236 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:19.236 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:19.257 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install python3-rados 2026-02-20T22:33:19.568 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:21 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:19.633 INFO:teuthology.orchestra.run.trial173.stdout:Package python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:19.651 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:19.652 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:19.652 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:19.674 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install python3-rgw 2026-02-20T22:33:19.986 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:21 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:20.051 INFO:teuthology.orchestra.run.trial173.stdout:Package python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:20.069 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:20.070 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:20.070 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:20.091 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install python3-cephfs 2026-02-20T22:33:20.402 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:22 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:20.467 INFO:teuthology.orchestra.run.trial173.stdout:Package python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:20.485 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:20.486 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:20.486 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:20.507 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install python3-rbd 2026-02-20T22:33:20.816 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:22 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:20.881 INFO:teuthology.orchestra.run.trial173.stdout:Package python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:33:20.900 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:20.901 INFO:teuthology.orchestra.run.trial173.stdout:Nothing to do. 2026-02-20T22:33:20.901 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:20.923 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install rbd-fuse 2026-02-20T22:33:21.230 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:23 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:21.314 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:21.314 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:21.314 INFO:teuthology.orchestra.run.trial173.stdout: Package Architecture Version Repository Size 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout: rbd-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 91 k 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 91 k 2026-02-20T22:33:21.315 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 238 k 2026-02-20T22:33:21.316 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:21.390 INFO:teuthology.orchestra.run.trial173.stdout:rbd-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-20T22:33:21.391 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:21.391 INFO:teuthology.orchestra.run.trial173.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-20T22:33:21.391 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:21.394 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:21.395 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:21.425 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:21.425 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:21.477 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:21.494 INFO:teuthology.orchestra.run.trial173.stdout: Installing : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:21.572 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:21.630 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:21.630 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:21.631 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:21.631 INFO:teuthology.orchestra.run.trial173.stdout: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:21.631 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:21.631 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:21.659 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install rbd-mirror 2026-02-20T22:33:21.973 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:23 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:22.058 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:22.058 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:22.058 INFO:teuthology.orchestra.run.trial173.stdout: Package Arch Version Repo Size 2026-02-20T22:33:22.058 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:22.058 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:22.058 INFO:teuthology.orchestra.run.trial173.stdout: rbd-mirror x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.9 M 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 2.9 M 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 11 M 2026-02-20T22:33:22.059 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:22.209 INFO:teuthology.orchestra.run.trial173.stdout:rbd-mirror-20.2.0-677.gf7870454.el9.x86_64.rpm 19 MB/s | 2.9 MB 00:00 2026-02-20T22:33:22.209 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:22.209 INFO:teuthology.orchestra.run.trial173.stdout:Total 19 MB/s | 2.9 MB 00:00 2026-02-20T22:33:22.210 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:22.215 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:22.215 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:22.255 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:22.255 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:22.434 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:22.436 INFO:teuthology.orchestra.run.trial173.stdout: Installing : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:22.459 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:22.459 INFO:teuthology.orchestra.run.trial173.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:33:22.459 INFO:teuthology.orchestra.run.trial173.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-20T22:33:22.459 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T22:33:22.459 INFO:teuthology.orchestra.run.trial173.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T22:33:22.459 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:22.782 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:22.782 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:22.782 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:22.783 INFO:teuthology.orchestra.run.trial173.stdout: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:22.783 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:22.783 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:22.811 DEBUG:teuthology.orchestra.run.trial173:> sudo yum -y install rbd-nbd 2026-02-20T22:33:23.126 INFO:teuthology.orchestra.run.trial173.stdout:Last metadata expiration check: 0:01:25 ago on Fri 20 Feb 2026 10:31:58 PM UTC. 2026-02-20T22:33:23.209 INFO:teuthology.orchestra.run.trial173.stdout:Dependencies resolved. 2026-02-20T22:33:23.209 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:23.209 INFO:teuthology.orchestra.run.trial173.stdout: Package Architecture Version Repository Size 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:Installing: 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout: rbd-nbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 180 k 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:Transaction Summary 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:================================================================================ 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:Install 1 Package 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:Total download size: 180 k 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:Installed size: 498 k 2026-02-20T22:33:23.210 INFO:teuthology.orchestra.run.trial173.stdout:Downloading Packages: 2026-02-20T22:33:23.296 INFO:teuthology.orchestra.run.trial173.stdout:rbd-nbd-20.2.0-677.gf7870454.el9.x86_64.rpm 2.1 MB/s | 180 kB 00:00 2026-02-20T22:33:23.296 INFO:teuthology.orchestra.run.trial173.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:23.296 INFO:teuthology.orchestra.run.trial173.stdout:Total 2.0 MB/s | 180 kB 00:00 2026-02-20T22:33:23.296 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction check 2026-02-20T22:33:23.300 INFO:teuthology.orchestra.run.trial173.stdout:Transaction check succeeded. 2026-02-20T22:33:23.300 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction test 2026-02-20T22:33:23.331 INFO:teuthology.orchestra.run.trial173.stdout:Transaction test succeeded. 2026-02-20T22:33:23.332 INFO:teuthology.orchestra.run.trial173.stdout:Running transaction 2026-02-20T22:33:23.388 INFO:teuthology.orchestra.run.trial173.stdout: Preparing : 1/1 2026-02-20T22:33:23.405 INFO:teuthology.orchestra.run.trial173.stdout: Installing : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:23.484 INFO:teuthology.orchestra.run.trial173.stdout: Running scriptlet: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:23.542 INFO:teuthology.orchestra.run.trial173.stdout: Verifying : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T22:33:23.543 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:23.543 INFO:teuthology.orchestra.run.trial173.stdout:Installed: 2026-02-20T22:33:23.543 INFO:teuthology.orchestra.run.trial173.stdout: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:33:23.543 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:33:23.543 INFO:teuthology.orchestra.run.trial173.stdout:Complete! 2026-02-20T22:33:23.575 DEBUG:teuthology.parallel:result is None 2026-02-20T22:33:23.575 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:33:23.739 DEBUG:teuthology.orchestra.run.trial035:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-20T22:33:23.760 INFO:teuthology.orchestra.run.trial035.stdout:20.2.0-677.gf7870454.el9 2026-02-20T22:33:23.761 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-677.gf7870454.el9 2026-02-20T22:33:23.761 INFO:teuthology.task.install:The correct ceph version 20.2.0-677.gf7870454 is installed. 2026-02-20T22:33:23.763 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:33:23.902 DEBUG:teuthology.orchestra.run.trial073:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-20T22:33:23.924 INFO:teuthology.orchestra.run.trial073.stdout:20.2.0-677.gf7870454.el9 2026-02-20T22:33:23.924 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-677.gf7870454.el9 2026-02-20T22:33:23.924 INFO:teuthology.task.install:The correct ceph version 20.2.0-677.gf7870454 is installed. 2026-02-20T22:33:23.927 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:33:24.073 DEBUG:teuthology.orchestra.run.trial173:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-20T22:33:24.095 INFO:teuthology.orchestra.run.trial173.stdout:20.2.0-677.gf7870454.el9 2026-02-20T22:33:24.095 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-677.gf7870454.el9 2026-02-20T22:33:24.095 INFO:teuthology.task.install:The correct ceph version 20.2.0-677.gf7870454 is installed. 2026-02-20T22:33:24.098 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-02-20T22:33:24.098 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:33:24.098 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-20T22:33:24.125 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:33:24.126 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-20T22:33:24.152 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:33:24.153 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-20T22:33:24.178 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-02-20T22:33:24.178 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:33:24.178 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/usr/bin/daemon-helper 2026-02-20T22:33:24.204 DEBUG:teuthology.orchestra.run.trial035:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-20T22:33:24.268 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:33:24.268 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/usr/bin/daemon-helper 2026-02-20T22:33:24.294 DEBUG:teuthology.orchestra.run.trial073:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-20T22:33:24.357 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:33:24.357 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/usr/bin/daemon-helper 2026-02-20T22:33:24.383 DEBUG:teuthology.orchestra.run.trial173:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-20T22:33:24.447 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-02-20T22:33:24.447 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:33:24.447 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-20T22:33:24.473 DEBUG:teuthology.orchestra.run.trial035:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-20T22:33:24.538 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:33:24.538 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-20T22:33:24.564 DEBUG:teuthology.orchestra.run.trial073:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-20T22:33:24.628 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:33:24.629 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-20T22:33:24.654 DEBUG:teuthology.orchestra.run.trial173:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-20T22:33:24.719 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-02-20T22:33:24.719 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:33:24.720 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/usr/bin/stdin-killer 2026-02-20T22:33:24.744 DEBUG:teuthology.orchestra.run.trial035:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-20T22:33:24.809 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:33:24.810 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/usr/bin/stdin-killer 2026-02-20T22:33:24.835 DEBUG:teuthology.orchestra.run.trial073:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-20T22:33:24.900 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:33:24.900 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/usr/bin/stdin-killer 2026-02-20T22:33:24.925 DEBUG:teuthology.orchestra.run.trial173:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-20T22:33:24.990 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-20T22:33:25.111 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'f7870454149f22574086dd2ff55d050585136531'} 2026-02-20T22:33:25.111 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:33:25.115 INFO:tasks.cephadm:Cluster fsid is 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:25.115 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-20T22:33:25.115 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '10.20.193.35', 'mon.b': '10.20.193.73', 'mon.c': '10.20.193.173'} 2026-02-20T22:33:25.115 INFO:tasks.cephadm:First mon is mon.a on trial035 2026-02-20T22:33:25.115 INFO:tasks.cephadm:First mgr is a 2026-02-20T22:33:25.115 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-20T22:33:25.115 DEBUG:teuthology.orchestra.run.trial035:> sudo hostname $(hostname -s) 2026-02-20T22:33:25.141 DEBUG:teuthology.orchestra.run.trial073:> sudo hostname $(hostname -s) 2026-02-20T22:33:25.166 DEBUG:teuthology.orchestra.run.trial173:> sudo hostname $(hostname -s) 2026-02-20T22:33:25.191 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-20T22:33:25.191 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:33:25.307 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-20T22:33:25.440 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-20T22:33:25.442 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-20T22:33:25.442 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-20T22:33:25.442 DEBUG:teuthology.orchestra.run.trial035:> 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-20T22:33:25.759 INFO:teuthology.orchestra.run.trial035.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 22:33 /home/ubuntu/cephtest/cephadm 2026-02-20T22:33:25.760 DEBUG:teuthology.orchestra.run.trial073:> 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-20T22:33:26.076 INFO:teuthology.orchestra.run.trial073.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 22:33 /home/ubuntu/cephtest/cephadm 2026-02-20T22:33:26.077 DEBUG:teuthology.orchestra.run.trial173:> 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-20T22:33:26.389 INFO:teuthology.orchestra.run.trial173.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 22:33 /home/ubuntu/cephtest/cephadm 2026-02-20T22:33:26.390 DEBUG:teuthology.orchestra.run.trial035:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T22:33:26.408 DEBUG:teuthology.orchestra.run.trial073:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T22:33:26.427 DEBUG:teuthology.orchestra.run.trial173:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T22:33:26.464 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 on all hosts... 2026-02-20T22:33:26.464 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T22:33:26.466 DEBUG:teuthology.orchestra.run.trial073:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T22:33:26.469 DEBUG:teuthology.orchestra.run.trial173:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T22:33:26.695 INFO:teuthology.orchestra.run.trial035.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T22:33:26.701 INFO:teuthology.orchestra.run.trial073.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T22:33:26.731 INFO:teuthology.orchestra.run.trial173.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T22:33:35.919 INFO:teuthology.orchestra.run.trial173.stdout:{ 2026-02-20T22:33:35.919 INFO:teuthology.orchestra.run.trial173.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T22:33:35.919 INFO:teuthology.orchestra.run.trial173.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T22:33:35.919 INFO:teuthology.orchestra.run.trial173.stdout: "repo_digests": [ 2026-02-20T22:33:35.919 INFO:teuthology.orchestra.run.trial173.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T22:33:35.919 INFO:teuthology.orchestra.run.trial173.stdout: ] 2026-02-20T22:33:35.920 INFO:teuthology.orchestra.run.trial173.stdout:} 2026-02-20T22:33:35.948 INFO:teuthology.orchestra.run.trial035.stdout:{ 2026-02-20T22:33:35.948 INFO:teuthology.orchestra.run.trial035.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T22:33:35.948 INFO:teuthology.orchestra.run.trial035.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T22:33:35.948 INFO:teuthology.orchestra.run.trial035.stdout: "repo_digests": [ 2026-02-20T22:33:35.948 INFO:teuthology.orchestra.run.trial035.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T22:33:35.948 INFO:teuthology.orchestra.run.trial035.stdout: ] 2026-02-20T22:33:35.949 INFO:teuthology.orchestra.run.trial035.stdout:} 2026-02-20T22:33:35.954 INFO:teuthology.orchestra.run.trial073.stdout:{ 2026-02-20T22:33:35.954 INFO:teuthology.orchestra.run.trial073.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T22:33:35.954 INFO:teuthology.orchestra.run.trial073.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T22:33:35.955 INFO:teuthology.orchestra.run.trial073.stdout: "repo_digests": [ 2026-02-20T22:33:35.955 INFO:teuthology.orchestra.run.trial073.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T22:33:35.955 INFO:teuthology.orchestra.run.trial073.stdout: ] 2026-02-20T22:33:35.955 INFO:teuthology.orchestra.run.trial073.stdout:} 2026-02-20T22:33:35.972 DEBUG:teuthology.orchestra.run.trial035:> sudo mkdir -p /etc/ceph 2026-02-20T22:33:36.016 DEBUG:teuthology.orchestra.run.trial073:> sudo mkdir -p /etc/ceph 2026-02-20T22:33:36.042 DEBUG:teuthology.orchestra.run.trial173:> sudo mkdir -p /etc/ceph 2026-02-20T22:33:36.070 DEBUG:teuthology.orchestra.run.trial035:> sudo chmod 777 /etc/ceph 2026-02-20T22:33:36.096 DEBUG:teuthology.orchestra.run.trial073:> sudo chmod 777 /etc/ceph 2026-02-20T22:33:36.121 DEBUG:teuthology.orchestra.run.trial173:> sudo chmod 777 /etc/ceph 2026-02-20T22:33:36.145 INFO:tasks.cephadm:Writing seed config... 2026-02-20T22:33:36.147 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2026-02-20T22:33:36.147 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-20T22:33:36.147 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-20T22:33:36.147 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2026-02-20T22:33:36.147 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-20T22:33:36.148 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-20T22:33:36.148 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-20T22:33:36.148 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-20T22:33:36.148 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-20T22:33:36.149 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:33:36.149 DEBUG:teuthology.orchestra.run.trial035:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-20T22:33:36.167 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 = 2b6ffc98-0eac-11f1-900e-d404e6e7d460 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd mclock skip benchmark = true osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = False [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2026-02-20T22:33:36.168 DEBUG:teuthology.orchestra.run.trial035:mon.a> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.a.service 2026-02-20T22:33:36.210 DEBUG:teuthology.orchestra.run.trial035:mgr.a> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mgr.a.service 2026-02-20T22:33:36.253 INFO:tasks.cephadm:Bootstrapping... 2026-02-20T22:33:36.253 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 -v bootstrap --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 10.20.193.35 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-20T22:33:36.391 INFO:teuthology.orchestra.run.trial035.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:33:36.391 INFO:teuthology.orchestra.run.trial035.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531', '-v', 'bootstrap', '--fsid', '2b6ffc98-0eac-11f1-900e-d404e6e7d460', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '10.20.193.35', '--skip-admin-label'] 2026-02-20T22:33:36.391 INFO:teuthology.orchestra.run.trial035.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-20T22:33:36.392 INFO:teuthology.orchestra.run.trial035.stdout:Verifying podman|docker is present... 2026-02-20T22:33:36.407 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stdout 5.6.0 2026-02-20T22:33:36.407 INFO:teuthology.orchestra.run.trial035.stdout:Verifying lvm2 is present... 2026-02-20T22:33:36.408 INFO:teuthology.orchestra.run.trial035.stdout:Verifying time synchronization is in place... 2026-02-20T22:33:36.413 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-20T22:33:36.413 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-20T22:33:36.419 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-20T22:33:36.419 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:33:36.425 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout enabled 2026-02-20T22:33:36.431 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout active 2026-02-20T22:33:36.431 INFO:teuthology.orchestra.run.trial035.stdout:Unit chronyd.service is enabled and running 2026-02-20T22:33:36.431 INFO:teuthology.orchestra.run.trial035.stdout:Repeating the final host check... 2026-02-20T22:33:36.446 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stdout 5.6.0 2026-02-20T22:33:36.446 INFO:teuthology.orchestra.run.trial035.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-20T22:33:36.446 INFO:teuthology.orchestra.run.trial035.stdout:systemctl is present 2026-02-20T22:33:36.446 INFO:teuthology.orchestra.run.trial035.stdout:lvcreate is present 2026-02-20T22:33:36.452 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-20T22:33:36.452 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-20T22:33:36.457 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-20T22:33:36.457 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:33:36.463 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout enabled 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout active 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Unit chronyd.service is enabled and running 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Host looks OK 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Cluster fsid: 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Acquiring lock 140327087210848 on /run/cephadm/2b6ffc98-0eac-11f1-900e-d404e6e7d460.lock 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Lock 140327087210848 acquired on /run/cephadm/2b6ffc98-0eac-11f1-900e-d404e6e7d460.lock 2026-02-20T22:33:36.469 INFO:teuthology.orchestra.run.trial035.stdout:Verifying IP 10.20.193.35 port 3300 ... 2026-02-20T22:33:36.470 INFO:teuthology.orchestra.run.trial035.stdout:Verifying IP 10.20.193.35 port 6789 ... 2026-02-20T22:33:36.470 INFO:teuthology.orchestra.run.trial035.stdout:Base mon IP(s) is [10.20.193.35:3300, 10.20.193.35:6789], mon addrv is [v2:10.20.193.35:3300,v1:10.20.193.35:6789] 2026-02-20T22:33:36.472 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.35 metric 102 2026-02-20T22:33:36.472 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.35 metric 102 2026-02-20T22:33:36.472 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-20T22:33:36.474 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-20T22:33:36.475 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-20T22:33:36.475 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout inet6 fe80::1c5e:9ec:c760:e048/64 scope link noprefixroute 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:5e6a/64 scope link 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T22:33:36.478 INFO:teuthology.orchestra.run.trial035.stdout:Mon IP `10.20.193.35` is in CIDR network `10.20.192.0/20` 2026-02-20T22:33:36.479 INFO:teuthology.orchestra.run.trial035.stdout:Mon IP `10.20.193.35` is in CIDR network `10.20.192.0/20` 2026-02-20T22:33:36.479 INFO:teuthology.orchestra.run.trial035.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-20T22:33:36.479 INFO:teuthology.orchestra.run.trial035.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-20T22:33:36.479 INFO:teuthology.orchestra.run.trial035.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T22:33:36.746 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stdout 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 2026-02-20T22:33:36.747 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T22:33:36.747 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stderr Getting image source signatures 2026-02-20T22:33:36.747 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stderr Copying blob sha256:0cf63a27055a859d286185a933b0b6ddb181f8349d6aee8c52cf789385a51e06 2026-02-20T22:33:36.747 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-20T22:33:36.747 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stderr Copying config sha256:191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 2026-02-20T22:33:36.747 INFO:teuthology.orchestra.run.trial035.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-20T22:33:37.004 INFO:teuthology.orchestra.run.trial035.stdout:ceph: stdout ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable) 2026-02-20T22:33:37.004 INFO:teuthology.orchestra.run.trial035.stdout:Ceph version: ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable) 2026-02-20T22:33:37.004 INFO:teuthology.orchestra.run.trial035.stdout:Extracting ceph user uid/gid from container image... 2026-02-20T22:33:37.253 INFO:teuthology.orchestra.run.trial035.stdout:stat: stdout 167 167 2026-02-20T22:33:37.253 INFO:teuthology.orchestra.run.trial035.stdout:Creating initial keys... 2026-02-20T22:33:37.529 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph-authtool: stdout AQBB4ZhpV5uLGBAAtj1Z59OxzkYfhBsyfKlPuw== 2026-02-20T22:33:37.790 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph-authtool: stdout AQBB4ZhpAygPKBAAX/DVRLTnD5kSXNd/ahvFBw== 2026-02-20T22:33:38.052 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph-authtool: stdout AQBB4Zhpf+mwNxAA0XfLVUK3y5DgsdKdC4ipsQ== 2026-02-20T22:33:38.052 INFO:teuthology.orchestra.run.trial035.stdout:Creating initial monmap... 2026-02-20T22:33:38.314 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:monmaptool for a [v2:10.20.193.35:3300,v1:10.20.193.35:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:setting min_mon_release = tentacle 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/monmaptool: set fsid to 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:33:38.315 INFO:teuthology.orchestra.run.trial035.stdout:Creating mon... 2026-02-20T22:33:38.607 INFO:teuthology.orchestra.run.trial035.stdout:create mon.a on 2026-02-20T22:33:38.774 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2026-02-20T22:33:38.876 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-20T22:33:38.985 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460.target → /etc/systemd/system/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460.target. 2026-02-20T22:33:38.985 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460.target → /etc/systemd/system/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460.target. 2026-02-20T22:33:39.113 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.a 2026-02-20T22:33:39.113 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Failed to reset failed state of unit ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.a.service: Unit ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.a.service not loaded. 2026-02-20T22:33:39.243 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460.target.wants/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.a.service → /etc/systemd/system/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@.service. 2026-02-20T22:33:39.405 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T22:33:39.405 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout disabled 2026-02-20T22:33:39.411 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T22:33:39.411 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:33:39.412 INFO:teuthology.orchestra.run.trial035.stdout:firewalld.service is not enabled 2026-02-20T22:33:39.412 INFO:teuthology.orchestra.run.trial035.stdout:Not possible to enable service . firewalld.service is not available 2026-02-20T22:33:39.412 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for mon to start... 2026-02-20T22:33:39.412 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for mon... 2026-02-20T22:33:39.692 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout cluster: 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout id: 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout services: 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.152231s) [leader: a] 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout data: 2026-02-20T22:33:39.693 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-20T22:33:39.694 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-20T22:33:39.694 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-20T22:33:39.694 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout pgs: 2026-02-20T22:33:39.694 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:39.694 INFO:teuthology.orchestra.run.trial035.stdout:mon is available 2026-02-20T22:33:39.694 INFO:teuthology.orchestra.run.trial035.stdout:Assimilating anything we can from ceph.conf... 2026-02-20T22:33:39.969 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout [global] 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout fsid = 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.35:3300,v1:10.20.193.35:6789] 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-20T22:33:39.970 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout [osd] 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-20T22:33:39.971 INFO:teuthology.orchestra.run.trial035.stdout:Generating new minimal ceph.conf... 2026-02-20T22:33:40.251 INFO:teuthology.orchestra.run.trial035.stdout:Restarting the monitor... 2026-02-20T22:33:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a[39468]: 2026-02-20T22:33:40.326+0000 7fb56a2b0640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2026-02-20T22:33:40.822 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 podman[39863]: 2026-02-20 22:33:40.549347067 +0000 UTC m=+0.237381770 container died 8d3560cdce17e5ddee99895d75831f31c72fbcc4817a79dce4a6217e78a6dfb8 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20260216) 2026-02-20T22:33:40.822 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 podman[39863]: 2026-02-20 22:33:40.65965068 +0000 UTC m=+0.347685383 container remove 8d3560cdce17e5ddee99895d75831f31c72fbcc4817a79dce4a6217e78a6dfb8 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216) 2026-02-20T22:33:40.822 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 bash[39863]: ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a 2026-02-20T22:33:40.822 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 systemd[1]: ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.a.service: Deactivated successfully. 2026-02-20T22:33:40.822 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 systemd[1]: Stopped Ceph mon.a for 2b6ffc98-0eac-11f1-900e-d404e6e7d460. 2026-02-20T22:33:40.822 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 systemd[1]: Starting Ceph mon.a for 2b6ffc98-0eac-11f1-900e-d404e6e7d460... 2026-02-20T22:33:40.864 INFO:teuthology.orchestra.run.trial035.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-20T22:33:41.139 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 podman[40001]: 2026-02-20 22:33:40.819927257 +0000 UTC m=+0.015162151 container create 5093e64052ef1e869c6cf2247b5a0e2eedcf1844b671476e08e08377afeb1466 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, ceph=True, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle) 2026-02-20T22:33:41.139 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 podman[40001]: 2026-02-20 22:33:40.85285014 +0000 UTC m=+0.048085044 container init 5093e64052ef1e869c6cf2247b5a0e2eedcf1844b671476e08e08377afeb1466 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, ceph=True, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.license=GPLv2) 2026-02-20T22:33:41.139 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 podman[40001]: 2026-02-20 22:33:40.856502582 +0000 UTC m=+0.051737476 container start 5093e64052ef1e869c6cf2247b5a0e2eedcf1844b671476e08e08377afeb1466 (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mon-a, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0) 2026-02-20T22:33:41.139 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 bash[40001]: 5093e64052ef1e869c6cf2247b5a0e2eedcf1844b671476e08e08377afeb1466 2026-02-20T22:33:41.139 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 podman[40001]: 2026-02-20 22:33:40.813992526 +0000 UTC m=+0.009227420 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 systemd[1]: Started Ceph mon.a for 2b6ffc98-0eac-11f1-900e-d404e6e7d460. 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: set uid:gid to 167:167 (ceph:ceph) 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable - RelWithDebInfo), process ceph-mon, pid 7 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: pidfile_write: ignore empty --pid-file 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: load: jerasure load: lrc 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: RocksDB version: 7.9.2 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Git sha 0 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Compile date 2026-02-20 12:51:44 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: DB SUMMARY 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: DB Session ID: PCTXJNWVU8JQ1RKTNB94 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: CURRENT file: CURRENT 2026-02-20T22:33:41.140 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: IDENTITY file: IDENTITY 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 76535 ; 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.error_if_exists: 0 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.create_if_missing: 0 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.paranoid_checks: 1 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.env: 0x55aaddbe74c0 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.fs: PosixFileSystem 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.info_log: 0x55aadf438000 2026-02-20T22:33:41.141 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_file_opening_threads: 16 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.statistics: (nil) 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.use_fsync: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_log_file_size: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.keep_log_file_num: 1000 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.recycle_log_file_num: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.allow_fallocate: 1 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.allow_mmap_reads: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.allow_mmap_writes: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.use_direct_reads: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-20T22:33:41.142 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.create_missing_column_families: 0 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.db_log_dir: 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.wal_dir: 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.advise_random_on_open: 1 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.db_write_buffer_size: 0 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.write_buffer_manager: 0x55aadf42c140 2026-02-20T22:33:41.143 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.rate_limiter: (nil) 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.wal_recovery_mode: 2 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.enable_thread_tracking: 0 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.enable_pipelined_write: 0 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.unordered_write: 0 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.row_cache: None 2026-02-20T22:33:41.144 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.wal_filter: None 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.allow_ingest_behind: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.two_write_queues: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.manual_wal_flush: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.wal_compression: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.atomic_flush: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.log_readahead_size: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.best_efforts_recovery: 0 2026-02-20T22:33:41.145 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.allow_data_in_errors: 0 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.db_host_id: __hostname__ 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_background_jobs: 2 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_background_compactions: -1 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_subcompactions: 1 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_total_wal_size: 0 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-20T22:33:41.146 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_open_files: -1 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bytes_per_sync: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_readahead_size: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_background_flushes: -1 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Compression algorithms supported: 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kZSTD supported: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kXpressCompression supported: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kBZip2Compression supported: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-20T22:33:41.147 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kLZ4Compression supported: 1 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kZlibCompression supported: 1 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kLZ4HCCompression supported: 1 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: kSnappyCompression supported: 1 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.merge_operator: 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_filter: None 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_filter_factory: None 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.sst_partitioner_factory: None 2026-02-20T22:33:41.148 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55aadf428cc0) 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: cache_index_and_filter_blocks: 1 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: pin_top_level_index_and_filter: 1 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: index_type: 0 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: data_block_index_type: 0 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: index_shortening: 1 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: checksum: 4 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: no_block_cache: 0 2026-02-20T22:33:41.149 INFO:journalctl@ceph.mon.a.trial035.stdout: block_cache: 0x55aadf449b90 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: block_cache_name: BinnedLRUCache 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: block_cache_options: 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: capacity : 536870912 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: num_shard_bits : 4 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: strict_capacity_limit : 0 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: high_pri_pool_ratio: 0.000 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: block_cache_compressed: (nil) 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: persistent_cache: (nil) 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: block_size: 4096 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: block_size_deviation: 10 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: block_restart_interval: 16 2026-02-20T22:33:41.150 INFO:journalctl@ceph.mon.a.trial035.stdout: index_block_restart_interval: 1 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: metadata_block_size: 4096 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: partition_filters: 0 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: use_delta_encoding: 1 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: filter_policy: bloomfilter 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: whole_key_filtering: 1 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: verify_compression: 0 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: read_amp_bytes_per_bit: 0 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: format_version: 5 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: enable_index_compression: 1 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: block_align: 0 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: max_auto_readahead_size: 262144 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: prepopulate_block_cache: 0 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: initial_auto_readahead_size: 8192 2026-02-20T22:33:41.151 INFO:journalctl@ceph.mon.a.trial035.stdout: num_file_reads_for_auto_readahead: 2 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.write_buffer_size: 33554432 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_write_buffer_number: 2 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression: NoCompression 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression: Disabled 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.prefix_extractor: nullptr 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.num_levels: 7 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-20T22:33:41.152 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.level: 32767 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.strategy: 0 2026-02-20T22:33:41.153 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.enabled: false 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.target_file_size_base: 67108864 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-20T22:33:41.154 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.arena_block_size: 1048576 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.disable_auto_compactions: 0 2026-02-20T22:33:41.155 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.inplace_update_support: 0 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-20T22:33:41.156 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.bloom_locality: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.max_successive_merges: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.paranoid_file_checks: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.force_consistency_checks: 1 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.report_bg_io_stats: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.ttl: 2592000 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-20T22:33:41.157 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.enable_blob_files: false 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.min_blob_size: 0 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.blob_file_size: 268435456 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.blob_file_starting_level: 0 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2026-02-20T22:33:41.158 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 25a5d7b1-f3dc-4565-b825-b563fc755d2f 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771626820874517, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771626820875249, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73627, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 229, "table_properties": {"data_size": 71902, "index_size": 174, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 517, "raw_key_size": 9783, "raw_average_key_size": 48, "raw_value_size": 66316, "raw_average_value_size": 331, "num_data_blocks": 8, "num_entries": 200, "num_filter_entries": 200, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771626820, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "25a5d7b1-f3dc-4565-b825-b563fc755d2f", "db_session_id": "PCTXJNWVU8JQ1RKTNB94", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771626820875303, "job": 1, "event": "recovery_finished"} 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55aadf44ce00 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: DB pointer 0x55aae023e000 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-20T22:33:41.159 INFO:journalctl@ceph.mon.a.trial035.stdout: ** DB Stats ** 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.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-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.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-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: ** Compaction Stats [default] ** 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.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-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: L0 2/0 73.76 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T22:33:41.160 INFO:journalctl@ceph.mon.a.trial035.stdout: Sum 2/0 73.76 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.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 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: ** Compaction Stats [default] ** 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.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-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.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 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-20T22:33:41.161 INFO:journalctl@ceph.mon.a.trial035.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: Cumulative compaction: 0.00 GB write, 26.88 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: Interval compaction: 0.00 GB write, 26.88 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.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-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: Block cache BinnedLRUCache@0x55aadf449b90#7 capacity: 512.00 MB usage: 1.06 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.70 KB,0.00013411%) IndexBlock(2,0.36 KB,6.85453e-05%) Misc(1,0.00 KB,0%) 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: starting mon.a rank 0 at public addrs [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] at bind addrs [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:41.162 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???) e1 preinit fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).mds e1 new map 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).mds e1 print_map 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout: e1 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout: btime 2026-02-20T22:33:39:416701+0000 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.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-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout: legacy client fscid: -1 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout: 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout: No filesystems configured 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-20T22:33:41.163 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: monmap epoch 1 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: last_changed 2026-02-20T22:33:38.183418+0000 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: min_mon_release 20 (tentacle) 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: election_strategy: 1 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: fsmap 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: osdmap e1: 0 total, 0 up, 0 in 2026-02-20T22:33:41.164 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:40 trial035 ceph-mon[40051]: mgrmap e1: no daemons active 2026-02-20T22:33:41.166 INFO:teuthology.orchestra.run.trial035.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-20T22:33:41.166 INFO:teuthology.orchestra.run.trial035.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-20T22:33:41.166 INFO:teuthology.orchestra.run.trial035.stdout:Creating mgr... 2026-02-20T22:33:41.166 INFO:teuthology.orchestra.run.trial035.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-20T22:33:41.166 INFO:teuthology.orchestra.run.trial035.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-20T22:33:41.276 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mgr.a 2026-02-20T22:33:41.276 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Failed to reset failed state of unit ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mgr.a.service: Unit ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mgr.a.service not loaded. 2026-02-20T22:33:41.390 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460.target.wants/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mgr.a.service → /etc/systemd/system/ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@.service. 2026-02-20T22:33:41.558 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T22:33:41.558 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout disabled 2026-02-20T22:33:41.564 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T22:33:41.564 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:33:41.564 INFO:teuthology.orchestra.run.trial035.stdout:firewalld.service is not enabled 2026-02-20T22:33:41.564 INFO:teuthology.orchestra.run.trial035.stdout:Not possible to enable service . firewalld.service is not available 2026-02-20T22:33:41.571 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T22:33:41.571 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout disabled 2026-02-20T22:33:41.578 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T22:33:41.578 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:33:41.578 INFO:teuthology.orchestra.run.trial035.stdout:firewalld.service is not enabled 2026-02-20T22:33:41.578 INFO:teuthology.orchestra.run.trial035.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-02-20T22:33:41.578 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for mgr to start... 2026-02-20T22:33:41.578 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for mgr... 2026-02-20T22:33:41.864 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:41.864 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "fsid": "2b6ffc98-0eac-11f1-900e-d404e6e7d460", 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T22:33:41.865 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 0 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "a" 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:41.866 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T22:33:41.867 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T22:33:39:416701+0000", 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-20T22:33:41.868 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T22:33:39.417111+0000", 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T22:33:41.869 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:33:41.870 INFO:teuthology.orchestra.run.trial035.stdout:mgr not available, waiting (1/15)... 2026-02-20T22:33:42.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:42 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1172542864' entity='client.admin' 2026-02-20T22:33:42.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:42 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2748575105' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T22:33:42.966 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:42 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: from numpy import show_config as show_numpy_config 2026-02-20T22:33:44.138 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:44 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/552225156' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T22:33:44.146 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:44.146 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:33:44.146 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "fsid": "2b6ffc98-0eac-11f1-900e-d404e6e7d460", 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 0 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "a" 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:44.147 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T22:33:44.148 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T22:33:44.149 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T22:33:39:416701+0000", 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T22:33:44.150 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T22:33:39.417111+0000", 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:33:44.151 INFO:teuthology.orchestra.run.trial035.stdout:mgr not available, waiting (2/15)... 2026-02-20T22:33:45.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: Activating manager daemon a 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: mgrmap e2: a(active, starting, since 0.00274151s) 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: Manager daemon a is now available 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T22:33:45.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:45 trial035 ceph-mon[40051]: from='mgr.14100 10.20.193.35:0/129052061' entity='mgr.a' 2026-02-20T22:33:46.425 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:46 trial035 ceph-mon[40051]: mgrmap e3: a(active, since 1.00567s) 2026-02-20T22:33:46.545 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:46.545 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:33:46.545 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "fsid": "2b6ffc98-0eac-11f1-900e-d404e6e7d460", 2026-02-20T22:33:46.545 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 0 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "a" 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:46.546 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T22:33:46.547 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.548 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T22:33:39:416701+0000", 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ], 2026-02-20T22:33:46.549 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T22:33:39.417111+0000", 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout }, 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:33:46.550 INFO:teuthology.orchestra.run.trial035.stdout:mgr is available 2026-02-20T22:33:46.894 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:46.894 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout [global] 2026-02-20T22:33:46.894 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout fsid = 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.35:3300,v1:10.20.193.35:6789] 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 2026-02-20T22:33:46.895 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout [osd] 2026-02-20T22:33:46.896 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-20T22:33:46.896 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-20T22:33:46.896 INFO:teuthology.orchestra.run.trial035.stdout:Enabling cephadm module... 2026-02-20T22:33:47.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-mon[40051]: mgrmap e4: a(active, since 2s) 2026-02-20T22:33:47.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2374241374' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T22:33:47.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/735381674' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-20T22:33:47.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/735381674' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-02-20T22:33:47.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1261040277' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-20T22:33:48.155 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ignoring --setuser ceph since I am not root 2026-02-20T22:33:48.155 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:47 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ignoring --setgroup ceph since I am not root 2026-02-20T22:33:48.280 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for the mgr to restart... 2026-02-20T22:33:48.281 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for mgr epoch 5... 2026-02-20T22:33:49.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:48 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1261040277' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-20T22:33:49.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:48 trial035 ceph-mon[40051]: mgrmap e5: a(active, since 3s) 2026-02-20T22:33:49.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:48 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/6764867' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-20T22:33:49.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:48 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-02-20T22:33:49.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:48 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-02-20T22:33:49.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:48 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: from numpy import show_config as show_numpy_config 2026-02-20T22:33:50.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: Active manager daemon a restarted 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: Activating manager daemon a 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: osdmap e2: 0 total, 0 up, 0 in 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: mgrmap e6: a(active, starting, since 0.00256023s) 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T22:33:50.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:50 trial035 ceph-mon[40051]: Manager daemon a is now available 2026-02-20T22:33:51.685 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:33:51.686 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-20T22:33:51.686 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-20T22:33:51.686 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:33:51.686 INFO:teuthology.orchestra.run.trial035.stdout:mgr epoch 5 is available 2026-02-20T22:33:51.686 INFO:teuthology.orchestra.run.trial035.stdout:Verifying orchestrator module is enabled... 2026-02-20T22:33:52.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: Found migration_current of "None". Setting to last migration. 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T22:33:52.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: [20/Feb/2026:22:33:51] ENGINE Bus STARTING 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: [20/Feb/2026:22:33:51] ENGINE Serving on http://10.20.193.35:8765 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: mgrmap e7: a(active, since 1.00418s) 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: [20/Feb/2026:22:33:51] ENGINE Serving on https://10.20.193.35:7150 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: [20/Feb/2026:22:33:51] ENGINE Bus STARTED 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:33:52.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:51 trial035 ceph-mon[40051]: [20/Feb/2026:22:33:51] ENGINE Client ('10.20.193.35', 54566) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T22:33:53.048 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-20T22:33:53.048 INFO:teuthology.orchestra.run.trial035.stdout:Setting orchestrator backend to cephadm... 2026-02-20T22:33:53.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:52 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1538846400' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-20T22:33:53.827 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-20T22:33:53.827 INFO:teuthology.orchestra.run.trial035.stdout:Generating ssh key... 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:53 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1538846400' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:53 trial035 ceph-mon[40051]: mgrmap e8: a(active, since 2s) 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:53 trial035 ceph-mon[40051]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:53 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:53 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:53 trial035 ceph-mon[40051]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: Generating public/private ed25519 key pair. 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: Your identification has been saved in /tmp/tmpev7t91jq/key 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: Your public key has been saved in /tmp/tmpev7t91jq/key.pub 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: The key fingerprint is: 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: SHA256:yDIgBl/IPNsAnMiAHnsiStz6utdiix8+s4CCsVdK1O0 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: The key's randomart image is: 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: +--[ED25519 256]--+ 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |X+... | 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |+**o . | 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |+.B=. . | 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |oO.+.o . | 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |= = + E S | 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |+= o o | 2026-02-20T22:33:54.198 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |=.+.. | 2026-02-20T22:33:54.199 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: |..+B.. | 2026-02-20T22:33:54.199 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: | +*=* | 2026-02-20T22:33:54.199 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: +----[SHA256]-----+ 2026-02-20T22:33:54.553 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:33:54.553 INFO:teuthology.orchestra.run.trial035.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-20T22:33:54.553 INFO:teuthology.orchestra.run.trial035.stdout:Adding key to root@localhost authorized_keys... 2026-02-20T22:33:54.554 INFO:teuthology.orchestra.run.trial035.stdout:Adding host trial035... 2026-02-20T22:33:55.400 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:55 trial035 ceph-mon[40051]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:55.400 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:55 trial035 ceph-mon[40051]: Generating ssh key... 2026-02-20T22:33:55.400 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:55 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:55.400 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:55 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:55.400 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:55 trial035 ceph-mon[40051]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:55.400 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:55 trial035 ceph-mon[40051]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial035", "addr": "10.20.193.35", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:56.314 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:56 trial035 ceph-mon[40051]: Deploying cephadm binary to trial035 2026-02-20T22:33:56.441 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout Added host 'trial035' with addr '10.20.193.35' 2026-02-20T22:33:56.442 INFO:teuthology.orchestra.run.trial035.stdout:Deploying unmanaged mon service... 2026-02-20T22:33:56.816 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-20T22:33:56.816 INFO:teuthology.orchestra.run.trial035.stdout:Deploying unmanaged mgr service... 2026-02-20T22:33:57.181 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-20T22:33:57.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:57.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: Added host trial035 2026-02-20T22:33:57.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:33:57.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:57.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: Saving service mon spec with placement count:5 2026-02-20T22:33:57.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:57.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:57.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:57.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:57 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:57.931 INFO:teuthology.orchestra.run.trial035.stdout:Enabling the dashboard module... 2026-02-20T22:33:58.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:33:58.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: Saving service mgr spec with placement count:2 2026-02-20T22:33:58.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/3179559475' entity='client.admin' 2026-02-20T22:33:58.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:58.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/3904870330' entity='client.admin' 2026-02-20T22:33:58.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: from='mgr.14118 10.20.193.35:0/4091436994' entity='mgr.a' 2026-02-20T22:33:58.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2035010568' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-20T22:33:59.190 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ignoring --setuser ceph since I am not root 2026-02-20T22:33:59.190 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:58 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ignoring --setgroup ceph since I am not root 2026-02-20T22:33:59.977 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for the mgr to restart... 2026-02-20T22:33:59.978 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for mgr epoch 9... 2026-02-20T22:34:00.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:59 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2035010568' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-20T22:34:00.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:59 trial035 ceph-mon[40051]: mgrmap e9: a(active, since 8s) 2026-02-20T22:34:00.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:33:59 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/281123585' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-20T22:34:00.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:59 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-02-20T22:34:00.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:59 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-02-20T22:34:00.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:33:59 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: from numpy import show_config as show_numpy_config 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: Active manager daemon a restarted 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: Activating manager daemon a 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: osdmap e3: 0 total, 0 up, 0 in 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: mgrmap e10: a(active, starting, since 0.00258331s) 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T22:34:01.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:01 trial035 ceph-mon[40051]: Manager daemon a is now available 2026-02-20T22:34:02.771 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout { 2026-02-20T22:34:02.771 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-20T22:34:02.771 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-20T22:34:02.771 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout } 2026-02-20T22:34:02.771 INFO:teuthology.orchestra.run.trial035.stdout:mgr epoch 9 is available 2026-02-20T22:34:02.771 INFO:teuthology.orchestra.run.trial035.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-20T22:34:02.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:02.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T22:34:02.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T22:34:02.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:02.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:02.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:02 trial035 ceph-mon[40051]: mgrmap e11: a(active, since 1.00375s) 2026-02-20T22:34:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: [20/Feb/2026:22:34:02] ENGINE Bus STARTING 2026-02-20T22:34:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-20T22:34:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-20T22:34:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: [20/Feb/2026:22:34:02] ENGINE Serving on http://10.20.193.35:8765 2026-02-20T22:34:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: [20/Feb/2026:22:34:02] ENGINE Serving on https://10.20.193.35:7150 2026-02-20T22:34:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: [20/Feb/2026:22:34:02] ENGINE Bus STARTED 2026-02-20T22:34:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:03 trial035 ceph-mon[40051]: [20/Feb/2026:22:34:02] ENGINE Client ('10.20.193.35', 59868) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T22:34:04.283 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+jCCAuKgAwIBAgIUZtCoud6ld4jfs7vDgfqXmb/wGVAwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI2MDIyMDIyMzQwNFoXDTI5\nMDIxOTIyMzQwNFowFzEVMBMGA1UEAwwMMTAuMjAuMTkzLjM1MIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEA1waQhaAuc4gdEAdwRu4BfC4s7MMCWaza0hZg\nnn9iNjTfSww/iBdD6ZJ126RGaI+CJxBZngqfKvUUxlG0hByjXtKIzTfMapGnZi1V\nGw9gwxkiaMdruNvW4BqwA+su5iOBBEnabz5oVvnbTjSDR13ja2s7ZzE2FA5r4RML\nSVANH/mQNHkqcg3A+usnQp2e1dqy/f4kVYl4KsKoBcgAULUpc6HFoPhs9LTeQj15\n8vhaUHis1vac1HnDZ4w5OnoYt5IEz12aeP722mxd805+tf0lO3MM82Y+b6tQBI5i\ncAVn3YA4MZATYPiS1csFhcKejjgzFq1ex502VZJyb3fMejTKrK2nG+dREOJKO0yy\nL9z1thuFrnQzGOyx1Rc0/jh3lnCKz2B/8jFh58t+YL3CdZxF+eD1s56qUFUJ5Mq+\niBBUJCz3nTVGRlaBt3Yqg8ftjiTiPwsmUIUZ/OWS3TYjcCnb5lNH0TnSOKPvvk3B\nVTbkAMYYLn2XP3E6lRAVOchUGE4dL016T5eYPK5q4LlswvGePCWqtf6zH62TmqOl\n2qKr7tUDF3WYkidIvlRuOzjxdYuKbwzTK2a9rVtjTY6+gUOj708Kn2+2hlduSnUg\nonheicfny4Ac5lKK6lNmm9QH4VAPy3hb5EAF92iltDt/t0UU/coDoG2pYqGWdzRG\nJhuc3YECAwEAAaM+MDwwLAYDVR0RBCUwI4IIdHJpYWwwMzWCEWRhc2hib2FyZF9z\nZXJ2ZXJzhwQKFMEjMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAL1S\n/tCMLMq0TfUNtcbIv0y69thgJo5zPdtO9xyhdUEUKDc/Y60FnrEmiq23uR/Pei5C\nTQdh6XFBVWtc/IuBwp3izYfD6cP94qP7ochlNljzviTg+2Y/NRX6ORKbts6ed5vY\nvHoMGlaVGT83lIsph76LtqCMqendlfRV+JV6Bj2MssmJBY45zY1+at+F8q3czD1c\nwfU/3xxwozt6NH0h0zYocCJwTWgaQi6gNEm4nRbq3S2qLamURRluLdo3YYS4GJDf\nv4DueNb3MiwT3JF1iWS0u4v43dXfoT/L+zJL1BgMEMy4otUBiun0wCoNhApQdsxL\n+LE3WiheIcc3IGVDCGicwiM8YM3dJAqM7nlmW5w7XGqr0ZbcLLx/KcCC/VySY6Z5\neNpsb7542ZfLsloyZZgn7JZO02nCq2rQFAggxufTOy0JN9lRoNnHSzxO8uq7X08p\nNQgRgNrtMpVwg2QSOit2hCtmbeD8WVe16Euzse5iHseHj49oY0sAaJ3lqEWJDWp/\nlxaqTyBZ0JFBWIKEgJgNkb27g4K6qSGL9PZuwTLHEgGVmgbusEUvWmrJjNMhuXVw\n3akEO57TX8zdy/I/fml82/p9IiJ44ktA6MIL+UkmwQsylcBpRkVS445Zel38j2vU\nPj+P/JDsVB5OmNf6xTER0YemsnqaKaFCnz0o97TZ\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKAIBAAKCAgEA1waQhaAuc4gdEAdwRu4BfC4s7MMCWaza0hZgnn9iNjTfSww/\niBdD6ZJ126RGaI+CJxBZngqfKvUUxlG0hByjXtKIzTfMapGnZi1VGw9gwxkiaMdr\nuNvW4BqwA+su5iOBBEnabz5oVvnbTjSDR13ja2s7ZzE2FA5r4RMLSVANH/mQNHkq\ncg3A+usnQp2e1dqy/f4kVYl4KsKoBcgAULUpc6HFoPhs9LTeQj158vhaUHis1vac\n1HnDZ4w5OnoYt5IEz12aeP722mxd805+tf0lO3MM82Y+b6tQBI5icAVn3YA4MZAT\nYPiS1csFhcKejjgzFq1ex502VZJyb3fMejTKrK2nG+dREOJKO0yyL9z1thuFrnQz\nGOyx1Rc0/jh3lnCKz2B/8jFh58t+YL3CdZxF+eD1s56qUFUJ5Mq+iBBUJCz3nTVG\nRlaBt3Yqg8ftjiTiPwsmUIUZ/OWS3TYjcCnb5lNH0TnSOKPvvk3BVTbkAMYYLn2X\nP3E6lRAVOchUGE4dL016T5eYPK5q4LlswvGePCWqtf6zH62TmqOl2qKr7tUDF3WY\nkidIvlRuOzjxdYuKbwzTK2a9rVtjTY6+gUOj708Kn2+2hlduSnUgonheicfny4Ac\n5lKK6lNmm9QH4VAPy3hb5EAF92iltDt/t0UU/coDoG2pYqGWdzRGJhuc3YECAwEA\nAQKCAgAAyiDLnjEzOTtMRpMXgjWdg8RMSswN24pXsIGElbmc8uPEu2FqH13vYxNg\nYvYLkaLFcD84Xw4RDWqQ+tQ3YrEhCbPTEUZQjCUbPTuD8woDpaJs7B36Ly3I0aWE\nrEpaLdBWKVfbVBNQNeJtuxg2B9JEQ+frUVe7RCNCWbNzOplbnSEV4526vrgbHkQL\nBd3xP4p0E7rhIN827MtK8xRM55FExAPgKS8eDPIwtAfiKPo4u8iUgQYV6s4DV8VC\nzquTrIxApUWSPgc+uZiAwISbLCwo4beHBw6nxoU9lOrbsf4C4v7y0/RhoxhHv103\ndcO7FGnT7I9Qt0gbmVku5YWx23bgxLRqOgU0gRjWQ2mdOFv+HITJ5tvSYvZmrT2i\nZMWYdjP9LvFcWSuFD8sprxL5wQpTtBJWg/A/u2NqKKb+24xKDN/9HpNdUOYO4KwV\nKGUwOk37OqsX59ff1gGSSugT6XQAR/i8TwAzh3uTgqWfvVqhZA+SMr6dJlj9vX8j\nbBr3vNDyQTYc8cxwv5GED7fSdk943IFsdn9erm0Pl01ahMYAkab4zuO+n7PLVsi6\nLpU2ipKgNk+e8c1gbjjelRiIRSZcoJVOnoIe5iNA9B+Wfq9GRURhByzcbFkq3OeL\nnNroNDP6lVkCp58vyH+ycMPPJbr2PYzkckSlhPyM5fTF87hOAQKCAQEA9eV7jqlR\n/sP9JjIscHs++3xs8FAjc7QkYjip/A/jTGiOL2V05EuSTmbazVlodpIN6w33fUQQ\n9HkJxEhkYkR4CizGRG1cWzH6hgJ7/PcrCKWq+naQ6+Uf+RRjA7N7G0GD0v2h7G0b\n6uY0fumGQ9siiFa3ptzuXiJYIEvI7rWxAZV8ruEC0iVyzGK6ByWmvEtlu1Mjathd\n982W43m7xmncvLZSw25esdEAqGyxl4kH3gUk2S27Dlbv2V4rdQS7c6TDW0nvUAYv\n06xcmdxUqpgYOAYRnv2AlBauvbArlDJ/r5BvICAknsDnrCFKLm3bQmvCGlRQ1VJB\nfNp456r77jX3gQKCAQEA39xcUvoMCpizQE193OXOd/8rAI2JUePJZ9ZYvZFQLF9Y\nE+TISEyZOKusBE2b2EAqiHLQ+JHF7PJgCTslgOjuOU55KKnj02/SxEzyBFJQ3fcU\ngitPiRWweszMDKCz14lKFn263WMV7Z/W8eFLnGpiloXse/TyKeye2g70xnzeuTLc\nEHlNqcEX+qq08iVotdAurP3GGw8uu7UXmffNk+xFRnTisiiXS7OExn0fjY6PQ/pA\n1gkdFenQE8oeKBCIAppGELHJj3B54HgbLooMNP4IZtunFsVitlIqiZn/OkClL3D8\nVs3NIsOYjV/AyEfukXEslKhodwofVNi0kQWKvYnmAQKCAQBv0GdL6vCvIZ32hXAx\nwclVADJlYHuOfIbi5xNc3DimoRCuurrZqQehgSHTqOlYqXeMwDAfFRmEoZlwWN7U\n1H+lWNDbgsMxcNuTnoOU9yvpZbQG6m1h5zGPyNZxc2bycOspwU2lPcQpH38ViskU\nCAx+5LfkN6how8NBBFUdPx97MeedehIXTxIRoH8pCtTz4HElKlv7lOG98g2/6LYb\nNj46zcl6trB2uSxMagijeJtMORiVbTcXAS9Vr32hW4KFxpFS7J7Wy8lpvoHpMQiK\n/lhc+V1/55RVQq848GgQnpnzUoFFoXglfGCcpBKgZDIE1Q1Rfa+4IQxIYuwBpH2k\nx4OBAoIBAQCQEx/sW3fSfhKnqPf/anvmqPhBI9akOKlQRhjY8KQb2sUyEIWCWqIm\nYf6Uymop1KpLJTIvOIqdBCUg68soW0Gu6j16GVVCqG6K3kbI1z2qjbHKURugS7BI\naHRPEEKOzpI7RXI1t+bOB5hsFib2pVWMMOdRpAUTTHG0P/nzoTwrD3uospl0To0j\nTCimy8LHeRQBTFbq5WubbWKiOmU59c9kGCgqp4swMnqa0L60+XJlOrPtzPHGP7Qm\neGfOO01991Juvi3OPoKCIGrGGhzfIjvAD1BLjIAKfXlZFB66nA50KRCOwWdsH1yY\naG8Ht5voSWF6z6RkMMSXc91KlLmFYTIBAoIBAFf/isBZ7la/FBgjcAVtBMdg9Lwa\nj27UqD6K81fzDadrC2xuQ1xXyqLRyMmHfGMvJZYMsPGEMakBq1r0f1EAFbtasivv\ndICp7WZq/oc9XmXIO8N6eCxHlf/6/ahOsqUeMVllae4/FmdPBXKZU0A2lv4iRg/j\n154iclRYTjEhxsmysBUfA0LIBi05iwFIK1yUMxrg+eyd/Bi6g5xyKeCjcdoepV4b\nZM0w1dwT1ztb/Ur44jcnujygTt2Rek+L0EXlePkW7+vkW4SjOxfFSltCw87dwzz7\n0SNr9w2iGVuXbLpQUzQR+T4KIit7oKpe/VqagTXkebz2XXgIp1h0+Y3uY10=\n-----END RSA PRIVATE KEY-----\n"} 2026-02-20T22:34:04.651 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-20T22:34:04.890 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:04 trial035 ceph-mon[40051]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:04.890 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:04 trial035 ceph-mon[40051]: mgrmap e12: a(active, since 2s) 2026-02-20T22:34:04.891 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:04 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:05.014 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-20T22:34:05.014 INFO:teuthology.orchestra.run.trial035.stdout:Creating initial admin user... 2026-02-20T22:34:05.569 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$dXVQNqjHJ0yzgsliECElcO2bQiJDnzYLworo0CjeOjy/GyCTru.2m", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771626845, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-20T22:34:05.570 INFO:teuthology.orchestra.run.trial035.stdout:Fetching dashboard port number... 2026-02-20T22:34:05.921 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stdout 8443 2026-02-20T22:34:05.929 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T22:34:05.929 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout disabled 2026-02-20T22:34:05.935 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T22:34:05.935 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:34:05.935 INFO:teuthology.orchestra.run.trial035.stdout:firewalld.service is not enabled 2026-02-20T22:34:05.935 INFO:teuthology.orchestra.run.trial035.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-20T22:34:05.936 INFO:teuthology.orchestra.run.trial035.stdout:Ceph Dashboard is now available at: 2026-02-20T22:34:05.936 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:05.936 INFO:teuthology.orchestra.run.trial035.stdout: URL: https://trial035:8443/ 2026-02-20T22:34:05.936 INFO:teuthology.orchestra.run.trial035.stdout: User: admin 2026-02-20T22:34:05.936 INFO:teuthology.orchestra.run.trial035.stdout: Password: vdg1g4uhnx 2026-02-20T22:34:05.937 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:05.937 INFO:teuthology.orchestra.run.trial035.stdout:Saving cluster configuration to /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config directory 2026-02-20T22:34:06.052 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:05 trial035 ceph-mon[40051]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:06.052 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:05 trial035 ceph-mon[40051]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:06.053 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:05 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:06.053 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:05 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:06.053 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:05 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/906178862' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-20T22:34:06.345 INFO:teuthology.orchestra.run.trial035.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-20T22:34:06.345 INFO:teuthology.orchestra.run.trial035.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-20T22:34:06.345 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout:Or, if you are only running a single cluster on this host: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: ceph telemetry on 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout:For more information see: 2026-02-20T22:34:06.346 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.347 INFO:teuthology.orchestra.run.trial035.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-20T22:34:06.347 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:06.347 INFO:teuthology.orchestra.run.trial035.stdout:Bootstrap complete. 2026-02-20T22:34:06.352 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout static 2026-02-20T22:34:06.358 INFO:teuthology.orchestra.run.trial035.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-20T22:34:06.359 INFO:teuthology.orchestra.run.trial035.stdout:systemctl: stdout inactive 2026-02-20T22:34:06.359 INFO:teuthology.orchestra.run.trial035.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-20T22:34:06.512 INFO:tasks.cephadm:Fetching config... 2026-02-20T22:34:06.513 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:06.513 DEBUG:teuthology.orchestra.run.trial035:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-20T22:34:06.530 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-20T22:34:06.531 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:06.531 DEBUG:teuthology.orchestra.run.trial035:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-20T22:34:06.589 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-20T22:34:06.589 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:06.589 DEBUG:teuthology.orchestra.run.trial035:> sudo dd if=/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/keyring of=/dev/stdout 2026-02-20T22:34:06.655 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-20T22:34:06.655 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:06.655 DEBUG:teuthology.orchestra.run.trial035:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-20T22:34:06.711 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-20T22:34:06.711 DEBUG:teuthology.orchestra.run.trial035:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T22:34:06.784 INFO:teuthology.orchestra.run.trial035.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:06.795 DEBUG:teuthology.orchestra.run.trial073:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T22:34:06.830 INFO:teuthology.orchestra.run.trial073.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:06.840 DEBUG:teuthology.orchestra.run.trial173:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T22:34:06.876 INFO:teuthology.orchestra.run.trial173.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkCXKIdVSp6FDsB2XYqUc34j5S7vLDGjdau/ZBYkm34 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:06.885 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-20T22:34:07.022 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:07.151 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:06 trial035 ceph-mon[40051]: from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:07.151 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:06 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2981537534' entity='client.admin' 2026-02-20T22:34:07.422 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-20T22:34:07.422 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-20T22:34:07.541 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:07.953 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial073 2026-02-20T22:34:07.953 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:34:07.953 DEBUG:teuthology.orchestra.run.trial073:> dd of=/etc/ceph/ceph.conf 2026-02-20T22:34:07.971 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:34:07.972 DEBUG:teuthology.orchestra.run.trial073:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:08.027 INFO:tasks.cephadm:Adding host trial073 to orchestrator... 2026-02-20T22:34:08.027 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch host add trial073 2026-02-20T22:34:08.143 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:08.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/3291414108' entity='client.admin' 2026-02-20T22:34:08.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial035", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:08.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: Updating trial035:/etc/ceph/ceph.conf 2026-02-20T22:34:08.468 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.468 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:08.468 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:08 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:09.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:09 trial035 ceph-mon[40051]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:09.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:09 trial035 ceph-mon[40051]: Updating trial035:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:09.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:09 trial035 ceph-mon[40051]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:34:09.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:09 trial035 ceph-mon[40051]: mgrmap e13: a(active, since 6s) 2026-02-20T22:34:09.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:09 trial035 ceph-mon[40051]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial073", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:09.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:09 trial035 ceph-mon[40051]: Deploying cephadm binary to trial073 2026-02-20T22:34:09.940 INFO:teuthology.orchestra.run.trial035.stdout:Added host 'trial073' with addr '10.20.193.73' 2026-02-20T22:34:10.102 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-20T22:34:10.217 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:10.460 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:10.460 INFO:teuthology.orchestra.run.trial035.stdout:[{"addr": "10.20.193.35", "hostname": "trial035", "labels": [], "status": ""}, {"addr": "10.20.193.73", "hostname": "trial073", "labels": [], "status": ""}] 2026-02-20T22:34:10.600 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial173 2026-02-20T22:34:10.600 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:34:10.600 DEBUG:teuthology.orchestra.run.trial173:> dd of=/etc/ceph/ceph.conf 2026-02-20T22:34:10.619 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:34:10.619 DEBUG:teuthology.orchestra.run.trial173:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:10.675 INFO:tasks.cephadm:Adding host trial173 to orchestrator... 2026-02-20T22:34:10.675 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch host add trial173 2026-02-20T22:34:10.793 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:11.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:10 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:11.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:10 trial035 ceph-mon[40051]: Added host trial073 2026-02-20T22:34:11.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:10 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:11.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:10 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:11.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:10 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:11.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:10 trial035 ceph-mon[40051]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:34:12.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:12 trial035 ceph-mon[40051]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial173", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:12.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:12.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:12 trial035 ceph-mon[40051]: Deploying cephadm binary to trial173 2026-02-20T22:34:12.571 INFO:teuthology.orchestra.run.trial035.stdout:Added host 'trial173' with addr '10.20.193.173' 2026-02-20T22:34:12.715 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-20T22:34:12.833 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:13.067 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:13.067 INFO:teuthology.orchestra.run.trial035.stdout:[{"addr": "10.20.193.35", "hostname": "trial035", "labels": [], "status": ""}, {"addr": "10.20.193.73", "hostname": "trial073", "labels": [], "status": ""}, {"addr": "10.20.193.173", "hostname": "trial173", "labels": [], "status": ""}] 2026-02-20T22:34:13.212 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-20T22:34:13.213 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd crush tunables default 2026-02-20T22:34:13.329 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial073", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: Updating trial073:/etc/ceph/ceph.conf 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: Updating trial073:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: Added host trial173 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:13.444 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:14.232 INFO:teuthology.orchestra.run.trial035.stderr:adjusted tunables profile to default 2026-02-20T22:34:14.378 INFO:tasks.cephadm:Adding mon.a on trial035 2026-02-20T22:34:14.378 INFO:tasks.cephadm:Adding mon.b on trial073 2026-02-20T22:34:14.378 INFO:tasks.cephadm:Adding mon.c on trial173 2026-02-20T22:34:14.378 DEBUG:teuthology.orchestra.run.trial173:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch apply mon '3;trial035:10.20.193.35=a;trial073:10.20.193.73=b;trial173:10.20.193.173=c' 2026-02-20T22:34:14.495 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T22:34:14.496 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T22:34:14.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:14 trial035 ceph-mon[40051]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:34:14.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:14 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2701444765' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-20T22:34:14.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:14 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:14.759 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled mon update... 2026-02-20T22:34:14.904 DEBUG:teuthology.orchestra.run.trial073:mon.b> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.b.service 2026-02-20T22:34:14.907 DEBUG:teuthology.orchestra.run.trial173:mon.c> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mon.c.service 2026-02-20T22:34:14.909 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-20T22:34:14.910 DEBUG:teuthology.orchestra.run.trial173:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T22:34:15.073 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:15.379 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:34:15.380 INFO:teuthology.orchestra.run.trial173.stdout:{"epoch":1,"fsid":"2b6ffc98-0eac-11f1-900e-d404e6e7d460","modified":"2026-02-20T22:33:38.183418Z","created":"2026-02-20T22:33:38.183418Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:3300","nonce":0},{"type":"v1","addr":"10.20.193.35:6789","nonce":0}]},"addr":"10.20.193.35:6789/0","public_addr":"10.20.193.35:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T22:34:15.380 INFO:teuthology.orchestra.run.trial173.stderr:dumped monmap epoch 1 2026-02-20T22:34:15.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2701444765' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-20T22:34:15.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:15.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial173", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: Updating trial173:/etc/ceph/ceph.conf 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;trial035:10.20.193.35=a;trial073:10.20.193.73=b;trial173:10.20.193.173=c", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: Saving service mon spec with placement trial035:10.20.193.35=a;trial073:10.20.193.73=b;trial173:10.20.193.173=c;count:3 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:15.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:15.718 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:15 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:16.522 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-20T22:34:16.522 DEBUG:teuthology.orchestra.run.trial173:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T22:34:16.646 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.c/config 2026-02-20T22:34:16.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:16 trial035 ceph-mon[40051]: Updating trial173:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:16.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:16 trial035 ceph-mon[40051]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:34:16.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:16 trial035 ceph-mon[40051]: Deploying daemon mon.c on trial173 2026-02-20T22:34:16.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:16 trial035 ceph-mon[40051]: from='client.? 10.20.193.173:0/2542620201' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T22:34:18.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:18 trial073 ceph-mon[41944]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: Deploying daemon mon.b on trial073 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: mon.a calling monitor election 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: mon.c calling monitor election 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: monmap epoch 2 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: last_changed 2026-02-20T22:34:16.664629+0000 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: min_mon_release 20 (tentacle) 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: election_strategy: 1 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:34:22.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: 1: [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] mon.c 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: fsmap 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: mgrmap e13: a(active, since 20s) 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: overall HEALTH_OK 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:21 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: Deploying daemon mon.b on trial073 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: mon.a calling monitor election 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: mon.c calling monitor election 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: monmap epoch 2 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: last_changed 2026-02-20T22:34:16.664629+0000 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: min_mon_release 20 (tentacle) 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: election_strategy: 1 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: 1: [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] mon.c 2026-02-20T22:34:22.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: fsmap 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: mgrmap e13: a(active, since 20s) 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: overall HEALTH_OK 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:22.966 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:34:22 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: 2026-02-20T22:34:22.663+0000 7fee86f27640 -1 mgr.server handle_report got status from non-daemon mon.c 2026-02-20T22:34:27.332 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:34:27.333 INFO:teuthology.orchestra.run.trial173.stdout:{"epoch":3,"fsid":"2b6ffc98-0eac-11f1-900e-d404e6e7d460","modified":"2026-02-20T22:34:22.111492Z","created":"2026-02-20T22:33:38.183418Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:3300","nonce":0},{"type":"v1","addr":"10.20.193.35:6789","nonce":0}]},"addr":"10.20.193.35:6789/0","public_addr":"10.20.193.35:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:3300","nonce":0},{"type":"v1","addr":"10.20.193.173:6789","nonce":0}]},"addr":"10.20.193.173:6789/0","public_addr":"10.20.193.173:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:3300","nonce":0},{"type":"v1","addr":"10.20.193.73:6789","nonce":0}]},"addr":"10.20.193.73:6789/0","public_addr":"10.20.193.73:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2026-02-20T22:34:27.333 INFO:teuthology.orchestra.run.trial173.stderr:dumped monmap epoch 3 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: Updating trial035:/etc/ceph/ceph.conf 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: Updating trial073:/etc/ceph/ceph.conf 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: Updating trial173:/etc/ceph/ceph.conf 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: mon.c calling monitor election 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: mon.a calling monitor election 2026-02-20T22:34:27.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: monmap epoch 3 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:27.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: last_changed 2026-02-20T22:34:22.111492+0000 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: min_mon_release 20 (tentacle) 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: election_strategy: 1 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: 1: [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] mon.c 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: 2: [v2:10.20.193.73:3300/0,v1:10.20.193.73:6789/0] mon.b 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: fsmap 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: mgrmap e13: a(active, since 25s) 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: overall HEALTH_OK 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.441 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.442 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.442 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.442 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.442 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.442 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:27.472 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-20T22:34:27.473 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-20T22:34:27.591 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:27.821 INFO:teuthology.orchestra.run.trial035.stdout:# minimal ceph.conf for 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:27.821 INFO:teuthology.orchestra.run.trial035.stdout:[global] 2026-02-20T22:34:27.821 INFO:teuthology.orchestra.run.trial035.stdout: fsid = 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:27.821 INFO:teuthology.orchestra.run.trial035.stdout: mon_host = [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] [v2:10.20.193.73:3300/0,v1:10.20.193.73:6789/0] [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] 2026-02-20T22:34:27.960 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-20T22:34:27.960 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:27.960 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T22:34:27.986 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:27.987 DEBUG:teuthology.orchestra.run.trial035:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:28.053 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:34:28.053 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T22:34:28.082 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:34:28.082 DEBUG:teuthology.orchestra.run.trial073:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:28.146 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:34:28.146 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T22:34:28.172 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:34:28.172 DEBUG:teuthology.orchestra.run.trial173:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: Reconfiguring mon.a (unknown last config time)... 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: Reconfiguring daemon mon.a on trial035 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='client.? 10.20.193.173:0/1981778071' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: Reconfiguring mon.b (monmap changed)... 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: Reconfiguring daemon mon.b on trial073 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1731384460' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T22:34:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:28.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:28 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:28.236 INFO:tasks.cephadm:Adding mgr.a on trial035 2026-02-20T22:34:28.236 INFO:tasks.cephadm:Adding mgr.b on trial073 2026-02-20T22:34:28.236 DEBUG:teuthology.orchestra.run.trial173:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch apply mgr '2;trial035=a;trial073=b' 2026-02-20T22:34:28.388 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.c/config 2026-02-20T22:34:28.632 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled mgr update... 2026-02-20T22:34:28.773 DEBUG:teuthology.orchestra.run.trial073:mgr.b> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@mgr.b.service 2026-02-20T22:34:28.774 DEBUG:tasks.cephadm:set 0 configs 2026-02-20T22:34:28.774 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph config dump 2026-02-20T22:34:28.890 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:29.126 INFO:teuthology.orchestra.run.trial035.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global dev auth_debug true 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 * 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global dev debug_asserts_on_shutdown true 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global basic log_to_file true 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global basic log_to_journald false 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global basic log_to_stderr false 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_allow_pool_delete true 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_cluster_log_to_file true 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_election_default_strategy 1 2026-02-20T22:34:29.127 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global dev ms_die_on_bug true 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global dev ms_die_on_old_message true 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.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-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-20T22:34:29.128 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced debug_mon 20/20 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced debug_ms 1/1 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced debug_paxos 20/20 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_data_avail_warn 5 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-20T22:34:29.129 INFO:teuthology.orchestra.run.trial035.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced debug_mgr 20/20 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced debug_ms 1/1 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mgr/cephadm/migration_current 7 * 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mgr/cephadm/use_agent false * 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:osd dev bdev_debug_aio true 2026-02-20T22:34:29.130 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced debug_ms 1/1 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced debug_osd 20/20 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_misdirected_ops true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_op_order true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_shutdown true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_memory_target_autotune true 2026-02-20T22:34:29.131 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_op_queue debug_random * 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_recover_clone_overlap true 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-20T22:34:29.132 INFO:teuthology.orchestra.run.trial035.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-20T22:34:29.267 INFO:tasks.cephadm:Deploying OSDs... 2026-02-20T22:34:29.268 DEBUG:teuthology.orchestra.run.trial035:> set -ex 2026-02-20T22:34:29.268 DEBUG:teuthology.orchestra.run.trial035:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T22:34:29.285 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-20T22:34:29.285 DEBUG:teuthology.orchestra.run.trial035:> stat /dev/vg_nvme/lv_1 2026-02-20T22:34:29.341 INFO:teuthology.orchestra.run.trial035.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T22:34:29.341 INFO:teuthology.orchestra.run.trial035.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout:Device: 6h/6d Inode: 1313 Links: 1 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout:Access: 2026-02-20 22:34:07.448892313 +0000 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout:Modify: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout:Change: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.342 INFO:teuthology.orchestra.run.trial035.stdout: Birth: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.342 DEBUG:teuthology.orchestra.run.trial035:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T22:34:29.398 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 podman[43431]: 2026-02-20 22:34:29.359394439 +0000 UTC m=+0.016493103 container create 0226c46b18dd5421cf14125e6dd10f3dc9ac011ed01f8fad5f7dc228e9841dd2 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, 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.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216) 2026-02-20T22:34:29.398 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Updating trial035:/etc/ceph/ceph.conf 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Updating trial073:/etc/ceph/ceph.conf 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Updating trial173:/etc/ceph/ceph.conf 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.c calling monitor election 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.a calling monitor election 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:34:29.399 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: monmap epoch 3 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: last_changed 2026-02-20T22:34:22.111492+0000 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:34:29.400 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: min_mon_release 20 (tentacle) 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: election_strategy: 1 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: 1: [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] mon.c 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: 2: [v2:10.20.193.73:3300/0,v1:10.20.193.73:6789/0] mon.b 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: fsmap 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mgrmap e13: a(active, since 25s) 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: overall HEALTH_OK 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.401 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Reconfiguring mon.a (unknown last config time)... 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Reconfiguring daemon mon.a on trial035 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='client.? 10.20.193.173:0/1981778071' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Reconfiguring mon.b (monmap changed)... 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T22:34:29.402 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: Reconfiguring daemon mon.b on trial073 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1731384460' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:29.403 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:29.406 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records in 2026-02-20T22:34:29.406 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records out 2026-02-20T22:34:29.406 INFO:teuthology.orchestra.run.trial035.stderr:512 bytes copied, 0.000155241 s, 3.3 MB/s 2026-02-20T22:34:29.408 DEBUG:teuthology.orchestra.run.trial035:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T22:34:29.465 DEBUG:teuthology.orchestra.run.trial035:> stat /dev/vg_nvme/lv_2 2026-02-20T22:34:29.521 INFO:teuthology.orchestra.run.trial035.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T22:34:29.521 INFO:teuthology.orchestra.run.trial035.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:29.521 INFO:teuthology.orchestra.run.trial035.stdout:Device: 6h/6d Inode: 1306 Links: 1 2026-02-20T22:34:29.522 INFO:teuthology.orchestra.run.trial035.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:29.522 INFO:teuthology.orchestra.run.trial035.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:29.522 INFO:teuthology.orchestra.run.trial035.stdout:Access: 2026-02-20 22:34:07.448892313 +0000 2026-02-20T22:34:29.522 INFO:teuthology.orchestra.run.trial035.stdout:Modify: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.522 INFO:teuthology.orchestra.run.trial035.stdout:Change: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.522 INFO:teuthology.orchestra.run.trial035.stdout: Birth: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.522 DEBUG:teuthology.orchestra.run.trial035:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T22:34:29.585 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records in 2026-02-20T22:34:29.586 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records out 2026-02-20T22:34:29.586 INFO:teuthology.orchestra.run.trial035.stderr:512 bytes copied, 0.00017632 s, 2.9 MB/s 2026-02-20T22:34:29.587 DEBUG:teuthology.orchestra.run.trial035:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T22:34:29.644 DEBUG:teuthology.orchestra.run.trial035:> stat /dev/vg_nvme/lv_3 2026-02-20T22:34:29.701 INFO:teuthology.orchestra.run.trial035.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout:Device: 6h/6d Inode: 1296 Links: 1 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout:Access: 2026-02-20 22:34:07.448892313 +0000 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout:Modify: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout:Change: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.702 INFO:teuthology.orchestra.run.trial035.stdout: Birth: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.703 DEBUG:teuthology.orchestra.run.trial035:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: mon.b calling monitor election 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: mon.c calling monitor election 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: mon.b calling monitor election 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: mon.a calling monitor election 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1179704083' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: monmap epoch 3 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: last_changed 2026-02-20T22:34:22.111492+0000 2026-02-20T22:34:29.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: min_mon_release 20 (tentacle) 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: election_strategy: 1 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: 1: [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] mon.c 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: 2: [v2:10.20.193.73:3300/0,v1:10.20.193.73:6789/0] mon.b 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: fsmap 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: mgrmap e13: a(active, since 27s) 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: overall HEALTH_OK 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.718 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:29 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:29.740 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records in 2026-02-20T22:34:29.740 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records out 2026-02-20T22:34:29.740 INFO:teuthology.orchestra.run.trial035.stderr:512 bytes copied, 0.00017623 s, 2.9 MB/s 2026-02-20T22:34:29.741 DEBUG:teuthology.orchestra.run.trial035:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T22:34:29.744 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.b calling monitor election 2026-02-20T22:34:29.744 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.c calling monitor election 2026-02-20T22:34:29.744 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.b calling monitor election 2026-02-20T22:34:29.744 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.a calling monitor election 2026-02-20T22:34:29.744 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1179704083' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T22:34:29.744 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: monmap epoch 3 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: last_changed 2026-02-20T22:34:22.111492+0000 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: created 2026-02-20T22:33:38.183418+0000 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: min_mon_release 20 (tentacle) 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: election_strategy: 1 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: 0: [v2:10.20.193.35:3300/0,v1:10.20.193.35:6789/0] mon.a 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: 1: [v2:10.20.193.173:3300/0,v1:10.20.193.173:6789/0] mon.c 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: 2: [v2:10.20.193.73:3300/0,v1:10.20.193.73:6789/0] mon.b 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: fsmap 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T22:34:29.745 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: mgrmap e13: a(active, since 27s) 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: overall HEALTH_OK 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 podman[43431]: 2026-02-20 22:34:29.4093146 +0000 UTC m=+0.066413274 container init 0226c46b18dd5421cf14125e6dd10f3dc9ac011ed01f8fad5f7dc228e9841dd2 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b, ceph=True, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 podman[43431]: 2026-02-20 22:34:29.412864882 +0000 UTC m=+0.069963556 container start 0226c46b18dd5421cf14125e6dd10f3dc9ac011ed01f8fad5f7dc228e9841dd2 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True) 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 bash[43431]: 0226c46b18dd5421cf14125e6dd10f3dc9ac011ed01f8fad5f7dc228e9841dd2 2026-02-20T22:34:29.746 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 podman[43431]: 2026-02-20 22:34:29.35210991 +0000 UTC m=+0.009208584 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T22:34:29.747 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 systemd[1]: Started Ceph mgr.b for 2b6ffc98-0eac-11f1-900e-d404e6e7d460. 2026-02-20T22:34:29.747 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mgr[43481]: -- 10.20.193.73:0/3203897412 <== mon.0 v2:10.20.193.35:3300/0 3 ==== mon_map magic: 0 ==== 413+0+0 (secure 0 0 0) 0x5580335f1a00 con 0x5580335a3400 2026-02-20T22:34:29.747 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:29 trial073 ceph-mgr[43481]: -- 10.20.193.73:0/3203897412 <== mon.0 v2:10.20.193.35:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x5580335c4000 con 0x5580335a3400 2026-02-20T22:34:29.799 DEBUG:teuthology.orchestra.run.trial035:> stat /dev/vg_nvme/lv_4 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout:Device: 6h/6d Inode: 1301 Links: 1 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout:Access: 2026-02-20 22:34:07.448892313 +0000 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout:Modify: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.855 INFO:teuthology.orchestra.run.trial035.stdout:Change: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.856 INFO:teuthology.orchestra.run.trial035.stdout: Birth: 2026-02-20 22:31:35.310863320 +0000 2026-02-20T22:34:29.856 DEBUG:teuthology.orchestra.run.trial035:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T22:34:29.917 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records in 2026-02-20T22:34:29.918 INFO:teuthology.orchestra.run.trial035.stderr:1+0 records out 2026-02-20T22:34:29.918 INFO:teuthology.orchestra.run.trial035.stderr:512 bytes copied, 0.000146104 s, 3.5 MB/s 2026-02-20T22:34:29.919 DEBUG:teuthology.orchestra.run.trial035:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T22:34:29.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:29 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:29.977 DEBUG:teuthology.orchestra.run.trial073:> set -ex 2026-02-20T22:34:29.977 DEBUG:teuthology.orchestra.run.trial073:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T22:34:29.994 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-20T22:34:29.994 DEBUG:teuthology.orchestra.run.trial073:> stat /dev/vg_nvme/lv_1 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout:Device: 6h/6d Inode: 1308 Links: 1 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout:Access: 2026-02-20 22:34:29.226737097 +0000 2026-02-20T22:34:30.051 INFO:teuthology.orchestra.run.trial073.stdout:Modify: 2026-02-20 22:31:36.945907537 +0000 2026-02-20T22:34:30.052 INFO:teuthology.orchestra.run.trial073.stdout:Change: 2026-02-20 22:31:36.945907537 +0000 2026-02-20T22:34:30.052 INFO:teuthology.orchestra.run.trial073.stdout: Birth: 2026-02-20 22:31:36.945907537 +0000 2026-02-20T22:34:30.052 DEBUG:teuthology.orchestra.run.trial073:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T22:34:30.116 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records in 2026-02-20T22:34:30.116 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records out 2026-02-20T22:34:30.116 INFO:teuthology.orchestra.run.trial073.stderr:512 bytes copied, 0.000182612 s, 2.8 MB/s 2026-02-20T22:34:30.118 DEBUG:teuthology.orchestra.run.trial073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T22:34:30.173 DEBUG:teuthology.orchestra.run.trial073:> stat /dev/vg_nvme/lv_2 2026-02-20T22:34:30.230 INFO:teuthology.orchestra.run.trial073.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T22:34:30.230 INFO:teuthology.orchestra.run.trial073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:30.230 INFO:teuthology.orchestra.run.trial073.stdout:Device: 6h/6d Inode: 1303 Links: 1 2026-02-20T22:34:30.231 INFO:teuthology.orchestra.run.trial073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:30.231 INFO:teuthology.orchestra.run.trial073.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:30.231 INFO:teuthology.orchestra.run.trial073.stdout:Access: 2026-02-20 22:34:29.226737097 +0000 2026-02-20T22:34:30.231 INFO:teuthology.orchestra.run.trial073.stdout:Modify: 2026-02-20 22:31:36.944907575 +0000 2026-02-20T22:34:30.231 INFO:teuthology.orchestra.run.trial073.stdout:Change: 2026-02-20 22:31:36.944907575 +0000 2026-02-20T22:34:30.231 INFO:teuthology.orchestra.run.trial073.stdout: Birth: 2026-02-20 22:31:36.944907575 +0000 2026-02-20T22:34:30.231 DEBUG:teuthology.orchestra.run.trial073:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T22:34:30.294 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records in 2026-02-20T22:34:30.295 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records out 2026-02-20T22:34:30.295 INFO:teuthology.orchestra.run.trial073.stderr:512 bytes copied, 0.000148077 s, 3.5 MB/s 2026-02-20T22:34:30.296 DEBUG:teuthology.orchestra.run.trial073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T22:34:30.353 DEBUG:teuthology.orchestra.run.trial073:> stat /dev/vg_nvme/lv_3 2026-02-20T22:34:30.409 INFO:teuthology.orchestra.run.trial073.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout:Device: 6h/6d Inode: 1294 Links: 1 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout:Access: 2026-02-20 22:34:29.226737097 +0000 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout:Modify: 2026-02-20 22:31:36.943907613 +0000 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout:Change: 2026-02-20 22:31:36.943907613 +0000 2026-02-20T22:34:30.410 INFO:teuthology.orchestra.run.trial073.stdout: Birth: 2026-02-20 22:31:36.943907613 +0000 2026-02-20T22:34:30.411 DEBUG:teuthology.orchestra.run.trial073:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T22:34:30.472 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records in 2026-02-20T22:34:30.472 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records out 2026-02-20T22:34:30.473 INFO:teuthology.orchestra.run.trial073.stderr:512 bytes copied, 0.000261089 s, 2.0 MB/s 2026-02-20T22:34:30.474 DEBUG:teuthology.orchestra.run.trial073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T22:34:30.531 DEBUG:teuthology.orchestra.run.trial073:> stat /dev/vg_nvme/lv_4 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout:Device: 6h/6d Inode: 1290 Links: 1 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout:Access: 2026-02-20 22:34:29.226737097 +0000 2026-02-20T22:34:30.588 INFO:teuthology.orchestra.run.trial073.stdout:Modify: 2026-02-20 22:31:36.943907613 +0000 2026-02-20T22:34:30.589 INFO:teuthology.orchestra.run.trial073.stdout:Change: 2026-02-20 22:31:36.943907613 +0000 2026-02-20T22:34:30.589 INFO:teuthology.orchestra.run.trial073.stdout: Birth: 2026-02-20 22:31:36.943907613 +0000 2026-02-20T22:34:30.589 DEBUG:teuthology.orchestra.run.trial073:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T22:34:30.652 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records in 2026-02-20T22:34:30.652 INFO:teuthology.orchestra.run.trial073.stderr:1+0 records out 2026-02-20T22:34:30.652 INFO:teuthology.orchestra.run.trial073.stderr:512 bytes copied, 0.00022404 s, 2.3 MB/s 2026-02-20T22:34:30.653 DEBUG:teuthology.orchestra.run.trial073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T22:34:30.709 DEBUG:teuthology.orchestra.run.trial173:> set -ex 2026-02-20T22:34:30.709 DEBUG:teuthology.orchestra.run.trial173:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T22:34:30.726 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-20T22:34:30.726 DEBUG:teuthology.orchestra.run.trial173:> stat /dev/vg_nvme/lv_1 2026-02-20T22:34:30.783 INFO:teuthology.orchestra.run.trial173.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T22:34:30.783 INFO:teuthology.orchestra.run.trial173.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:30.783 INFO:teuthology.orchestra.run.trial173.stdout:Device: 6h/6d Inode: 1312 Links: 1 2026-02-20T22:34:30.783 INFO:teuthology.orchestra.run.trial173.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:30.783 INFO:teuthology.orchestra.run.trial173.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:30.784 INFO:teuthology.orchestra.run.trial173.stdout:Access: 2026-02-20 22:34:16.428678307 +0000 2026-02-20T22:34:30.784 INFO:teuthology.orchestra.run.trial173.stdout:Modify: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:30.784 INFO:teuthology.orchestra.run.trial173.stdout:Change: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:30.784 INFO:teuthology.orchestra.run.trial173.stdout: Birth: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:30.784 DEBUG:teuthology.orchestra.run.trial173:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T22:34:30.846 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records in 2026-02-20T22:34:30.847 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records out 2026-02-20T22:34:30.847 INFO:teuthology.orchestra.run.trial173.stderr:512 bytes copied, 0.000152067 s, 3.4 MB/s 2026-02-20T22:34:30.848 DEBUG:teuthology.orchestra.run.trial173:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T22:34:30.857 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-02-20T22:34:30.857 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-02-20T22:34:30.857 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: from numpy import show_config as show_numpy_config 2026-02-20T22:34:30.904 DEBUG:teuthology.orchestra.run.trial173:> stat /dev/vg_nvme/lv_2 2026-02-20T22:34:30.959 INFO:teuthology.orchestra.run.trial173.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T22:34:30.959 INFO:teuthology.orchestra.run.trial173.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:30.959 INFO:teuthology.orchestra.run.trial173.stdout:Device: 6h/6d Inode: 1317 Links: 1 2026-02-20T22:34:30.959 INFO:teuthology.orchestra.run.trial173.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:30.959 INFO:teuthology.orchestra.run.trial173.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:30.959 INFO:teuthology.orchestra.run.trial173.stdout:Access: 2026-02-20 22:34:16.428678307 +0000 2026-02-20T22:34:30.960 INFO:teuthology.orchestra.run.trial173.stdout:Modify: 2026-02-20 22:31:35.281912430 +0000 2026-02-20T22:34:30.960 INFO:teuthology.orchestra.run.trial173.stdout:Change: 2026-02-20 22:31:35.281912430 +0000 2026-02-20T22:34:30.960 INFO:teuthology.orchestra.run.trial173.stdout: Birth: 2026-02-20 22:31:35.281912430 +0000 2026-02-20T22:34:30.960 DEBUG:teuthology.orchestra.run.trial173:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T22:34:31.022 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records in 2026-02-20T22:34:31.022 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records out 2026-02-20T22:34:31.022 INFO:teuthology.orchestra.run.trial173.stderr:512 bytes copied, 0.000147518 s, 3.5 MB/s 2026-02-20T22:34:31.023 DEBUG:teuthology.orchestra.run.trial173:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T22:34:31.082 DEBUG:teuthology.orchestra.run.trial173:> stat /dev/vg_nvme/lv_3 2026-02-20T22:34:31.137 INFO:teuthology.orchestra.run.trial173.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout:Device: 6h/6d Inode: 1308 Links: 1 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout:Access: 2026-02-20 22:34:16.429678319 +0000 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout:Modify: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout:Change: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:31.138 INFO:teuthology.orchestra.run.trial173.stdout: Birth: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:31.139 DEBUG:teuthology.orchestra.run.trial173:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:31.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.200 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records in 2026-02-20T22:34:31.200 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records out 2026-02-20T22:34:31.200 INFO:teuthology.orchestra.run.trial173.stderr:512 bytes copied, 0.000166814 s, 3.1 MB/s 2026-02-20T22:34:31.201 DEBUG:teuthology.orchestra.run.trial173:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T22:34:31.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:31.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.260 DEBUG:teuthology.orchestra.run.trial173:> stat /dev/vg_nvme/lv_4 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout:Device: 6h/6d Inode: 1301 Links: 1 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout:Access: 2026-02-20 22:34:16.429678319 +0000 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout:Modify: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout:Change: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:31.316 INFO:teuthology.orchestra.run.trial173.stdout: Birth: 2026-02-20 22:31:35.280912468 +0000 2026-02-20T22:34:31.317 DEBUG:teuthology.orchestra.run.trial173:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T22:34:31.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:31.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:31.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:31.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:31.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:31.381 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records in 2026-02-20T22:34:31.382 INFO:teuthology.orchestra.run.trial173.stderr:1+0 records out 2026-02-20T22:34:31.382 INFO:teuthology.orchestra.run.trial173.stderr:512 bytes copied, 0.000144192 s, 3.6 MB/s 2026-02-20T22:34:31.383 DEBUG:teuthology.orchestra.run.trial173:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T22:34:31.441 INFO:tasks.cephadm:Deploying osd.0 on trial035 with /dev/vg_nvme/lv_4... 2026-02-20T22:34:31.441 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-20T22:34:31.558 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:32.037 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:31 trial035 ceph-mon[40051]: Reconfiguring mgr.a (unknown last config time)... 2026-02-20T22:34:32.037 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:31 trial035 ceph-mon[40051]: Reconfiguring daemon mgr.a on trial035 2026-02-20T22:34:32.038 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:31 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:32.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:31 trial173 ceph-mon[41946]: Reconfiguring mgr.a (unknown last config time)... 2026-02-20T22:34:32.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:31 trial173 ceph-mon[41946]: Reconfiguring daemon mgr.a on trial035 2026-02-20T22:34:32.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:31 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:32.259 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:34:32.277 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch daemon add osd trial035:vg_nvme/lv_4 --skip-validation 2026-02-20T22:34:32.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:31 trial073 ceph-mon[41944]: Reconfiguring mgr.a (unknown last config time)... 2026-02-20T22:34:32.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:31 trial073 ceph-mon[41944]: Reconfiguring daemon mgr.a on trial035 2026-02-20T22:34:32.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:31 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:32.394 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: Standby manager daemon b started 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:33.050 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: Standby manager daemon b started 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:33.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:33.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: Standby manager daemon b started 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/1493829589' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:33.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:33.359 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:33.360 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:34.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial035:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:34.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: osd.default does not exist. Creating it now. 2026-02-20T22:34:34.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: Creating OSDs with service ID: default on trial035:['vg_nvme/lv_4'] 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: Marking host: trial035 for OSDSpec preview refresh. 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: Saving service osd.default spec with placement trial035 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: mgrmap e14: a(active, since 31s), standbys: b 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/2540602233' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "af087a45-a8b4-4b45-9caf-236e1e6376c8"} : dispatch 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/2540602233' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af087a45-a8b4-4b45-9caf-236e1e6376c8"}]': finished 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: osdmap e5: 1 total, 0 up, 1 in 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:34.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:33 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/3427225746' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial035:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: osd.default does not exist. Creating it now. 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: Creating OSDs with service ID: default on trial035:['vg_nvme/lv_4'] 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: Marking host: trial035 for OSDSpec preview refresh. 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: Saving service osd.default spec with placement trial035 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: mgrmap e14: a(active, since 31s), standbys: b 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T22:34:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2540602233' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "af087a45-a8b4-4b45-9caf-236e1e6376c8"} : dispatch 2026-02-20T22:34:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2540602233' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af087a45-a8b4-4b45-9caf-236e1e6376c8"}]': finished 2026-02-20T22:34:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: osdmap e5: 1 total, 0 up, 1 in 2026-02-20T22:34:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:33 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/3427225746' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:34.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial035:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:34.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: osd.default does not exist. Creating it now. 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: Creating OSDs with service ID: default on trial035:['vg_nvme/lv_4'] 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: Marking host: trial035 for OSDSpec preview refresh. 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: Saving service osd.default spec with placement trial035 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: mgrmap e14: a(active, since 31s), standbys: b 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/2540602233' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "af087a45-a8b4-4b45-9caf-236e1e6376c8"} : dispatch 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/2540602233' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af087a45-a8b4-4b45-9caf-236e1e6376c8"}]': finished 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: osdmap e5: 1 total, 0 up, 1 in 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:34.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:33 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/3427225746' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:35.053 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:34 trial035 ceph-mon[40051]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:34 trial173 ceph-mon[41946]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:35.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:34 trial073 ceph-mon[41944]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:35.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:35 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T22:34:35.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:35 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:35.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:35 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T22:34:35.932 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:35 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:36.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:35 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T22:34:36.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:35 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:36.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:35 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T22:34:36.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:35 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:36.258 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:35 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T22:34:36.258 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:35 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:36.259 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:35 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T22:34:36.259 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:35 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:37.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:36 trial173 ceph-mon[41946]: Deploying daemon osd.0 on trial035 2026-02-20T22:34:37.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:36 trial173 ceph-mon[41946]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:37.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:36 trial173 ceph-mon[41946]: Deploying daemon osd.0 on trial035 2026-02-20T22:34:37.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:36 trial035 ceph-mon[40051]: Deploying daemon osd.0 on trial035 2026-02-20T22:34:37.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:36 trial035 ceph-mon[40051]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:37.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:36 trial035 ceph-mon[40051]: Deploying daemon osd.0 on trial035 2026-02-20T22:34:37.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:36 trial073 ceph-mon[41944]: Deploying daemon osd.0 on trial035 2026-02-20T22:34:37.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:36 trial073 ceph-mon[41944]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:37.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:36 trial073 ceph-mon[41944]: Deploying daemon osd.0 on trial035 2026-02-20T22:34:39.019 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:38 trial035 ceph-mon[40051]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:39.020 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:38 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:39.020 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:38 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:39.020 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:38 trial035 ceph-mon[40051]: from='osd.0 [v2:10.20.193.35:6802/2081404112,v1:10.20.193.35:6803/2081404112]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T22:34:39.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:38 trial073 ceph-mon[41944]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:39.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:38 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:39.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:38 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:39.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:38 trial073 ceph-mon[41944]: from='osd.0 [v2:10.20.193.35:6802/2081404112,v1:10.20.193.35:6803/2081404112]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T22:34:39.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:38 trial173 ceph-mon[41946]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:39.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:38 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:39.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:38 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:39.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:38 trial173 ceph-mon[41946]: from='osd.0 [v2:10.20.193.35:6802/2081404112,v1:10.20.193.35:6803/2081404112]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T22:34:40.149 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:39 trial035 ceph-mon[40051]: from='osd.0 [v2:10.20.193.35:6802/2081404112,v1:10.20.193.35:6803/2081404112]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T22:34:40.149 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:39 trial035 ceph-mon[40051]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T22:34:40.149 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:39 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:40.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:39 trial173 ceph-mon[41946]: from='osd.0 [v2:10.20.193.35:6802/2081404112,v1:10.20.193.35:6803/2081404112]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T22:34:40.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:39 trial173 ceph-mon[41946]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T22:34:40.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:39 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:40.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:39 trial073 ceph-mon[41944]: from='osd.0 [v2:10.20.193.35:6802/2081404112,v1:10.20.193.35:6803/2081404112]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T22:34:40.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:39 trial073 ceph-mon[41944]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T22:34:40.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:39 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:40.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:40 trial035 ceph-mon[40051]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:40.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:40 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:40.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:40 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:41.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:40 trial173 ceph-mon[41946]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:41.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:40 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:41.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:40 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:41.263 INFO:teuthology.orchestra.run.trial035.stdout:Created osd(s) 0 on host 'trial035' 2026-02-20T22:34:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:40 trial073 ceph-mon[41944]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:40 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:40 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:41.406 DEBUG:teuthology.orchestra.run.trial035:osd.0> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@osd.0.service 2026-02-20T22:34:41.408 INFO:tasks.cephadm:Deploying osd.1 on trial073 with /dev/vg_nvme/lv_4... 2026-02-20T22:34:41.408 DEBUG:teuthology.orchestra.run.trial073:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-20T22:34:41.527 INFO:teuthology.orchestra.run.trial073.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.b/config 2026-02-20T22:34:41.995 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:41 trial073 ceph-mon[41944]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T22:34:41.995 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:41 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:41.996 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:41 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:42.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:41 trial173 ceph-mon[41946]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T22:34:42.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:41 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:42.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:41 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:42.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:41 trial035 ceph-mon[40051]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T22:34:42.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:41 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:42.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:41 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:42.222 INFO:teuthology.orchestra.run.trial073.stdout: 2026-02-20T22:34:42.239 DEBUG:teuthology.orchestra.run.trial073:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch daemon add osd trial073:vg_nvme/lv_4 --skip-validation 2026-02-20T22:34:42.356 INFO:teuthology.orchestra.run.trial073.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.b/config 2026-02-20T22:34:43.008 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:43.008 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T22:34:43.008 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: osdmap e7: 1 total, 0 up, 1 in 2026-02-20T22:34:43.008 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial035", "root=default"]} : dispatch 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:43.009 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:42 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:43.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:43.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T22:34:43.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: osdmap e7: 1 total, 0 up, 1 in 2026-02-20T22:34:43.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial035", "root=default"]} : dispatch 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:43.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:43.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:42 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: osdmap e7: 1 total, 0 up, 1 in 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial035", "root=default"]} : dispatch 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:43.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:42 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:43.217 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:34:42 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-osd-0[56314]: 2026-02-20T22:34:42.907+0000 7fe22a425640 -1 osd.0 0 waiting for initial osdmap 2026-02-20T22:34:43.218 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:34:42 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-osd-0[56314]: 2026-02-20T22:34:42.910+0000 7fe225a2b640 -1 osd.0 8 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T22:34:44.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='client.24125 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial073:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: osd.default does not exist. Creating it now. 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: Creating OSDs with service ID: default on trial073:['vg_nvme/lv_4'] 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: Marking host: trial073 for OSDSpec preview refresh. 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: Saving service osd.default spec with placement trial073 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial035", "root=default"]}]': finished 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: osdmap e8: 1 total, 0 up, 1 in 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='client.? 10.20.193.73:0/1302718552' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"} : dispatch 2026-02-20T22:34:44.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"} : dispatch 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"}]': finished 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453] boot 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: osdmap e9: 2 total, 1 up, 2 in 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: Detected new or changed devices on trial035 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: Adjusting osd_memory_target on trial035 to 84047M 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:44.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:43 trial073 ceph-mon[41944]: from='client.? 10.20.193.73:0/3265411273' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:44.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='client.24125 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial073:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:44.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: osd.default does not exist. Creating it now. 2026-02-20T22:34:44.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: Creating OSDs with service ID: default on trial073:['vg_nvme/lv_4'] 2026-02-20T22:34:44.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: Marking host: trial073 for OSDSpec preview refresh. 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: Saving service osd.default spec with placement trial073 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial035", "root=default"]}]': finished 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: osdmap e8: 1 total, 0 up, 1 in 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='client.? 10.20.193.73:0/1302718552' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"} : dispatch 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"} : dispatch 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"}]': finished 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453] boot 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: osdmap e9: 2 total, 1 up, 2 in 2026-02-20T22:34:44.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: Detected new or changed devices on trial035 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: Adjusting osd_memory_target on trial035 to 84047M 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:44.186 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:44.187 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:44.187 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:43 trial173 ceph-mon[41946]: from='client.? 10.20.193.73:0/3265411273' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:44.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='client.24125 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial073:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: osd.default does not exist. Creating it now. 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: Creating OSDs with service ID: default on trial073:['vg_nvme/lv_4'] 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: Marking host: trial073 for OSDSpec preview refresh. 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: Saving service osd.default spec with placement trial073 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial035", "root=default"]}]': finished 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: osdmap e8: 1 total, 0 up, 1 in 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='client.? 10.20.193.73:0/1302718552' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"} : dispatch 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"} : dispatch 2026-02-20T22:34:44.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fdb3cf19-27f0-4012-a142-2013d0c94829"}]': finished 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: osd.0 [v2:10.20.193.35:6802/3894809453,v1:10.20.193.35:6803/3894809453] boot 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: osdmap e9: 2 total, 1 up, 2 in 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: Detected new or changed devices on trial035 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: Adjusting osd_memory_target on trial035 to 84047M 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:44.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:44.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:44.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:44.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:44.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T22:34:44.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:43 trial035 ceph-mon[40051]: from='client.? 10.20.193.73:0/3265411273' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:45.093 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:44 trial073 ceph-mon[41944]: purged_snaps scrub starts 2026-02-20T22:34:45.093 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:44 trial073 ceph-mon[41944]: purged_snaps scrub ok 2026-02-20T22:34:45.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:44 trial173 ceph-mon[41946]: purged_snaps scrub starts 2026-02-20T22:34:45.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:44 trial173 ceph-mon[41946]: purged_snaps scrub ok 2026-02-20T22:34:45.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:44 trial035 ceph-mon[40051]: purged_snaps scrub starts 2026-02-20T22:34:45.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:44 trial035 ceph-mon[40051]: purged_snaps scrub ok 2026-02-20T22:34:46.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: osdmap e10: 2 total, 1 up, 2 in 2026-02-20T22:34:46.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:46.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T22:34:46.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:46.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: Deploying daemon osd.1 on trial073 2026-02-20T22:34:46.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: pgmap v22: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:46.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T22:34:46.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:46.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:45 trial173 ceph-mon[41946]: Deploying daemon osd.1 on trial073 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: osdmap e10: 2 total, 1 up, 2 in 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: Deploying daemon osd.1 on trial073 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: pgmap v22: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:46.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:45 trial035 ceph-mon[40051]: Deploying daemon osd.1 on trial073 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: osdmap e10: 2 total, 1 up, 2 in 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: Deploying daemon osd.1 on trial073 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: pgmap v22: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:46.227 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:45 trial073 ceph-mon[41944]: Deploying daemon osd.1 on trial073 2026-02-20T22:34:49.024 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:48 trial073 ceph-mon[41944]: pgmap v23: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:49.025 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:48 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:49.025 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:48 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:49.025 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:48 trial073 ceph-mon[41944]: from='osd.1 [v2:10.20.193.73:6800/2633132809,v1:10.20.193.73:6801/2633132809]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:49.025 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:48 trial073 ceph-mon[41944]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:49.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:48 trial173 ceph-mon[41946]: pgmap v23: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:49.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:48 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:49.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:48 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:49.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:48 trial173 ceph-mon[41946]: from='osd.1 [v2:10.20.193.73:6800/2633132809,v1:10.20.193.73:6801/2633132809]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:49.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:48 trial173 ceph-mon[41946]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:49.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:48 trial035 ceph-mon[40051]: pgmap v23: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:49.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:48 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:49.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:48 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:49.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:48 trial035 ceph-mon[40051]: from='osd.1 [v2:10.20.193.73:6800/2633132809,v1:10.20.193.73:6801/2633132809]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:49.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:48 trial035 ceph-mon[40051]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:50.027 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:49 trial073 ceph-mon[41944]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T22:34:50.027 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:49 trial073 ceph-mon[41944]: osdmap e11: 2 total, 1 up, 2 in 2026-02-20T22:34:50.027 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:49 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:50.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:49 trial173 ceph-mon[41946]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T22:34:50.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:49 trial173 ceph-mon[41946]: osdmap e11: 2 total, 1 up, 2 in 2026-02-20T22:34:50.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:49 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:50.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:49 trial035 ceph-mon[40051]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T22:34:50.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:49 trial035 ceph-mon[40051]: osdmap e11: 2 total, 1 up, 2 in 2026-02-20T22:34:50.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:49 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:50.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:50 trial073 ceph-mon[41944]: pgmap v25: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:50.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:50 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:50.858 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:50 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:51.183 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:50 trial173 ceph-mon[41946]: pgmap v25: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:51.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:50 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:51.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:50 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:51.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:50 trial035 ceph-mon[40051]: pgmap v25: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:51.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:50 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:51.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:50 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:51.306 INFO:teuthology.orchestra.run.trial073.stdout:Created osd(s) 1 on host 'trial073' 2026-02-20T22:34:51.448 DEBUG:teuthology.orchestra.run.trial073:osd.1> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@osd.1.service 2026-02-20T22:34:51.450 INFO:tasks.cephadm:Deploying osd.2 on trial173 with /dev/vg_nvme/lv_4... 2026-02-20T22:34:51.450 DEBUG:teuthology.orchestra.run.trial173:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-20T22:34:51.566 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.c/config 2026-02-20T22:34:52.036 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:51 trial173 ceph-mon[41946]: from='osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:52.037 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:51 trial173 ceph-mon[41946]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:52.037 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:51 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.037 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:51 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.086 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:51 trial073 ceph-mon[41944]: from='osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:52.086 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:51 trial073 ceph-mon[41944]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:52.086 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:51 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.086 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:51 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:51 trial035 ceph-mon[40051]: from='osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:52.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:51 trial035 ceph-mon[40051]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T22:34:52.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:51 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:51 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.230 INFO:teuthology.orchestra.run.trial173.stdout: 2026-02-20T22:34:52.246 DEBUG:teuthology.orchestra.run.trial173:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch daemon add osd trial173:vg_nvme/lv_4 --skip-validation 2026-02-20T22:34:52.364 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.c/config 2026-02-20T22:34:52.949 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:34:52 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-osd-1[48976]: 2026-02-20T22:34:52.734+0000 7fba7de41640 -1 osd.1 0 waiting for initial osdmap 2026-02-20T22:34:52.950 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:34:52 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-osd-1[48976]: 2026-02-20T22:34:52.735+0000 7fba7543f640 -1 osd.1 13 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T22:34:52.950 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: pgmap v26: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:52.950 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T22:34:52.950 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: osdmap e12: 2 total, 1 up, 2 in 2026-02-20T22:34:52.950 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]} : dispatch 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]} : dispatch 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.951 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:52.952 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:52.952 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:52 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:52.952 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: pgmap v26: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: osdmap e12: 2 total, 1 up, 2 in 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]} : dispatch 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]} : dispatch 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.953 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.954 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.954 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.954 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.954 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:52.954 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:52.954 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:52 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:52.997 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: pgmap v26: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:52.997 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T22:34:52.997 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: osdmap e12: 2 total, 1 up, 2 in 2026-02-20T22:34:52.997 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:52.997 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]} : dispatch 2026-02-20T22:34:52.997 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]} : dispatch 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:52.998 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:52 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:53.812 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='client.24151 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial173:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:53.812 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: osd.default does not exist. Creating it now. 2026-02-20T22:34:53.812 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: Creating OSDs with service ID: default on trial173:['vg_nvme/lv_4'] 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: Marking host: trial173 for OSDSpec preview refresh. 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: Saving service osd.default spec with placement trial173 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]}]': finished 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: osdmap e13: 2 total, 1 up, 2 in 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='client.? 10.20.193.173:0/1399246985' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"} : dispatch 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"} : dispatch 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"}]': finished 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873] boot 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: osdmap e14: 3 total, 2 up, 3 in 2026-02-20T22:34:53.813 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:53.814 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:53.815 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:53.815 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:53.815 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:53 trial173 ceph-mon[41946]: from='client.? 10.20.193.173:0/456855938' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:54.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='client.24151 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial173:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: osd.default does not exist. Creating it now. 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: Creating OSDs with service ID: default on trial173:['vg_nvme/lv_4'] 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: Marking host: trial173 for OSDSpec preview refresh. 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: Saving service osd.default spec with placement trial173 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]}]': finished 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: osdmap e13: 2 total, 1 up, 2 in 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='client.? 10.20.193.173:0/1399246985' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"} : dispatch 2026-02-20T22:34:54.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"} : dispatch 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"}]': finished 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873] boot 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: osdmap e14: 3 total, 2 up, 3 in 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.109 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:54.110 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:53 trial073 ceph-mon[41944]: from='client.? 10.20.193.173:0/456855938' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='client.24151 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial173:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: osd.default does not exist. Creating it now. 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: Creating OSDs with service ID: default on trial173:['vg_nvme/lv_4'] 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: Marking host: trial173 for OSDSpec preview refresh. 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: Saving service osd.default spec with placement trial173 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial073", "root=default"]}]': finished 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: osdmap e13: 2 total, 1 up, 2 in 2026-02-20T22:34:54.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='client.? 10.20.193.173:0/1399246985' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"} : dispatch 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"} : dispatch 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2a12244d-7a1a-4965-b3ba-d633cdc0da6a"}]': finished 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: osd.1 [v2:10.20.193.73:6800/1464745873,v1:10.20.193.73:6801/1464745873] boot 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: osdmap e14: 3 total, 2 up, 3 in 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:54.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:53 trial035 ceph-mon[40051]: from='client.? 10.20.193.173:0/456855938' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T22:34:54.996 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:54 trial173 ceph-mon[41946]: purged_snaps scrub starts 2026-02-20T22:34:54.996 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:54 trial173 ceph-mon[41946]: purged_snaps scrub ok 2026-02-20T22:34:54.996 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:54 trial173 ceph-mon[41946]: Detected new or changed devices on trial073 2026-02-20T22:34:54.996 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:54 trial173 ceph-mon[41946]: Adjusting osd_memory_target on trial073 to 84047M 2026-02-20T22:34:54.996 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:54 trial173 ceph-mon[41946]: pgmap v30: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:55.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:54 trial073 ceph-mon[41944]: purged_snaps scrub starts 2026-02-20T22:34:55.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:54 trial073 ceph-mon[41944]: purged_snaps scrub ok 2026-02-20T22:34:55.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:54 trial073 ceph-mon[41944]: Detected new or changed devices on trial073 2026-02-20T22:34:55.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:54 trial073 ceph-mon[41944]: Adjusting osd_memory_target on trial073 to 84047M 2026-02-20T22:34:55.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:54 trial073 ceph-mon[41944]: pgmap v30: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:55.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:54 trial035 ceph-mon[40051]: purged_snaps scrub starts 2026-02-20T22:34:55.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:54 trial035 ceph-mon[40051]: purged_snaps scrub ok 2026-02-20T22:34:55.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:54 trial035 ceph-mon[40051]: Detected new or changed devices on trial073 2026-02-20T22:34:55.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:54 trial035 ceph-mon[40051]: Adjusting osd_memory_target on trial073 to 84047M 2026-02-20T22:34:55.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:54 trial035 ceph-mon[40051]: pgmap v30: 0 pgs: ; 0 B data, 27 MiB used, 700 GiB / 700 GiB avail 2026-02-20T22:34:55.880 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:55 trial173 ceph-mon[41946]: osdmap e15: 3 total, 2 up, 3 in 2026-02-20T22:34:55.880 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:55 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:55.881 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:55 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T22:34:55.881 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:55 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:55.881 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:55 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T22:34:55.881 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:55 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:56.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:55 trial073 ceph-mon[41944]: osdmap e15: 3 total, 2 up, 3 in 2026-02-20T22:34:56.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:55 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:56.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:55 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T22:34:56.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:55 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:56.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:55 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T22:34:56.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:55 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:56.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:55 trial035 ceph-mon[40051]: osdmap e15: 3 total, 2 up, 3 in 2026-02-20T22:34:56.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:55 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:56.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:55 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T22:34:56.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:55 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:56.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:55 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T22:34:56.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:55 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:34:56.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:56 trial173 ceph-mon[41946]: Deploying daemon osd.2 on trial173 2026-02-20T22:34:56.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:56 trial173 ceph-mon[41946]: Deploying daemon osd.2 on trial173 2026-02-20T22:34:56.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:56 trial173 ceph-mon[41946]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:34:57.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:56 trial073 ceph-mon[41944]: Deploying daemon osd.2 on trial173 2026-02-20T22:34:57.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:56 trial073 ceph-mon[41944]: Deploying daemon osd.2 on trial173 2026-02-20T22:34:57.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:56 trial073 ceph-mon[41944]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:34:57.116 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:56 trial035 ceph-mon[40051]: Deploying daemon osd.2 on trial173 2026-02-20T22:34:57.116 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:56 trial035 ceph-mon[40051]: Deploying daemon osd.2 on trial173 2026-02-20T22:34:57.116 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:56 trial035 ceph-mon[40051]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:34:58.765 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:58 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:58.765 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:58 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:58.766 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:58 trial173 ceph-mon[41946]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:34:58.766 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:58 trial173 ceph-mon[41946]: from='osd.2 [v2:10.20.193.173:6800/1137194493,v1:10.20.193.173:6801/1137194493]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:34:58.766 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:58 trial173 ceph-mon[41946]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:34:58.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:58 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:58.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:58 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:58.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:58 trial035 ceph-mon[40051]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:34:58.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:58 trial035 ceph-mon[40051]: from='osd.2 [v2:10.20.193.173:6800/1137194493,v1:10.20.193.173:6801/1137194493]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:34:58.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:58 trial035 ceph-mon[40051]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:34:59.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:58 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:59.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:58 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:34:59.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:58 trial073 ceph-mon[41944]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:34:59.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:58 trial073 ceph-mon[41944]: from='osd.2 [v2:10.20.193.173:6800/1137194493,v1:10.20.193.173:6801/1137194493]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:34:59.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:58 trial073 ceph-mon[41944]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:34:59.900 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:59 trial173 ceph-mon[41946]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T22:34:59.901 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:59 trial173 ceph-mon[41946]: osdmap e16: 3 total, 2 up, 3 in 2026-02-20T22:34:59.901 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:34:59 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:34:59.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:59 trial035 ceph-mon[40051]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T22:34:59.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:59 trial035 ceph-mon[40051]: osdmap e16: 3 total, 2 up, 3 in 2026-02-20T22:34:59.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:34:59 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:00.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:59 trial073 ceph-mon[41944]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T22:35:00.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:59 trial073 ceph-mon[41944]: osdmap e16: 3 total, 2 up, 3 in 2026-02-20T22:35:00.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:34:59 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:00.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:00 trial173 ceph-mon[41946]: pgmap v35: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:00.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:00 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:00.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:00 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:00.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:00 trial035 ceph-mon[40051]: pgmap v35: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:00.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:00 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:00.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:00 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:01.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:00 trial073 ceph-mon[41944]: pgmap v35: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:01.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:00 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:01.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:00 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:01.121 INFO:teuthology.orchestra.run.trial173.stdout:Created osd(s) 2 on host 'trial173' 2026-02-20T22:35:01.264 DEBUG:teuthology.orchestra.run.trial173:osd.2> sudo journalctl -f -n 0 -u ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460@osd.2.service 2026-02-20T22:35:01.267 INFO:tasks.cephadm:Waiting for 3 OSDs to come up... 2026-02-20T22:35:01.267 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T22:35:01.390 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:01.631 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:01.774 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":17,"num_osds":3,"num_up_osds":2,"osd_up_since":1771626893,"num_in_osds":3,"osd_in_since":1771626893,"num_remapped_pgs":0} 2026-02-20T22:35:01.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:01 trial173 ceph-mon[41946]: from='osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:35:01.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:01 trial173 ceph-mon[41946]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:35:01.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:01 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:01.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:01 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:01.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:01 trial035 ceph-mon[40051]: from='osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:35:01.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:01 trial035 ceph-mon[40051]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:35:01.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:01.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:01 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:01 trial073 ceph-mon[41944]: from='osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:35:02.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:01 trial073 ceph-mon[41944]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T22:35:02.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:01 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:01 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: osdmap e17: 3 total, 2 up, 3 in 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]} : dispatch 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]} : dispatch 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/468856188' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: pgmap v37: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.757 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:02 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.758 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:02 trial173 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-osd-2[48589]: 2026-02-20T22:35:02.631+0000 7f7c313ae640 -1 osd.2 0 waiting for initial osdmap 2026-02-20T22:35:02.758 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:02 trial173 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-osd-2[48589]: 2026-02-20T22:35:02.633+0000 7f7c2c9b4640 -1 osd.2 18 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T22:35:02.775 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T22:35:02.786 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: osdmap e17: 3 total, 2 up, 3 in 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]} : dispatch 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]} : dispatch 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/468856188' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: pgmap v37: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:02.787 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.788 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.788 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.788 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:02 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.894 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: osdmap e17: 3 total, 2 up, 3 in 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]} : dispatch 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]} : dispatch 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/468856188' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: pgmap v37: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:02.916 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.917 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.917 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:02.917 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.917 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.917 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:02.917 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:02 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.126 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:03.265 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":18,"num_osds":3,"num_up_osds":2,"osd_up_since":1771626893,"num_in_osds":3,"osd_in_since":1771626893,"num_remapped_pgs":0} 2026-02-20T22:35:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]}]': finished 2026-02-20T22:35:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: osdmap e18: 3 total, 2 up, 3 in 2026-02-20T22:35:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/684052564' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:03.685 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:35:03.686 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:03 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]}]': finished 2026-02-20T22:35:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: osdmap e18: 3 total, 2 up, 3 in 2026-02-20T22:35:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:03.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/684052564' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:03.967 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:03.968 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:35:03.968 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:03 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:04.002 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial173", "root=default"]}]': finished 2026-02-20T22:35:04.002 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: osdmap e18: 3 total, 2 up, 3 in 2026-02-20T22:35:04.002 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:04.002 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:04.002 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/684052564' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:04.003 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T22:35:04.004 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:03 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:04.266 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T22:35:04.386 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:04.619 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:04.758 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":19,"num_osds":3,"num_up_osds":3,"osd_up_since":1771626903,"num_in_osds":3,"osd_in_since":1771626893,"num_remapped_pgs":0} 2026-02-20T22:35:04.759 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T22:35:04.839 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: purged_snaps scrub starts 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: purged_snaps scrub ok 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: Detected new or changed devices on trial173 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: Adjusting osd_memory_target on trial173 to 88143M 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633] boot 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: osdmap e19: 3 total, 3 up, 3 in 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: pgmap v40: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-20T22:35:04.840 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:04 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/972173600' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:04.876 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: purged_snaps scrub starts 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: purged_snaps scrub ok 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: Detected new or changed devices on trial173 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: Adjusting osd_memory_target on trial173 to 88143M 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633] boot 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: osdmap e19: 3 total, 3 up, 3 in 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: pgmap v40: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-20T22:35:04.900 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:04 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/972173600' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:05.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: purged_snaps scrub starts 2026-02-20T22:35:05.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: purged_snaps scrub ok 2026-02-20T22:35:05.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: Detected new or changed devices on trial173 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: Adjusting osd_memory_target on trial173 to 88143M 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: osd.2 [v2:10.20.193.173:6800/2202769633,v1:10.20.193.173:6801/2202769633] boot 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: osdmap e19: 3 total, 3 up, 3 in 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: pgmap v40: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-20T22:35:05.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:04 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/972173600' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T22:35:05.113 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:05.113 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":20,"fsid":"2b6ffc98-0eac-11f1-900e-d404e6e7d460","created":"2026-02-20T22:33:39.416868+0000","modified":"2026-02-20T22:35:04.632249+0000","last_up_change":"2026-02-20T22:35:03.628670+0000","last_in_change":"2026-02-20T22:34:53.402722+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":11,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":3,"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-20T22:35:03.847347+0000","flags":32769,"flags_names":"hashpspool,creating","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"20","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{},"read_balance":{"score_type":"Fair distribution","score_acting":3,"score_stable":3,"optimal_score":1,"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":"af087a45-a8b4-4b45-9caf-236e1e6376c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":9,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6802","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6803","nonce":3894809453}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6804","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6805","nonce":3894809453}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6808","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6809","nonce":3894809453}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6806","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6807","nonce":3894809453}]},"public_addr":"10.20.193.35:6803/3894809453","cluster_addr":"10.20.193.35:6805/3894809453","heartbeat_back_addr":"10.20.193.35:6809/3894809453","heartbeat_front_addr":"10.20.193.35:6807/3894809453","state":["exists","up"]},{"osd":1,"uuid":"fdb3cf19-27f0-4012-a142-2013d0c94829","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":14,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6800","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6801","nonce":1464745873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6802","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6803","nonce":1464745873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6806","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6807","nonce":1464745873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6804","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6805","nonce":1464745873}]},"public_addr":"10.20.193.73:6801/1464745873","cluster_addr":"10.20.193.73:6803/1464745873","heartbeat_back_addr":"10.20.193.73:6807/1464745873","heartbeat_front_addr":"10.20.193.73:6805/1464745873","state":["exists","up"]},{"osd":2,"uuid":"2a12244d-7a1a-4965-b3ba-d633cdc0da6a","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.173:6800","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6801","nonce":2202769633}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6802","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6803","nonce":2202769633}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6806","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6807","nonce":2202769633}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6804","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6805","nonce":2202769633}]},"public_addr":"10.20.193.173:6801/2202769633","cluster_addr":"10.20.193.173:6803/2202769633","heartbeat_back_addr":"10.20.193.173:6807/2202769633","heartbeat_front_addr":"10.20.193.173:6805/2202769633","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-20T22:34:42.102426+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-20T22:34:52.026765+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-20T22:35:02.020396+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.35:0/2909984742":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/3925471414":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/4236293944":"2026-02-21T22:34:01.635874+0000","10.20.193.35:6801/872934707":"2026-02-21T22:34:01.635874+0000","10.20.193.35:6800/872934707":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/2801868022":"2026-02-21T22:33:50.549835+0000","10.20.193.35:0/228114489":"2026-02-21T22:33:50.549835+0000","10.20.193.35:6801/1046325559":"2026-02-21T22:33:50.549835+0000","10.20.193.35:6800/1046325559":"2026-02-21T22:33:50.549835+0000","10.20.193.35:0/2221650453":"2026-02-21T22:33:50.549835+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-20T22:35:05.254 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-20T22:35:03.847347+0000', 'flags': 32769, 'flags_names': 'hashpspool,creating', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '20', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'nonprimary_shards': '{}', 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 3, 'score_stable': 3, 'optimal_score': 1, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2026-02-20T22:35:05.254 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-20T22:35:05.368 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:05.603 INFO:teuthology.orchestra.run.trial035.stdout:pg_num: 1 2026-02-20T22:35:05.742 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-20T22:35:05.742 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 ceph-mon[40051]: osdmap e20: 3 total, 3 up, 3 in 2026-02-20T22:35:05.742 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T22:35:05.742 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2725165378' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:05.742 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1178154444' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61847]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61847]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61847]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61847]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61851]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61851]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61851]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.743 INFO:journalctl@ceph.osd.0.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61851]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.745 INFO:tasks.cephadm:Setting up client nodes... 2026-02-20T22:35:05.745 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-20T22:35:05.865 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:05.902 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-20T22:35:05.902 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 ceph-mon[41944]: osdmap e20: 3 total, 3 up, 3 in 2026-02-20T22:35:05.902 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T22:35:05.902 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/2725165378' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:05.902 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1178154444' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T22:35:05.902 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53788]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53788]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53788]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53788]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53792]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53792]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53792]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.903 INFO:journalctl@ceph.osd.1.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53792]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 ceph-mon[41946]: osdmap e20: 3 total, 3 up, 3 in 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/2725165378' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/1178154444' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52205]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52205]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52205]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52205]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52209]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme0n1 2026-02-20T22:35:05.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52209]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52209]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52209]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.935 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52193]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-20T22:35:05.935 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52193]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.935 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52193]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.935 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52193]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:05.935 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52197]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-20T22:35:05.936 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52197]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:05.936 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52197]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:05.936 INFO:journalctl@ceph.osd.2.trial173.stdout:Feb 20 22:35:05 trial173 sudo[52197]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:06.100 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61883]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61883]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61883]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61883]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61887]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61887]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61887]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:06.101 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:05 trial035 sudo[61887]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:06.242 INFO:teuthology.orchestra.run.trial035.stdout:[{"version":13,"timestamp":"2026-02-20T22:35:03.253648+0000","name":"","changes":[{"name":"osd/host:trial173/osd_memory_target","new_value":"92424893235"}]}] 2026-02-20T22:35:06.243 INFO:tasks.ceph_manager:config epoch is 13 2026-02-20T22:35:06.243 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-20T22:35:06.243 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-20T22:35:06.244 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53819]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53819]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53819]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53819]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53823]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53823]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53823]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T22:35:06.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:05 trial073 sudo[53823]: pam_unix(sudo:session): session closed for user root 2026-02-20T22:35:06.359 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:06.630 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:06.769 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":14,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6800","nonce":1179294424},{"type":"v1","addr":"10.20.193.35:6801","nonce":1179294424}]},"active_addr":"10.20.193.35:6801/1179294424","active_change":"2026-02-20T22:34:01.635964+0000","active_mgr_features":4544132024016699391,"available":true,"standbys":[{"gid":14220,"name":"b","mgr_features":4544132024016699391,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"Snmp gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crypto_caller":{"name":"crypto_caller","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://10.20.193.35:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"tentacle":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"force_disabled_modules":{},"last_failure_osd_epoch":3,"active_clients":[{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.35:0","nonce":2857661050}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.35:0","nonce":257449898}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.35:0","nonce":803935695}]}]} 2026-02-20T22:35:06.803 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-20T22:35:06.803 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-20T22:35:06.803 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T22:35:06.918 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: osdmap e21: 3 total, 3 up, 3 in 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: pgmap v43: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/1347679554' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T22:35:06.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:06 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/1511593189' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: osdmap e21: 3 total, 3 up, 3 in 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: pgmap v43: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:06.942 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:06.943 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:06.944 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:06.944 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:06.944 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:06.944 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1347679554' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T22:35:06.944 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:06 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1511593189' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: osdmap e21: 3 total, 3 up, 3 in 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: pgmap v43: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:07.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1347679554' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T22:35:07.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:06 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1511593189' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T22:35:07.149 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:07.149 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":22,"fsid":"2b6ffc98-0eac-11f1-900e-d404e6e7d460","created":"2026-02-20T22:33:39.416868+0000","modified":"2026-02-20T22:35:06.637459+0000","last_up_change":"2026-02-20T22:35:03.628670+0000","last_in_change":"2026-02-20T22:34:53.402722+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":11,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":3,"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-20T22:35:03.847347+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":"22","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":3,"score_stable":3,"optimal_score":1,"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":"af087a45-a8b4-4b45-9caf-236e1e6376c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":9,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6802","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6803","nonce":3894809453}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6804","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6805","nonce":3894809453}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6808","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6809","nonce":3894809453}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6806","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6807","nonce":3894809453}]},"public_addr":"10.20.193.35:6803/3894809453","cluster_addr":"10.20.193.35:6805/3894809453","heartbeat_back_addr":"10.20.193.35:6809/3894809453","heartbeat_front_addr":"10.20.193.35:6807/3894809453","state":["exists","up"]},{"osd":1,"uuid":"fdb3cf19-27f0-4012-a142-2013d0c94829","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":14,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6800","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6801","nonce":1464745873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6802","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6803","nonce":1464745873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6806","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6807","nonce":1464745873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6804","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6805","nonce":1464745873}]},"public_addr":"10.20.193.73:6801/1464745873","cluster_addr":"10.20.193.73:6803/1464745873","heartbeat_back_addr":"10.20.193.73:6807/1464745873","heartbeat_front_addr":"10.20.193.73:6805/1464745873","state":["exists","up"]},{"osd":2,"uuid":"2a12244d-7a1a-4965-b3ba-d633cdc0da6a","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.173:6800","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6801","nonce":2202769633}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6802","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6803","nonce":2202769633}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6806","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6807","nonce":2202769633}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6804","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6805","nonce":2202769633}]},"public_addr":"10.20.193.173:6801/2202769633","cluster_addr":"10.20.193.173:6803/2202769633","heartbeat_back_addr":"10.20.193.173:6807/2202769633","heartbeat_front_addr":"10.20.193.173:6805/2202769633","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-20T22:34:42.102426+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-20T22:34:52.026765+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-20T22:35:02.020396+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.35:0/2909984742":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/3925471414":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/4236293944":"2026-02-21T22:34:01.635874+0000","10.20.193.35:6801/872934707":"2026-02-21T22:34:01.635874+0000","10.20.193.35:6800/872934707":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/2801868022":"2026-02-21T22:33:50.549835+0000","10.20.193.35:0/228114489":"2026-02-21T22:33:50.549835+0000","10.20.193.35:6801/1046325559":"2026-02-21T22:33:50.549835+0000","10.20.193.35:6800/1046325559":"2026-02-21T22:33:50.549835+0000","10.20.193.35:0/2221650453":"2026-02-21T22:33:50.549835+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-20T22:35:07.291 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-20T22:35:07.291 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T22:35:07.406 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:07.638 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:07.638 INFO:teuthology.orchestra.run.trial035.stdout:{"epoch":22,"fsid":"2b6ffc98-0eac-11f1-900e-d404e6e7d460","created":"2026-02-20T22:33:39.416868+0000","modified":"2026-02-20T22:35:06.637459+0000","last_up_change":"2026-02-20T22:35:03.628670+0000","last_in_change":"2026-02-20T22:34:53.402722+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":11,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":3,"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-20T22:35:03.847347+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":"22","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":3,"score_stable":3,"optimal_score":1,"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":"af087a45-a8b4-4b45-9caf-236e1e6376c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":9,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6802","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6803","nonce":3894809453}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6804","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6805","nonce":3894809453}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6808","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6809","nonce":3894809453}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.35:6806","nonce":3894809453},{"type":"v1","addr":"10.20.193.35:6807","nonce":3894809453}]},"public_addr":"10.20.193.35:6803/3894809453","cluster_addr":"10.20.193.35:6805/3894809453","heartbeat_back_addr":"10.20.193.35:6809/3894809453","heartbeat_front_addr":"10.20.193.35:6807/3894809453","state":["exists","up"]},{"osd":1,"uuid":"fdb3cf19-27f0-4012-a142-2013d0c94829","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":14,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6800","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6801","nonce":1464745873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6802","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6803","nonce":1464745873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6806","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6807","nonce":1464745873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.73:6804","nonce":1464745873},{"type":"v1","addr":"10.20.193.73:6805","nonce":1464745873}]},"public_addr":"10.20.193.73:6801/1464745873","cluster_addr":"10.20.193.73:6803/1464745873","heartbeat_back_addr":"10.20.193.73:6807/1464745873","heartbeat_front_addr":"10.20.193.73:6805/1464745873","state":["exists","up"]},{"osd":2,"uuid":"2a12244d-7a1a-4965-b3ba-d633cdc0da6a","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.173:6800","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6801","nonce":2202769633}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6802","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6803","nonce":2202769633}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6806","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6807","nonce":2202769633}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.173:6804","nonce":2202769633},{"type":"v1","addr":"10.20.193.173:6805","nonce":2202769633}]},"public_addr":"10.20.193.173:6801/2202769633","cluster_addr":"10.20.193.173:6803/2202769633","heartbeat_back_addr":"10.20.193.173:6807/2202769633","heartbeat_front_addr":"10.20.193.173:6805/2202769633","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-20T22:34:42.102426+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-20T22:34:52.026765+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-20T22:35:02.020396+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.35:0/2909984742":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/3925471414":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/4236293944":"2026-02-21T22:34:01.635874+0000","10.20.193.35:6801/872934707":"2026-02-21T22:34:01.635874+0000","10.20.193.35:6800/872934707":"2026-02-21T22:34:01.635874+0000","10.20.193.35:0/2801868022":"2026-02-21T22:33:50.549835+0000","10.20.193.35:0/228114489":"2026-02-21T22:33:50.549835+0000","10.20.193.35:6801/1046325559":"2026-02-21T22:33:50.549835+0000","10.20.193.35:6800/1046325559":"2026-02-21T22:33:50.549835+0000","10.20.193.35:0/2221650453":"2026-02-21T22:33:50.549835+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-20T22:35:07.777 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:07 trial035 ceph-mon[40051]: osdmap e22: 3 total, 3 up, 3 in 2026-02-20T22:35:07.778 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:07 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1465161037' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:07.778 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:07 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/259166839' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:07.780 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-20T22:35:07.780 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-20T22:35:07.781 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-20T22:35:07.899 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:07.906 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:07.909 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:07.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:07 trial173 ceph-mon[41946]: osdmap e22: 3 total, 3 up, 3 in 2026-02-20T22:35:07.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:07 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/1465161037' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:07.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:07 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/259166839' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:08.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:07 trial073 ceph-mon[41944]: osdmap e22: 3 total, 3 up, 3 in 2026-02-20T22:35:08.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:07 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1465161037' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:08.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:07 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/259166839' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T22:35:08.191 INFO:teuthology.orchestra.run.trial035.stdout:38654705671 2026-02-20T22:35:08.191 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-20T22:35:08.194 INFO:teuthology.orchestra.run.trial035.stdout:60129542149 2026-02-20T22:35:08.195 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-20T22:35:08.208 INFO:teuthology.orchestra.run.trial035.stdout:81604378626 2026-02-20T22:35:08.208 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-20T22:35:08.309 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:08.367 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:08.367 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:08.554 INFO:teuthology.orchestra.run.trial035.stdout:38654705670 2026-02-20T22:35:08.605 INFO:teuthology.orchestra.run.trial035.stdout:60129542148 2026-02-20T22:35:08.610 INFO:teuthology.orchestra.run.trial035.stdout:81604378625 2026-02-20T22:35:08.700 INFO:tasks.cephadm.ceph_manager.ceph:need seq 38654705671 got 38654705670 for osd.0 2026-02-20T22:35:08.746 INFO:tasks.cephadm.ceph_manager.ceph:need seq 60129542149 got 60129542148 for osd.1 2026-02-20T22:35:08.751 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378626 got 81604378625 for osd.2 2026-02-20T22:35:08.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:08 trial173 ceph-mon[41946]: pgmap v45: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:08.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:08 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/3220849967' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T22:35:08.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:08 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/2486003278' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T22:35:08.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:08 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/790479841' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T22:35:08.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:08 trial035 ceph-mon[40051]: pgmap v45: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:08.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:08 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/3220849967' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T22:35:08.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:08 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2486003278' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T22:35:08.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:08 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/790479841' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T22:35:09.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:08 trial073 ceph-mon[41944]: pgmap v45: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:09.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:08 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/3220849967' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T22:35:09.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:08 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/2486003278' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T22:35:09.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:08 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/790479841' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T22:35:09.700 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-20T22:35:09.747 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-20T22:35:09.752 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-20T22:35:09.815 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:09.863 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:09.902 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:09 trial035 ceph-mon[40051]: mgrmap e15: a(active, since 67s), standbys: b 2026-02-20T22:35:09.907 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:09.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:09 trial173 ceph-mon[41946]: mgrmap e15: a(active, since 67s), standbys: b 2026-02-20T22:35:10.082 INFO:teuthology.orchestra.run.trial035.stdout:38654705672 2026-02-20T22:35:10.091 INFO:teuthology.orchestra.run.trial035.stdout:60129542150 2026-02-20T22:35:10.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:09 trial073 ceph-mon[41944]: mgrmap e15: a(active, since 67s), standbys: b 2026-02-20T22:35:10.150 INFO:teuthology.orchestra.run.trial035.stdout:81604378627 2026-02-20T22:35:10.227 INFO:tasks.cephadm.ceph_manager.ceph:need seq 38654705671 got 38654705672 for osd.0 2026-02-20T22:35:10.227 DEBUG:teuthology.parallel:result is None 2026-02-20T22:35:10.232 INFO:tasks.cephadm.ceph_manager.ceph:need seq 60129542149 got 60129542150 for osd.1 2026-02-20T22:35:10.233 DEBUG:teuthology.parallel:result is None 2026-02-20T22:35:10.291 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378626 got 81604378627 for osd.2 2026-02-20T22:35:10.291 DEBUG:teuthology.parallel:result is None 2026-02-20T22:35:10.292 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-20T22:35:10.292 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T22:35:10.406 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:10.632 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:10.633 INFO:teuthology.orchestra.run.trial035.stderr:dumped all 2026-02-20T22:35:10.715 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:10 trial035 ceph-mon[40051]: pgmap v46: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:10.715 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:10 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2835007011' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T22:35:10.715 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:10 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/1793612873' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T22:35:10.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:10 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/2712567939' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T22:35:10.772 INFO:teuthology.orchestra.run.trial035.stdout:{"pg_ready":true,"pg_map":{"version":46,"stamp":"2026-02-20T22:35:09.645405+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":1,"num_osds":3,"num_per_pool_osds":3,"num_per_pool_omap_osds":3,"kb":2202009600,"kb_used":85644,"kb_used_data":2292,"kb_used_omap":29,"kb_used_meta":81570,"kb_avail":2201923956,"statfs":{"total":2254857830400,"available":2254770130944,"internally_reserved":0,"allocated":2347008,"data_stored":1946634,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":29919,"internal_metadata":83528481},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"21'152","reported_seq":196,"reported_epoch":22,"state":"active+clean","last_fresh":"2026-02-20T22:35:06.642435+0000","last_change":"2026-02-20T22:35:05.639224+0000","last_active":"2026-02-20T22:35:06.642435+0000","last_peered":"2026-02-20T22:35:06.642435+0000","last_clean":"2026-02-20T22:35:06.642435+0000","last_became_active":"2026-02-20T22:35:05.639067+0000","last_became_peered":"2026-02-20T22:35:05.639067+0000","last_unstale":"2026-02-20T22:35:06.642435+0000","last_undegraded":"2026-02-20T22:35:06.642435+0000","last_fullsized":"2026-02-20T22:35:06.642435+0000","mapping_epoch":20,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":21,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T22:35:04.632249+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T22:35:04.632249+0000","last_clean_scrub_stamp":"2026-02-20T22:35:04.632249+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"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-22T04:10:43.699849+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[1,2,0],"acting":[1,2,0],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":1,"acting_primary":1,"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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":2,"up_from":19,"seq":81604378627,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":28548,"kb_used_data":764,"kb_used_omap":6,"kb_used_meta":27193,"kb_avail":733974652,"statfs":{"total":751619276800,"available":751590043648,"internally_reserved":0,"allocated":782336,"data_stored":648878,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":7148,"internal_metadata":27845652},"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":[]},{"osd":1,"up_from":14,"seq":60129542150,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":28548,"kb_used_data":764,"kb_used_omap":8,"kb_used_meta":27191,"kb_avail":733974652,"statfs":{"total":751619276800,"available":751590043648,"internally_reserved":0,"allocated":782336,"data_stored":648878,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9107,"internal_metadata":27843693},"hb_peers":[0,2],"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":9,"seq":38654705672,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":28548,"kb_used_data":764,"kb_used_omap":13,"kb_used_meta":27186,"kb_avail":733974652,"statfs":{"total":751619276800,"available":751590043648,"internally_reserved":0,"allocated":782336,"data_stored":648878,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13664,"internal_metadata":27839136},"hb_peers":[1,2],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T22:35:10.773 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T22:35:10.887 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:10.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:10 trial173 ceph-mon[41946]: pgmap v46: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:10.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:10 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/2835007011' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T22:35:10.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:10 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/1793612873' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T22:35:10.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:10 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/2712567939' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T22:35:11.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:10 trial073 ceph-mon[41944]: pgmap v46: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:11.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:10 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/2835007011' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T22:35:11.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:10 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/1793612873' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T22:35:11.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:10 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/2712567939' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T22:35:11.118 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:11.118 INFO:teuthology.orchestra.run.trial035.stderr:dumped all 2026-02-20T22:35:11.258 INFO:teuthology.orchestra.run.trial035.stdout:{"pg_ready":true,"pg_map":{"version":46,"stamp":"2026-02-20T22:35:09.645405+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":1,"num_osds":3,"num_per_pool_osds":3,"num_per_pool_omap_osds":3,"kb":2202009600,"kb_used":85644,"kb_used_data":2292,"kb_used_omap":29,"kb_used_meta":81570,"kb_avail":2201923956,"statfs":{"total":2254857830400,"available":2254770130944,"internally_reserved":0,"allocated":2347008,"data_stored":1946634,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":29919,"internal_metadata":83528481},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"21'152","reported_seq":196,"reported_epoch":22,"state":"active+clean","last_fresh":"2026-02-20T22:35:06.642435+0000","last_change":"2026-02-20T22:35:05.639224+0000","last_active":"2026-02-20T22:35:06.642435+0000","last_peered":"2026-02-20T22:35:06.642435+0000","last_clean":"2026-02-20T22:35:06.642435+0000","last_became_active":"2026-02-20T22:35:05.639067+0000","last_became_peered":"2026-02-20T22:35:05.639067+0000","last_unstale":"2026-02-20T22:35:06.642435+0000","last_undegraded":"2026-02-20T22:35:06.642435+0000","last_fullsized":"2026-02-20T22:35:06.642435+0000","mapping_epoch":20,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":21,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T22:35:04.632249+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T22:35:04.632249+0000","last_clean_scrub_stamp":"2026-02-20T22:35:04.632249+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"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-22T04:10:43.699849+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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[1,2,0],"acting":[1,2,0],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":1,"acting_primary":1,"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":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":2,"up_from":19,"seq":81604378627,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":28548,"kb_used_data":764,"kb_used_omap":6,"kb_used_meta":27193,"kb_avail":733974652,"statfs":{"total":751619276800,"available":751590043648,"internally_reserved":0,"allocated":782336,"data_stored":648878,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":7148,"internal_metadata":27845652},"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":[]},{"osd":1,"up_from":14,"seq":60129542150,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":28548,"kb_used_data":764,"kb_used_omap":8,"kb_used_meta":27191,"kb_avail":733974652,"statfs":{"total":751619276800,"available":751590043648,"internally_reserved":0,"allocated":782336,"data_stored":648878,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9107,"internal_metadata":27843693},"hb_peers":[0,2],"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":9,"seq":38654705672,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":28548,"kb_used_data":764,"kb_used_omap":13,"kb_used_meta":27186,"kb_avail":733974652,"statfs":{"total":751619276800,"available":751590043648,"internally_reserved":0,"allocated":782336,"data_stored":648878,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13664,"internal_metadata":27839136},"hb_peers":[1,2],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T22:35:11.259 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-20T22:35:11.260 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-20T22:35:11.260 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-20T22:35:11.260 DEBUG:teuthology.orchestra.run.trial035:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph health --format=json 2026-02-20T22:35:11.377 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:35:11.632 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:35:11.632 INFO:teuthology.orchestra.run.trial035.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-20T22:35:11.773 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-20T22:35:11.773 INFO:tasks.cephadm:Setup complete, yielding 2026-02-20T22:35:11.773 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T22:35:11.785 INFO:tasks.cephadm:Running commands on role host.c host ubuntu@trial173.front.sepia.ceph.com 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- bash -c 'set -ex 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> # Deploy monitoring stack 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> ceph orch apply node-exporter 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> ceph orch apply grafana 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> ceph orch apply alertmanager 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> ceph orch apply prometheus 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> sleep 240 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> # generate SSL certificate 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> openssl req -x509 -newkey rsa:4096 -keyout /tmp/key.pem -out /tmp/cert.pem -sha256 -days 30 -nodes -subj "/CN=*" 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> # Generate a mgmt.spec template 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> cat << EOT > /tmp/mgmt.spec 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> service_type: mgmt-gateway 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> service_id: foo 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> placement: 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> hosts: 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> - ${HOSTNAME} 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> spec: 2026-02-20T22:35:11.785 DEBUG:teuthology.orchestra.run.trial173:> ssl_protocols: 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> - TLSv1.2 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> - TLSv1.3 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> ssl_ciphers: 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> - AES128-SHA 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> - AES256-SHA 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> enable_health_check_endpoint: True 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> EOT 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> # Add generated certificates to spec file 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> echo " ssl_cert: |" >> /tmp/mgmt.spec 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> while read LINE; do echo $LINE | sed -e "s/^/ /"; done < /tmp/cert.pem >> /tmp/mgmt.spec 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> echo " ssl_key: |" >> /tmp/mgmt.spec 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> while read LINE; do echo $LINE | sed -e "s/^/ /"; done < /tmp/key.pem >> /tmp/mgmt.spec 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> # Apply spec 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> ceph orch apply -i /tmp/mgmt.spec 2026-02-20T22:35:11.786 DEBUG:teuthology.orchestra.run.trial173:> ' 2026-02-20T22:35:11.907 INFO:teuthology.orchestra.run.trial173.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.c/config 2026-02-20T22:35:11.929 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:11 trial173 ceph-mon[41946]: from='client.14424 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:35:11.929 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:11 trial173 ceph-mon[41946]: from='client.? 10.20.193.35:0/526861607' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T22:35:11.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:11 trial035 ceph-mon[40051]: from='client.14424 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:35:11.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:11 trial035 ceph-mon[40051]: from='client.? 10.20.193.35:0/526861607' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T22:35:11.987 INFO:teuthology.orchestra.run.trial173.stderr:+ ceph orch apply node-exporter 2026-02-20T22:35:12.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:11 trial073 ceph-mon[41944]: from='client.14424 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:35:12.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:11 trial073 ceph-mon[41944]: from='client.? 10.20.193.35:0/526861607' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T22:35:12.154 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled node-exporter update... 2026-02-20T22:35:12.162 INFO:teuthology.orchestra.run.trial173.stderr:+ ceph orch apply grafana 2026-02-20T22:35:12.327 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled grafana update... 2026-02-20T22:35:12.337 INFO:teuthology.orchestra.run.trial173.stderr:+ ceph orch apply alertmanager 2026-02-20T22:35:12.507 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled alertmanager update... 2026-02-20T22:35:12.517 INFO:teuthology.orchestra.run.trial173.stderr:+ ceph orch apply prometheus 2026-02-20T22:35:12.683 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled prometheus update... 2026-02-20T22:35:12.692 INFO:teuthology.orchestra.run.trial173.stderr:+ sleep 240 2026-02-20T22:35:12.903 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='client.14430 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:35:12.903 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: pgmap v47: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:12.903 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.904 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:12.904 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.904 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.904 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.904 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:12 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='client.14430 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: pgmap v47: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:12.966 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:12 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='client.14430 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:35:13.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: pgmap v47: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:13.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:13.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:12 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.858 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='client.24262 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.858 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: Saving service node-exporter spec with placement * 2026-02-20T22:35:13.858 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='client.24268 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.858 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: Saving service grafana spec with placement count:1 2026-02-20T22:35:13.858 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='client.24274 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: Saving service alertmanager spec with placement count:1 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='client.24280 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: Saving service prometheus spec with placement count:1 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.859 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:13 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='client.24262 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: Saving service node-exporter spec with placement * 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='client.24268 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: Saving service grafana spec with placement count:1 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='client.24274 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: Saving service alertmanager spec with placement count:1 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='client.24280 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: Saving service prometheus spec with placement count:1 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:13.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:13.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:13.935 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:13 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='client.24262 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: Saving service node-exporter spec with placement * 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='client.24268 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: Saving service grafana spec with placement count:1 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='client.24274 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: Saving service alertmanager spec with placement count:1 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='client.24280 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: Saving service prometheus spec with placement count:1 2026-02-20T22:35:14.045 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.046 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.046 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.046 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:14.046 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:14.046 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.046 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:13 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:14.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:14 trial173 ceph-mon[41946]: Deploying daemon node-exporter.trial035 on trial035 2026-02-20T22:35:14.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:14 trial173 ceph-mon[41946]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:14.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:14 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:14 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:14 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:14 trial035 ceph-mon[40051]: Deploying daemon node-exporter.trial035 on trial035 2026-02-20T22:35:14.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:14 trial035 ceph-mon[40051]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:14.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:14 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:14 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:14 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.967 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:14 trial073 ceph-mon[41944]: Deploying daemon node-exporter.trial035 on trial035 2026-02-20T22:35:14.967 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:14 trial073 ceph-mon[41944]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:14.967 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:14 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.967 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:14 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:14.968 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:14 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:15.711 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:15 trial073 ceph-mon[41944]: Deploying daemon node-exporter.trial073 on trial073 2026-02-20T22:35:15.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:15 trial035 ceph-mon[40051]: Deploying daemon node-exporter.trial073 on trial073 2026-02-20T22:35:15.986 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:15 trial173 ceph-mon[41946]: Deploying daemon node-exporter.trial073 on trial073 2026-02-20T22:35:16.915 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:16 trial173 ceph-mon[41946]: pgmap v49: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:16.915 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:16 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:16.915 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:16 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:16.915 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:16 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:16.915 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:16 trial173 ceph-mon[41946]: Deploying daemon node-exporter.trial173 on trial173 2026-02-20T22:35:17.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:16 trial073 ceph-mon[41944]: pgmap v49: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:17.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:16 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:17.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:16 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:17.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:16 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:17.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:16 trial073 ceph-mon[41944]: Deploying daemon node-exporter.trial173 on trial173 2026-02-20T22:35:17.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:16 trial035 ceph-mon[40051]: pgmap v49: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:17.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:16 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:17.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:16 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:17.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:16 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:17.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:16 trial035 ceph-mon[40051]: Deploying daemon node-exporter.trial173 on trial173 2026-02-20T22:35:18.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: Generating cephadm-signed certificates for grafana_cert/grafana_key 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: pgmap v50: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:17 trial073 ceph-mon[41944]: Deploying daemon grafana.trial035 on trial035 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: Generating cephadm-signed certificates for grafana_cert/grafana_key 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: pgmap v50: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T22:35:18.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T22:35:18.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:17 trial173 ceph-mon[41946]: Deploying daemon grafana.trial035 on trial035 2026-02-20T22:35:18.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: Generating cephadm-signed certificates for grafana_cert/grafana_key 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: pgmap v50: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T22:35:18.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T22:35:18.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:18.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:17 trial035 ceph-mon[40051]: Deploying daemon grafana.trial035 on trial035 2026-02-20T22:35:20.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:20 trial035 ceph-mon[40051]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:21.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:20 trial073 ceph-mon[41944]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:21.183 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:20 trial173 ceph-mon[41946]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:23.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:22 trial073 ceph-mon[41944]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:23.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:22 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:23.183 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:22 trial173 ceph-mon[41946]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:23.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:22 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:23.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:22 trial035 ceph-mon[40051]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:23.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:22 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:24.965 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:24 trial035 ceph-mon[40051]: pgmap v53: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:25.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:24 trial073 ceph-mon[41944]: pgmap v53: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:25.183 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:24 trial173 ceph-mon[41946]: pgmap v53: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:26.689 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:26 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.689 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:26 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.689 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:26 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.689 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:26 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.689 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:26 trial035 ceph-mon[40051]: Deploying daemon alertmanager.trial173 on trial173 2026-02-20T22:35:26.689 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:26 trial035 ceph-mon[40051]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:26.744 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:26 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.745 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:26 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.745 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:26 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.745 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:26 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.745 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:26 trial173 ceph-mon[41946]: Deploying daemon alertmanager.trial173 on trial173 2026-02-20T22:35:26.745 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:26 trial173 ceph-mon[41946]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:26.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:26 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:26 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:26 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:26 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:26.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:26 trial073 ceph-mon[41944]: Deploying daemon alertmanager.trial173 on trial173 2026-02-20T22:35:26.858 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:26 trial073 ceph-mon[41944]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:28.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:27 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:27 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:28.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:27 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:29.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:28 trial073 ceph-mon[41944]: Deploying daemon prometheus.trial073 on trial073 2026-02-20T22:35:29.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:28 trial073 ceph-mon[41944]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:29.183 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:28 trial173 ceph-mon[41946]: Deploying daemon prometheus.trial073 on trial073 2026-02-20T22:35:29.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:28 trial173 ceph-mon[41946]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:29.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:28 trial035 ceph-mon[40051]: Deploying daemon prometheus.trial073 on trial073 2026-02-20T22:35:29.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:28 trial035 ceph-mon[40051]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:31.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:30 trial073 ceph-mon[41944]: pgmap v56: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:31.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:30 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T22:35:31.173 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:30 trial173 ceph-mon[41946]: pgmap v56: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:31.173 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.173 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:30 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:30 trial035 ceph-mon[40051]: pgmap v56: 1 pgs: 1 active+clean; 577 KiB data, 84 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' 2026-02-20T22:35:31.174 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:30 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T22:35:31.465 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:31 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ignoring --setuser ceph since I am not root 2026-02-20T22:35:31.466 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:31 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ignoring --setgroup ceph since I am not root 2026-02-20T22:35:31.607 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:31 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: ignoring --setuser ceph since I am not root 2026-02-20T22:35:31.607 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:31 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: ignoring --setgroup ceph since I am not root 2026-02-20T22:35:31.607 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:31 trial073 ceph-mgr[43481]: -- 10.20.193.73:0/3938184953 <== mon.2 v2:10.20.193.73:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55ccdd98a000 con 0x55ccdd969400 2026-02-20T22:35:32.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:32 trial173 ceph-mon[41946]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T22:35:32.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:32 trial173 ceph-mon[41946]: mgrmap e16: a(active, since 89s), standbys: b 2026-02-20T22:35:32.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:32 trial035 ceph-mon[40051]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T22:35:32.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:32 trial035 ceph-mon[40051]: mgrmap e16: a(active, since 89s), standbys: b 2026-02-20T22:35:32.466 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:32 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-02-20T22:35:32.466 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:32 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-02-20T22:35:32.466 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:32 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: from numpy import show_config as show_numpy_config 2026-02-20T22:35:32.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:32 trial073 ceph-mon[41944]: from='mgr.14152 10.20.193.35:0/2984261662' entity='mgr.a' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T22:35:32.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:32 trial073 ceph-mon[41944]: mgrmap e16: a(active, since 89s), standbys: b 2026-02-20T22:35:32.607 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:32 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-02-20T22:35:32.607 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:32 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-02-20T22:35:32.607 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:32 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: from numpy import show_config as show_numpy_config 2026-02-20T22:35:34.172 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: [20/Feb/2026:22:35:33] ENGINE Bus STARTING 2026-02-20T22:35:34.173 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: CherryPy Checker: 2026-02-20T22:35:34.173 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: The Application mounted at '' has an empty config. 2026-02-20T22:35:34.173 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: 2026-02-20T22:35:34.173 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: [20/Feb/2026:22:35:34] ENGINE Serving on http://:::9283 2026-02-20T22:35:34.173 INFO:journalctl@ceph.mgr.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-b[43455]: [20/Feb/2026:22:35:34] ENGINE Bus STARTED 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: Active manager daemon a restarted 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: Activating manager daemon a 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: osdmap e23: 3 total, 3 up, 3 in 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: mgrmap e17: a(active, starting, since 0.00458068s), standbys: b 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T22:35:34.174 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: Manager daemon a is now available 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: Standby manager daemon b restarted 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: Standby manager daemon b started 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T22:35:34.175 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T22:35:34.176 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:33 trial073 ceph-mon[41944]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T22:35:34.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: Active manager daemon a restarted 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: Activating manager daemon a 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: osdmap e23: 3 total, 3 up, 3 in 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: mgrmap e17: a(active, starting, since 0.00458068s), standbys: b 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T22:35:34.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: Manager daemon a is now available 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: Standby manager daemon b restarted 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: Standby manager daemon b started 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T22:35:34.217 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T22:35:34.218 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:33 trial035 ceph-mon[40051]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T22:35:34.426 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: Active manager daemon a restarted 2026-02-20T22:35:34.426 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: Activating manager daemon a 2026-02-20T22:35:34.426 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: osdmap e23: 3 total, 3 up, 3 in 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: mgrmap e17: a(active, starting, since 0.00458068s), standbys: b 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T22:35:34.427 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: Manager daemon a is now available 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: Standby manager daemon b restarted 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: Standby manager daemon b started 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T22:35:34.428 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:33 trial173 ceph-mon[41946]: from='mgr.? 10.20.193.73:0/2359253076' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T22:35:35.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:35.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:35:35.107 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.108 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:34 trial073 ceph-mon[41944]: mgrmap e18: a(active, since 1.00813s), standbys: b 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.184 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.185 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:34 trial173 ceph-mon[41946]: mgrmap e18: a(active, since 1.00813s), standbys: b 2026-02-20T22:35:35.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:35.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-mon[40051]: mgrmap e18: a(active, since 1.00813s), standbys: b 2026-02-20T22:35:35.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:34] ENGINE Bus STARTING 2026-02-20T22:35:35.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: CherryPy Checker: 2026-02-20T22:35:35.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: The Application mounted at '' has an empty config. 2026-02-20T22:35:35.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: 2026-02-20T22:35:35.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:35 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:35] ENGINE Serving on http://:::9283 2026-02-20T22:35:35.217 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:35 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:35] ENGINE Bus STARTED 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: [20/Feb/2026:22:35:34] ENGINE Bus STARTING 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: pgmap v3: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: [20/Feb/2026:22:35:34] ENGINE Serving on https://10.20.193.35:7150 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: [20/Feb/2026:22:35:34] ENGINE Client ('10.20.193.35', 52224) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: [20/Feb/2026:22:35:35] ENGINE Serving on http://10.20.193.35:8765 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: [20/Feb/2026:22:35:35] ENGINE Bus STARTED 2026-02-20T22:35:36.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: Adjusting osd_memory_target on trial173 to 86095M 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:36.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:36 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T22:35:36.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: [20/Feb/2026:22:35:34] ENGINE Bus STARTING 2026-02-20T22:35:36.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:36.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: pgmap v3: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:36.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: [20/Feb/2026:22:35:34] ENGINE Serving on https://10.20.193.35:7150 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: [20/Feb/2026:22:35:34] ENGINE Client ('10.20.193.35', 52224) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: [20/Feb/2026:22:35:35] ENGINE Serving on http://10.20.193.35:8765 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: [20/Feb/2026:22:35:35] ENGINE Bus STARTED 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: Adjusting osd_memory_target on trial173 to 86095M 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:36.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:36 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T22:35:36.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: [20/Feb/2026:22:35:34] ENGINE Bus STARTING 2026-02-20T22:35:36.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:36.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: pgmap v3: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:36.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: [20/Feb/2026:22:35:34] ENGINE Serving on https://10.20.193.35:7150 2026-02-20T22:35:36.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: [20/Feb/2026:22:35:34] ENGINE Client ('10.20.193.35', 52224) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: [20/Feb/2026:22:35:35] ENGINE Serving on http://10.20.193.35:8765 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: [20/Feb/2026:22:35:35] ENGINE Bus STARTED 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: Adjusting osd_memory_target on trial173 to 86095M 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:36.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:36.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:36 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-20T22:35:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Adjusting osd_memory_target on trial035 to 81999M 2026-02-20T22:35:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Adjusting osd_memory_target on trial073 to 81999M 2026-02-20T22:35:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial035:/etc/ceph/ceph.conf 2026-02-20T22:35:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial073:/etc/ceph/ceph.conf 2026-02-20T22:35:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial173:/etc/ceph/ceph.conf 2026-02-20T22:35:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial173:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial073:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial035:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: pgmap v4: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:37.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T22:35:37.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: mgrmap e19: a(active, since 2s), standbys: b 2026-02-20T22:35:37.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:37.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:37 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T22:35:37.438 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Adjusting osd_memory_target on trial035 to 81999M 2026-02-20T22:35:37.438 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Adjusting osd_memory_target on trial073 to 81999M 2026-02-20T22:35:37.438 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial035:/etc/ceph/ceph.conf 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial073:/etc/ceph/ceph.conf 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial173:/etc/ceph/ceph.conf 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial173:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial073:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial035:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.439 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: pgmap v4: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:37.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T22:35:37.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: mgrmap e19: a(active, since 2s), standbys: b 2026-02-20T22:35:37.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:37.440 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:37 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T22:35:37.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Adjusting osd_memory_target on trial035 to 81999M 2026-02-20T22:35:37.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Adjusting osd_memory_target on trial073 to 81999M 2026-02-20T22:35:37.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial035:/etc/ceph/ceph.conf 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial073:/etc/ceph/ceph.conf 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial173:/etc/ceph/ceph.conf 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.conf 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial173:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial073:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial035:/etc/ceph/ceph.client.admin.keyring 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial173:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial035:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: Updating trial073:/var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T22:35:37.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: pgmap v4: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:37.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-20T22:35:37.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: mgrmap e19: a(active, since 2s), standbys: b 2026-02-20T22:35:37.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:37.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:37 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-20T22:35:38.370 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:38 trial035 ceph-mon[40051]: Reconfiguring grafana.trial035 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial073', 'secure_monitoring_stack:False'] (diff {'prometheus.trial073'}) 2026-02-20T22:35:38.370 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:38 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T22:35:38.370 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:38 trial035 ceph-mon[40051]: Reconfiguring daemon grafana.trial035 on trial035 2026-02-20T22:35:38.370 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:38 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:38.370 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:38 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:38.431 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:38 trial173 ceph-mon[41946]: Reconfiguring grafana.trial035 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial073', 'secure_monitoring_stack:False'] (diff {'prometheus.trial073'}) 2026-02-20T22:35:38.432 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:38 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T22:35:38.432 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:38 trial173 ceph-mon[41946]: Reconfiguring daemon grafana.trial035 on trial035 2026-02-20T22:35:38.432 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:38 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:38.432 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:38 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:38.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:38 trial073 ceph-mon[41944]: Reconfiguring grafana.trial035 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial073', 'secure_monitoring_stack:False'] (diff {'prometheus.trial073'}) 2026-02-20T22:35:38.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:38 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-20T22:35:38.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:38 trial073 ceph-mon[41944]: Reconfiguring daemon grafana.trial035 on trial035 2026-02-20T22:35:38.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:38 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:38.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:38 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.273 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE Bus STOPPING 2026-02-20T22:35:39.273 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: pgmap v5: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:39.273 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: Reconfiguring alertmanager.trial173 deps ['mgr.a', 'mgr.b', 'secure_monitoring_stack:False'] -> ['alertmanager.trial173', 'mgr.a', 'mgr.b', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial173'}) 2026-02-20T22:35:39.273 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: Reconfiguring daemon alertmanager.trial173 on trial173 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: mgrmap e20: a(active, since 4s), standbys: b 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial035:3000"} : dispatch 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.274 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial073:9095"} : dispatch 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial173:9093"} : dispatch 2026-02-20T22:35:39.275 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: pgmap v5: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: Reconfiguring alertmanager.trial173 deps ['mgr.a', 'mgr.b', 'secure_monitoring_stack:False'] -> ['alertmanager.trial173', 'mgr.a', 'mgr.b', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial173'}) 2026-02-20T22:35:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: Reconfiguring daemon alertmanager.trial173 on trial173 2026-02-20T22:35:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: mgrmap e20: a(active, since 4s), standbys: b 2026-02-20T22:35:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial035:3000"} : dispatch 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial073:9095"} : dispatch 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-20T22:35:39.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial173:9093"} : dispatch 2026-02-20T22:35:39.436 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:39 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: pgmap v5: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: Reconfiguring alertmanager.trial173 deps ['mgr.a', 'mgr.b', 'secure_monitoring_stack:False'] -> ['alertmanager.trial173', 'mgr.a', 'mgr.b', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial173'}) 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: Reconfiguring daemon alertmanager.trial173 on trial173 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: mgrmap e20: a(active, since 4s), standbys: b 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial035:3000"} : dispatch 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial073:9095"} : dispatch 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial173:9093"} : dispatch 2026-02-20T22:35:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:39 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:39.812 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('::', 9283)) shut down 2026-02-20T22:35:39.812 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE Bus STOPPED 2026-02-20T22:35:39.812 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE Bus STARTING 2026-02-20T22:35:39.813 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE Serving on http://:::9283 2026-02-20T22:35:39.813 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE Bus STARTED 2026-02-20T22:35:39.813 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:39 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:39] ENGINE Bus STOPPING 2026-02-20T22:35:40.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-20T22:35:40.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial035:3000"}]: dispatch 2026-02-20T22:35:40.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T22:35:40.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial073:9095"}]: dispatch 2026-02-20T22:35:40.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-20T22:35:40.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial173:9093"}]: dispatch 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.435 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:40.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial035:3000"}]: dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial073:9095"}]: dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial173:9093"}]: dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:40.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:40.467 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('::', 9283)) shut down 2026-02-20T22:35:40.468 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STOPPED 2026-02-20T22:35:40.468 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STARTING 2026-02-20T22:35:40.468 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Serving on http://:::9283 2026-02-20T22:35:40.468 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STARTED 2026-02-20T22:35:40.468 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STOPPING 2026-02-20T22:35:40.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-20T22:35:40.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial035:3000"}]: dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial073:9095"}]: dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial173:9093"}]: dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:35:40.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:35:40.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:35:40.609 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:35:41.134 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('::', 9283)) shut down 2026-02-20T22:35:41.134 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STOPPED 2026-02-20T22:35:41.134 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STARTING 2026-02-20T22:35:41.134 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Serving on http://:::9283 2026-02-20T22:35:41.134 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:40 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: [20/Feb/2026:22:35:40] ENGINE Bus STARTED 2026-02-20T22:35:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:41 trial173 ceph-mon[41946]: Certificate for "grafana_cert (trial035)" is still valid for 1094 days. 2026-02-20T22:35:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:41 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:41 trial173 ceph-mon[41946]: pgmap v6: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:41 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:41 trial035 ceph-mon[40051]: Certificate for "grafana_cert (trial035)" is still valid for 1094 days. 2026-02-20T22:35:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:41 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:41 trial035 ceph-mon[40051]: pgmap v6: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:41 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:41.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:41 trial073 ceph-mon[41944]: Certificate for "grafana_cert (trial035)" is still valid for 1094 days. 2026-02-20T22:35:41.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:41 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:41.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:41 trial073 ceph-mon[41944]: pgmap v6: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:41.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:41.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:41 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:41.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-20T22:35:42.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:42 trial173 ceph-mon[41946]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:42.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:42 trial035 ceph-mon[40051]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:42.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:42 trial073 ceph-mon[41944]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-20T22:35:43.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:43 trial173 ceph-mon[41946]: pgmap v7: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 25 KiB/s rd, 0 B/s wr, 10 op/s 2026-02-20T22:35:43.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:43 trial035 ceph-mon[40051]: pgmap v7: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 25 KiB/s rd, 0 B/s wr, 10 op/s 2026-02-20T22:35:43.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:43 trial073 ceph-mon[41944]: pgmap v7: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 25 KiB/s rd, 0 B/s wr, 10 op/s 2026-02-20T22:35:45.138 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:44 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:35:44] "GET /metrics HTTP/1.1" 200 22967 "" "Prometheus/3.6.0" 2026-02-20T22:35:45.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:45 trial173 ceph-mon[41946]: pgmap v8: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 20 KiB/s rd, 0 B/s wr, 8 op/s 2026-02-20T22:35:45.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:45 trial035 ceph-mon[40051]: pgmap v8: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 20 KiB/s rd, 0 B/s wr, 8 op/s 2026-02-20T22:35:45.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:45 trial073 ceph-mon[41944]: pgmap v8: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 20 KiB/s rd, 0 B/s wr, 8 op/s 2026-02-20T22:35:47.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:47 trial173 ceph-mon[41946]: pgmap v9: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 16 KiB/s rd, 0 B/s wr, 6 op/s 2026-02-20T22:35:47.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:47 trial035 ceph-mon[40051]: pgmap v9: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 16 KiB/s rd, 0 B/s wr, 6 op/s 2026-02-20T22:35:47.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:47 trial073 ceph-mon[41944]: pgmap v9: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 16 KiB/s rd, 0 B/s wr, 6 op/s 2026-02-20T22:35:49.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:49 trial173 ceph-mon[41946]: pgmap v10: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:49.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:49 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:35:49.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:49 trial035 ceph-mon[40051]: pgmap v10: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:49.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:49 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:35:49.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:49 trial073 ceph-mon[41944]: pgmap v10: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:49.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:49 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:35:51.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:51 trial173 ceph-mon[41946]: pgmap v11: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:51.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:51 trial035 ceph-mon[40051]: pgmap v11: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:51.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:51 trial073 ceph-mon[41944]: pgmap v11: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:53.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:53 trial173 ceph-mon[41946]: pgmap v12: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:53.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:53 trial035 ceph-mon[40051]: pgmap v12: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:53.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:53 trial073 ceph-mon[41944]: pgmap v12: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail; 15 KiB/s rd, 0 B/s wr, 5 op/s 2026-02-20T22:35:55.145 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:35:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:35:54] "GET /metrics HTTP/1.1" 200 24232 "" "Prometheus/3.6.0" 2026-02-20T22:35:55.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:55 trial173 ceph-mon[41946]: pgmap v13: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:55.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:55 trial035 ceph-mon[40051]: pgmap v13: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:55.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:55 trial073 ceph-mon[41944]: pgmap v13: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:57.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:57 trial173 ceph-mon[41946]: pgmap v14: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:57.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:57 trial035 ceph-mon[40051]: pgmap v14: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:57.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:57 trial073 ceph-mon[41944]: pgmap v14: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:59.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:35:59 trial173 ceph-mon[41946]: pgmap v15: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:59.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:35:59 trial035 ceph-mon[40051]: pgmap v15: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:35:59.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:35:59 trial073 ceph-mon[41944]: pgmap v15: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:01.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:01 trial173 ceph-mon[41946]: pgmap v16: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:01.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:01 trial035 ceph-mon[40051]: pgmap v16: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:01.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:01 trial073 ceph-mon[41944]: pgmap v16: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:03.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:03 trial173 ceph-mon[41946]: pgmap v17: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:03.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:03 trial035 ceph-mon[40051]: pgmap v17: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:03.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:03 trial073 ceph-mon[41944]: pgmap v17: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:04.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:04 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:04.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:04 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:04.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:04 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:05.153 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:36:04 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:36:04] "GET /metrics HTTP/1.1" 200 24234 "" "Prometheus/3.6.0" 2026-02-20T22:36:05.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:05 trial173 ceph-mon[41946]: pgmap v18: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:05.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:05 trial035 ceph-mon[40051]: pgmap v18: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:05.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:05 trial073 ceph-mon[41944]: pgmap v18: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:07.409 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:07 trial073 ceph-mon[41944]: pgmap v19: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:07.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:07 trial173 ceph-mon[41946]: pgmap v19: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:07.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:07 trial035 ceph-mon[40051]: pgmap v19: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:09.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:09 trial173 ceph-mon[41946]: pgmap v20: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:09.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:09 trial035 ceph-mon[40051]: pgmap v20: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:09.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:09 trial073 ceph-mon[41944]: pgmap v20: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:11.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:11 trial173 ceph-mon[41946]: pgmap v21: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:11.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:11 trial035 ceph-mon[40051]: pgmap v21: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:11.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:11 trial073 ceph-mon[41944]: pgmap v21: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:13.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:13 trial173 ceph-mon[41946]: pgmap v22: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:13.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:13 trial035 ceph-mon[40051]: pgmap v22: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:13.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:13 trial073 ceph-mon[41944]: pgmap v22: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:15.159 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:36:14 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:36:14] "GET /metrics HTTP/1.1" 200 24234 "" "Prometheus/3.6.0" 2026-02-20T22:36:15.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:15 trial173 ceph-mon[41946]: pgmap v23: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:15.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:15 trial035 ceph-mon[40051]: pgmap v23: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:15.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:15 trial073 ceph-mon[41944]: pgmap v23: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:17.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:17 trial173 ceph-mon[41946]: pgmap v24: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:17.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:17 trial035 ceph-mon[40051]: pgmap v24: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:17.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:17 trial073 ceph-mon[41944]: pgmap v24: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:19.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:19 trial173 ceph-mon[41946]: pgmap v25: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:19.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:19 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:19.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:19 trial035 ceph-mon[40051]: pgmap v25: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:19.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:19 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:19.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:19 trial073 ceph-mon[41944]: pgmap v25: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:19.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:19 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:21.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:21 trial173 ceph-mon[41946]: pgmap v26: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:21.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:21 trial035 ceph-mon[40051]: pgmap v26: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:21.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:21 trial073 ceph-mon[41944]: pgmap v26: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:23.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:23 trial173 ceph-mon[41946]: pgmap v27: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:23.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:23 trial035 ceph-mon[40051]: pgmap v27: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:23.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:23 trial073 ceph-mon[41944]: pgmap v27: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:25.166 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:36:24 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:36:24] "GET /metrics HTTP/1.1" 200 24232 "" "Prometheus/3.6.0" 2026-02-20T22:36:25.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:25 trial173 ceph-mon[41946]: pgmap v28: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:25.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:25 trial035 ceph-mon[40051]: pgmap v28: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:25.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:25 trial073 ceph-mon[41944]: pgmap v28: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:27.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:27 trial173 ceph-mon[41946]: pgmap v29: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:27.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:27 trial035 ceph-mon[40051]: pgmap v29: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:27.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:27 trial073 ceph-mon[41944]: pgmap v29: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:29.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:29 trial173 ceph-mon[41946]: pgmap v30: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:29.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:29 trial035 ceph-mon[40051]: pgmap v30: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:29.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:29 trial073 ceph-mon[41944]: pgmap v30: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:31.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:31 trial173 ceph-mon[41946]: pgmap v31: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:31.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:31 trial035 ceph-mon[40051]: pgmap v31: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:31.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:31 trial073 ceph-mon[41944]: pgmap v31: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:33.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:33 trial173 ceph-mon[41946]: pgmap v32: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:33.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:33 trial035 ceph-mon[40051]: pgmap v32: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:33.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:33 trial073 ceph-mon[41944]: pgmap v32: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:34.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:34.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:34.606 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:35.173 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:36:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:36:34] "GET /metrics HTTP/1.1" 200 24233 "" "Prometheus/3.6.0" 2026-02-20T22:36:35.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:35 trial173 ceph-mon[41946]: pgmap v33: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:35.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:35 trial035 ceph-mon[40051]: pgmap v33: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:35.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:35 trial073 ceph-mon[41944]: pgmap v33: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:37.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:37 trial173 ceph-mon[41946]: pgmap v34: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:37.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:37 trial035 ceph-mon[40051]: pgmap v34: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:37.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:37 trial073 ceph-mon[41944]: pgmap v34: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:39 trial173 ceph-mon[41946]: pgmap v35: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:39.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:39 trial035 ceph-mon[40051]: pgmap v35: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:39.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:39 trial073 ceph-mon[41944]: pgmap v35: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:40.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:36:40.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:36:40.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:36:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:41 trial173 ceph-mon[41946]: pgmap v36: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:36:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:36:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:36:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:36:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:41 trial035 ceph-mon[40051]: pgmap v36: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:36:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:36:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:36:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:36:41.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:41 trial073 ceph-mon[41944]: pgmap v36: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:41.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:36:41.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:36:41.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:36:41.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:36:43.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:43 trial173 ceph-mon[41946]: pgmap v37: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:43.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:43 trial035 ceph-mon[40051]: pgmap v37: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:43.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:43 trial073 ceph-mon[41944]: pgmap v37: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:45.182 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:36:44 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:36:44] "GET /metrics HTTP/1.1" 200 24233 "" "Prometheus/3.6.0" 2026-02-20T22:36:45.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:45 trial173 ceph-mon[41946]: pgmap v38: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:45.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:45 trial035 ceph-mon[40051]: pgmap v38: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:45.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:45 trial073 ceph-mon[41944]: pgmap v38: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:47.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:47 trial173 ceph-mon[41946]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:47.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:47 trial035 ceph-mon[40051]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:47.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:47 trial073 ceph-mon[41944]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:49.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:49 trial035 ceph-mon[40051]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:49.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:49 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:49.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:49 trial073 ceph-mon[41944]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:49.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:49 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:49.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:49 trial173 ceph-mon[41946]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:49.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:49 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:36:51.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:51 trial035 ceph-mon[40051]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:51.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:51 trial073 ceph-mon[41944]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:51.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:51 trial173 ceph-mon[41946]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:53.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:53 trial035 ceph-mon[40051]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:53.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:53 trial073 ceph-mon[41944]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:53.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:53 trial173 ceph-mon[41946]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:55.188 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:36:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:36:54] "GET /metrics HTTP/1.1" 200 24230 "" "Prometheus/3.6.0" 2026-02-20T22:36:55.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:55 trial035 ceph-mon[40051]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:55.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:55 trial073 ceph-mon[41944]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:55.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:55 trial173 ceph-mon[41946]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:57.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:57 trial035 ceph-mon[40051]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:57.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:57 trial073 ceph-mon[41944]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:57.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:57 trial173 ceph-mon[41946]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:59.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:36:59 trial035 ceph-mon[40051]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:59.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:36:59 trial073 ceph-mon[41944]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:36:59.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:36:59 trial173 ceph-mon[41946]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:01.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:01 trial035 ceph-mon[40051]: pgmap v46: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:01.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:01 trial073 ceph-mon[41944]: pgmap v46: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:01.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:01 trial173 ceph-mon[41946]: pgmap v46: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:03.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:03 trial035 ceph-mon[40051]: pgmap v47: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:03.606 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:03 trial073 ceph-mon[41944]: pgmap v47: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:03.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:03 trial173 ceph-mon[41946]: pgmap v47: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:04.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:04 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:04.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:04 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:04.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:04 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:05.196 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:37:04 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:37:04] "GET /metrics HTTP/1.1" 200 24231 "" "Prometheus/3.6.0" 2026-02-20T22:37:05.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:05 trial035 ceph-mon[40051]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:05.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:05 trial073 ceph-mon[41944]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:05.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:05 trial173 ceph-mon[41946]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:06.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:06 trial035 ceph-mon[40051]: pgmap v49: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:06.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:06 trial073 ceph-mon[41944]: pgmap v49: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:06.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:06 trial173 ceph-mon[41946]: pgmap v49: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:09.309 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:08 trial073 ceph-mon[41944]: pgmap v50: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:09.386 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:08 trial173 ceph-mon[41946]: pgmap v50: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:09.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:08 trial035 ceph-mon[40051]: pgmap v50: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:11.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:10 trial073 ceph-mon[41944]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:11.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:10 trial173 ceph-mon[41946]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:11.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:10 trial035 ceph-mon[40051]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:13.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:12 trial073 ceph-mon[41944]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:13.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:12 trial173 ceph-mon[41946]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:13.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:12 trial035 ceph-mon[40051]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:15.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:14 trial035 ceph-mon[40051]: pgmap v53: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:15.216 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:37:14 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:37:14] "GET /metrics HTTP/1.1" 200 24231 "" "Prometheus/3.6.0" 2026-02-20T22:37:15.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:14 trial073 ceph-mon[41944]: pgmap v53: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:15.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:14 trial173 ceph-mon[41946]: pgmap v53: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:17.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:16 trial073 ceph-mon[41944]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:17.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:16 trial173 ceph-mon[41946]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:17.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:16 trial035 ceph-mon[40051]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:19.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:18 trial073 ceph-mon[41944]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:19.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:18 trial173 ceph-mon[41946]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:19.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:18 trial035 ceph-mon[40051]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:20.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:19 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:20.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:19 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:20.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:19 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:21.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:20 trial073 ceph-mon[41944]: pgmap v56: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:21.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:20 trial173 ceph-mon[41946]: pgmap v56: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:21.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:20 trial035 ceph-mon[40051]: pgmap v56: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:23.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:22 trial073 ceph-mon[41944]: pgmap v57: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:23.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:22 trial173 ceph-mon[41946]: pgmap v57: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:23.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:22 trial035 ceph-mon[40051]: pgmap v57: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:25.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:24 trial035 ceph-mon[40051]: pgmap v58: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:25.216 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:37:24 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:37:24] "GET /metrics HTTP/1.1" 200 24231 "" "Prometheus/3.6.0" 2026-02-20T22:37:25.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:24 trial073 ceph-mon[41944]: pgmap v58: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:25.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:24 trial173 ceph-mon[41946]: pgmap v58: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:27.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:26 trial073 ceph-mon[41944]: pgmap v59: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:27.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:26 trial173 ceph-mon[41946]: pgmap v59: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:27.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:26 trial035 ceph-mon[40051]: pgmap v59: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:29.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:28 trial073 ceph-mon[41944]: pgmap v60: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:29.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:28 trial173 ceph-mon[41946]: pgmap v60: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:29.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:28 trial035 ceph-mon[40051]: pgmap v60: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:31.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:30 trial073 ceph-mon[41944]: pgmap v61: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:31.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:30 trial173 ceph-mon[41946]: pgmap v61: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:31.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:30 trial035 ceph-mon[40051]: pgmap v61: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:33.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:32 trial073 ceph-mon[41944]: pgmap v62: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:33.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:32 trial173 ceph-mon[41946]: pgmap v62: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:33.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:32 trial035 ceph-mon[40051]: pgmap v62: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:34 trial035 ceph-mon[40051]: pgmap v63: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:35.216 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:34 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:35.216 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:37:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:37:34] "GET /metrics HTTP/1.1" 200 24230 "" "Prometheus/3.6.0" 2026-02-20T22:37:35.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:34 trial073 ceph-mon[41944]: pgmap v63: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:35.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:34 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:35.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:34 trial173 ceph-mon[41946]: pgmap v63: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:35.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:34 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:37.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:36 trial073 ceph-mon[41944]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:37.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:36 trial173 ceph-mon[41946]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:37.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:36 trial035 ceph-mon[40051]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:39.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:38 trial073 ceph-mon[41944]: pgmap v65: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:39.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:38 trial173 ceph-mon[41946]: pgmap v65: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:39.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:38 trial035 ceph-mon[40051]: pgmap v65: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:40 trial073 ceph-mon[41944]: pgmap v66: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:37:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:37:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:37:41.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:37:41.358 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:40 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:37:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:40 trial173 ceph-mon[41946]: pgmap v66: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:37:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:37:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:37:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:37:41.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:40 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:37:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:40 trial035 ceph-mon[40051]: pgmap v66: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:37:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:37:41.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:37:41.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:37:41.467 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:40 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:37:43.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:42 trial073 ceph-mon[41944]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:43.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:42 trial173 ceph-mon[41946]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:43.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:42 trial035 ceph-mon[40051]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:45.215 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:44 trial035 ceph-mon[40051]: pgmap v68: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:45.216 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:37:44 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:37:44] "GET /metrics HTTP/1.1" 200 24230 "" "Prometheus/3.6.0" 2026-02-20T22:37:45.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:44 trial073 ceph-mon[41944]: pgmap v68: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:45.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:44 trial173 ceph-mon[41946]: pgmap v68: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:47.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:46 trial073 ceph-mon[41944]: pgmap v69: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:47.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:46 trial173 ceph-mon[41946]: pgmap v69: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:47.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:46 trial035 ceph-mon[40051]: pgmap v69: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:49.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:48 trial073 ceph-mon[41944]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:49.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:48 trial173 ceph-mon[41946]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:49.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:48 trial035 ceph-mon[40051]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:50.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:49 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:50.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:49 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:50.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:49 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:37:51.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:50 trial073 ceph-mon[41944]: pgmap v71: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:51.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:50 trial173 ceph-mon[41946]: pgmap v71: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:51.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:50 trial035 ceph-mon[40051]: pgmap v71: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:53.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:52 trial073 ceph-mon[41944]: pgmap v72: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:53.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:52 trial173 ceph-mon[41946]: pgmap v72: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:53.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:52 trial035 ceph-mon[40051]: pgmap v72: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:54.998 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:37:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:37:54] "GET /metrics HTTP/1.1" 200 24243 "" "Prometheus/3.6.0" 2026-02-20T22:37:55.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:54 trial073 ceph-mon[41944]: pgmap v73: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:55.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:54 trial173 ceph-mon[41946]: pgmap v73: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:55.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:54 trial035 ceph-mon[40051]: pgmap v73: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:57.268 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:56 trial035 ceph-mon[40051]: pgmap v74: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:57.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:56 trial073 ceph-mon[41944]: pgmap v74: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:57.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:56 trial173 ceph-mon[41946]: pgmap v74: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:59.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:37:59 trial073 ceph-mon[41944]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:59.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:37:58 trial173 ceph-mon[41946]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:37:59.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:37:58 trial035 ceph-mon[40051]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:01.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:01 trial073 ceph-mon[41944]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:01.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:01 trial173 ceph-mon[41946]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:01.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:01 trial035 ceph-mon[40051]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:03.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:03 trial073 ceph-mon[41944]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:03.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:03 trial173 ceph-mon[41946]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:03.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:03 trial035 ceph-mon[40051]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:05.004 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:38:04 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:38:04] "GET /metrics HTTP/1.1" 200 24245 "" "Prometheus/3.6.0" 2026-02-20T22:38:05.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:05 trial073 ceph-mon[41944]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:05.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:05 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:05.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:05 trial173 ceph-mon[41946]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:05.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:05 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:05.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:05 trial035 ceph-mon[40051]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:05.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:05 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:07.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:07 trial073 ceph-mon[41944]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:07.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:07 trial173 ceph-mon[41946]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:07.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:07 trial035 ceph-mon[40051]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:09.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:09 trial073 ceph-mon[41944]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:09.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:09 trial173 ceph-mon[41946]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:09.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:09 trial035 ceph-mon[40051]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:11.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:11 trial073 ceph-mon[41944]: pgmap v81: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:11.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:11 trial173 ceph-mon[41946]: pgmap v81: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:11.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:11 trial035 ceph-mon[40051]: pgmap v81: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:13.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:13 trial073 ceph-mon[41944]: pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:13.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:13 trial173 ceph-mon[41946]: pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:13.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:13 trial035 ceph-mon[40051]: pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:15.011 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:38:14 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:38:14] "GET /metrics HTTP/1.1" 200 24245 "" "Prometheus/3.6.0" 2026-02-20T22:38:15.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:15 trial073 ceph-mon[41944]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:15.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:15 trial173 ceph-mon[41946]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:15.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:15 trial035 ceph-mon[40051]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:17.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:17 trial073 ceph-mon[41944]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:17.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:17 trial173 ceph-mon[41946]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:17.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:17 trial035 ceph-mon[40051]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:19.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:19 trial073 ceph-mon[41944]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:19.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:19 trial173 ceph-mon[41946]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:19.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:19 trial035 ceph-mon[40051]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:20.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:20 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:20.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:20 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:20.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:20 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:21.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:21 trial073 ceph-mon[41944]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:21.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:21 trial173 ceph-mon[41946]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:21.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:21 trial035 ceph-mon[40051]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:23.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:23 trial073 ceph-mon[41944]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:23.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:23 trial173 ceph-mon[41946]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:23.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:23 trial035 ceph-mon[40051]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:25.019 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:38:24 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:38:24] "GET /metrics HTTP/1.1" 200 24245 "" "Prometheus/3.6.0" 2026-02-20T22:38:25.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:25 trial073 ceph-mon[41944]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:25.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:25 trial173 ceph-mon[41946]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:25.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:25 trial035 ceph-mon[40051]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:27.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:27 trial073 ceph-mon[41944]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:27.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:27 trial173 ceph-mon[41946]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:27.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:27 trial035 ceph-mon[40051]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:29.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:29 trial073 ceph-mon[41944]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:29.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:29 trial173 ceph-mon[41946]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:29.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:29 trial035 ceph-mon[40051]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:31.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:31 trial073 ceph-mon[41944]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:31.434 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:31 trial173 ceph-mon[41946]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:31.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:31 trial035 ceph-mon[40051]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:33.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:33 trial073 ceph-mon[41944]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:33.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:33 trial173 ceph-mon[41946]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:33.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:33 trial035 ceph-mon[40051]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:35.025 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:38:34 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:38:34] "GET /metrics HTTP/1.1" 200 24242 "" "Prometheus/3.6.0" 2026-02-20T22:38:35.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:35 trial073 ceph-mon[41944]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:35.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:35 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:35.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:35 trial173 ceph-mon[41946]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:35.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:35 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:35.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:35 trial035 ceph-mon[40051]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:35.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:35 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:37.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:37 trial073 ceph-mon[41944]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:37.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:37 trial173 ceph-mon[41946]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:37.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:37 trial035 ceph-mon[40051]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:39.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:39 trial073 ceph-mon[41944]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:39.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:39 trial173 ceph-mon[41946]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:39.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:39 trial035 ceph-mon[40051]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:41 trial073 ceph-mon[41944]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:38:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:38:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:38:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:38:41.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:41 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:38:41.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:41 trial173 ceph-mon[41946]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:41.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:38:41.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:38:41.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:38:41.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:38:41.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:41 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:38:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:41 trial035 ceph-mon[40051]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:38:41.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:38:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:38:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:38:41.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:41 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:38:43.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:43 trial073 ceph-mon[41944]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:43.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:43 trial173 ceph-mon[41946]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:43.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:43 trial035 ceph-mon[40051]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:45.032 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:38:44 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:38:44] "GET /metrics HTTP/1.1" 200 24242 "" "Prometheus/3.6.0" 2026-02-20T22:38:45.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:45 trial073 ceph-mon[41944]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:45.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:45 trial173 ceph-mon[41946]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:45.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:45 trial035 ceph-mon[40051]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:47.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:47 trial073 ceph-mon[41944]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:47.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:47 trial173 ceph-mon[41946]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:47.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:47 trial035 ceph-mon[40051]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:49.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:49 trial073 ceph-mon[41944]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:49.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:49 trial173 ceph-mon[41946]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:49.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:49 trial035 ceph-mon[40051]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:50.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:50 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:50.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:50 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:50.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:50 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:38:51.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:51 trial073 ceph-mon[41944]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:51.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:51 trial173 ceph-mon[41946]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:51.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:51 trial035 ceph-mon[40051]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:53.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:53 trial073 ceph-mon[41944]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:53.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:53 trial173 ceph-mon[41946]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:53.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:53 trial035 ceph-mon[40051]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:55.040 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:38:54 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:38:54] "GET /metrics HTTP/1.1" 200 24241 "" "Prometheus/3.6.0" 2026-02-20T22:38:55.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:55 trial073 ceph-mon[41944]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:55.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:55 trial173 ceph-mon[41946]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:55.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:55 trial035 ceph-mon[40051]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:57.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:57 trial073 ceph-mon[41944]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:57.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:57 trial173 ceph-mon[41946]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:57.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:57 trial035 ceph-mon[40051]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:59.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:38:59 trial073 ceph-mon[41944]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:59.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:38:59 trial173 ceph-mon[41946]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:38:59.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:38:59 trial035 ceph-mon[40051]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:01.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:01 trial073 ceph-mon[41944]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:01.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:01 trial173 ceph-mon[41946]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:01.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:01 trial035 ceph-mon[40051]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:03.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:03 trial073 ceph-mon[41944]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:03.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:03 trial173 ceph-mon[41946]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:03.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:03 trial035 ceph-mon[40051]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:05.047 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:39:04 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:39:04] "GET /metrics HTTP/1.1" 200 24240 "" "Prometheus/3.6.0" 2026-02-20T22:39:05.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:05 trial073 ceph-mon[41944]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:05.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:05 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:39:05.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:05 trial173 ceph-mon[41946]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:05.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:05 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:39:05.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:05 trial035 ceph-mon[40051]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:05.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:05 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:39:07.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:07 trial073 ceph-mon[41944]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:07.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:07 trial173 ceph-mon[41946]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:07.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:07 trial035 ceph-mon[40051]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:09.356 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:09 trial073 ceph-mon[41944]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:09.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:09 trial173 ceph-mon[41946]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:09.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:09 trial035 ceph-mon[40051]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:11.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:11 trial073 ceph-mon[41944]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:11.433 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:11 trial173 ceph-mon[41946]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:11.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:11 trial035 ceph-mon[40051]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:12.694 INFO:teuthology.orchestra.run.trial173.stderr:+ openssl req -x509 -newkey rsa:4096 -keyout /tmp/key.pem -out /tmp/cert.pem -sha256 -days 30 -nodes -subj '/CN=*' 2026-02-20T22:39:12.908 INFO:teuthology.orchestra.run.trial173.stderr:.+......+.....+.............+..+.+...+...........+....+......+++++++++++++++++++++++++++++++++++++++++++++*.+++++++++++++++++++++++++++++++++++++++++++++*.+..+..................+.......+........+.........+...+..................+....+........+...+.+.....+..................+.......+...............+.........+..+.........+...+.......+........+..........+...+.........+......+..................+.....+.+...........+...+....+...+...+........................+.....+.+.....+..........+.....+......................+.........+.....+...+............+....+.....+....+............+...+...........+.+........................+......+........+......+.........+.......+.....+.+.....+...+......+.+..+..........+..+......+...+.+........+.+...........+.+..+.+......+.....+..................+...+.......+..+....+.....+...........................+..........+..+.......+.....+...+............+..........+...........+......................+............+...+...........+....+...+.....+...+.+.........+............+...+..+....+...+...............+..+.........+.......+.................+.......+...............+.....+....+...........+...............+...+......+............+.........+......+.......+..+....+..+...+......................+..+............+.........+.........................+.........+........+.........+++++ 2026-02-20T22:39:12.929 INFO:teuthology.orchestra.run.trial173.stderr:...+...+.+.....+.+.....+...+++++++++++++++++++++++++++++++++++++++++++++*............+...+.........+.+........+....+.....+..........+..+....+..+.......+...........+.+...+...+..+......+++++++++++++++++++++++++++++++++++++++++++++*.....................................+..............+......+....+...+..+....+......+...+...+.....+....+...+.................+.........................+...+..+.............+.....+............+.........+++++ 2026-02-20T22:39:12.940 INFO:teuthology.orchestra.run.trial173.stderr:----- 2026-02-20T22:39:12.943 INFO:teuthology.orchestra.run.trial173.stderr:+ cat 2026-02-20T22:39:12.944 INFO:teuthology.orchestra.run.trial173.stderr:+ echo ' ssl_cert: |' 2026-02-20T22:39:12.944 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.945 INFO:teuthology.orchestra.run.trial173.stderr:+ echo -----BEGIN CERTIFICATE----- 2026-02-20T22:39:12.945 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.945 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.946 INFO:teuthology.orchestra.run.trial173.stderr:+ echo MIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL 2026-02-20T22:39:12.946 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.947 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.947 INFO:teuthology.orchestra.run.trial173.stderr:+ echo BQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa 2026-02-20T22:39:12.947 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.947 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.948 INFO:teuthology.orchestra.run.trial173.stderr:+ echo MAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY 2026-02-20T22:39:12.948 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.948 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.949 INFO:teuthology.orchestra.run.trial173.stderr:+ echo QMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB 2026-02-20T22:39:12.949 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.949 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.949 INFO:teuthology.orchestra.run.trial173.stderr:+ echo WAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo 2026-02-20T22:39:12.949 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.950 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.950 INFO:teuthology.orchestra.run.trial173.stderr:+ echo y0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/ 2026-02-20T22:39:12.950 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.951 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.951 INFO:teuthology.orchestra.run.trial173.stderr:+ echo L0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV 2026-02-20T22:39:12.951 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.952 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.952 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Yms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg 2026-02-20T22:39:12.952 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.953 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.953 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv 2026-02-20T22:39:12.953 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.954 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.954 INFO:teuthology.orchestra.run.trial173.stderr:+ echo QxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA 2026-02-20T22:39:12.954 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.955 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.955 INFO:teuthology.orchestra.run.trial173.stderr:+ echo CewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat 2026-02-20T22:39:12.955 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.956 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.956 INFO:teuthology.orchestra.run.trial173.stderr:+ echo JGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m 2026-02-20T22:39:12.956 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.957 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.957 INFO:teuthology.orchestra.run.trial173.stderr:+ echo IZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3 2026-02-20T22:39:12.957 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.957 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.958 INFO:teuthology.orchestra.run.trial173.stderr:+ echo gJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E 2026-02-20T22:39:12.958 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.959 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.959 INFO:teuthology.orchestra.run.trial173.stderr:+ echo FgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5 2026-02-20T22:39:12.959 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.959 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.960 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Nb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b 2026-02-20T22:39:12.960 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.960 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.960 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Zd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G 2026-02-20T22:39:12.961 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.961 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.961 INFO:teuthology.orchestra.run.trial173.stderr:+ echo fmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3 2026-02-20T22:39:12.961 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.962 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.962 INFO:teuthology.orchestra.run.trial173.stderr:+ echo wrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq 2026-02-20T22:39:12.962 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.963 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.963 INFO:teuthology.orchestra.run.trial173.stderr:+ echo LxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN 2026-02-20T22:39:12.964 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.964 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.964 INFO:teuthology.orchestra.run.trial173.stderr:+ echo /aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH 2026-02-20T22:39:12.964 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.965 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.966 INFO:teuthology.orchestra.run.trial173.stderr:+ echo svfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z 2026-02-20T22:39:12.966 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.966 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.967 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w 2026-02-20T22:39:12.967 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.968 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.968 INFO:teuthology.orchestra.run.trial173.stderr:+ echo +kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a 2026-02-20T22:39:12.968 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.968 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.969 INFO:teuthology.orchestra.run.trial173.stderr:+ echo fobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai 2026-02-20T22:39:12.969 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.970 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.970 INFO:teuthology.orchestra.run.trial173.stderr:+ echo RXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw 2026-02-20T22:39:12.970 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.971 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.971 INFO:teuthology.orchestra.run.trial173.stderr:+ echo K3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M= 2026-02-20T22:39:12.971 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.972 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.972 INFO:teuthology.orchestra.run.trial173.stderr:+ echo -----END CERTIFICATE----- 2026-02-20T22:39:12.972 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.973 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.973 INFO:teuthology.orchestra.run.trial173.stderr:+ echo ' ssl_key: |' 2026-02-20T22:39:12.973 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.973 INFO:teuthology.orchestra.run.trial173.stderr:+ echo -----BEGIN PRIVATE KEY----- 2026-02-20T22:39:12.973 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.974 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.974 INFO:teuthology.orchestra.run.trial173.stderr:+ echo MIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID 2026-02-20T22:39:12.974 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.975 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.975 INFO:teuthology.orchestra.run.trial173.stderr:+ echo CprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm 2026-02-20T22:39:12.975 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.976 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.976 INFO:teuthology.orchestra.run.trial173.stderr:+ echo GmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8 2026-02-20T22:39:12.976 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.977 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.977 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do 2026-02-20T22:39:12.977 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.978 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.978 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4 2026-02-20T22:39:12.978 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.979 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.979 INFO:teuthology.orchestra.run.trial173.stderr:+ echo i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E 2026-02-20T22:39:12.979 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.980 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.980 INFO:teuthology.orchestra.run.trial173.stderr:+ echo VK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto 2026-02-20T22:39:12.980 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.981 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.981 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21 2026-02-20T22:39:12.981 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.982 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.982 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi 2026-02-20T22:39:12.982 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.983 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.983 INFO:teuthology.orchestra.run.trial173.stderr:+ echo +Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY 2026-02-20T22:39:12.983 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.984 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.984 INFO:teuthology.orchestra.run.trial173.stderr:+ echo E+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn 2026-02-20T22:39:12.984 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.985 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.985 INFO:teuthology.orchestra.run.trial173.stderr:+ echo MD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu 2026-02-20T22:39:12.985 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.986 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.986 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Vm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB 2026-02-20T22:39:12.986 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.987 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.987 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P 2026-02-20T22:39:12.987 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.987 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.988 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2 2026-02-20T22:39:12.988 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.988 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.988 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Gw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc 2026-02-20T22:39:12.989 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.989 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.989 INFO:teuthology.orchestra.run.trial173.stderr:+ echo N8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt 2026-02-20T22:39:12.989 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.990 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.990 INFO:teuthology.orchestra.run.trial173.stderr:+ echo dga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA 2026-02-20T22:39:12.991 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.991 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.992 INFO:teuthology.orchestra.run.trial173.stderr:+ echo eN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL 2026-02-20T22:39:12.992 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.992 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.992 INFO:teuthology.orchestra.run.trial173.stderr:+ echo CEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv 2026-02-20T22:39:12.993 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.993 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.993 INFO:teuthology.orchestra.run.trial173.stderr:+ echo d8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh 2026-02-20T22:39:12.993 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.994 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.995 INFO:teuthology.orchestra.run.trial173.stderr:+ echo JaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv 2026-02-20T22:39:12.995 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.995 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.996 INFO:teuthology.orchestra.run.trial173.stderr:+ echo z3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+ 2026-02-20T22:39:12.996 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.997 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.997 INFO:teuthology.orchestra.run.trial173.stderr:+ echo pIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz 2026-02-20T22:39:12.997 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.998 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.998 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77 2026-02-20T22:39:12.998 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.998 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:12.999 INFO:teuthology.orchestra.run.trial173.stderr:+ echo bMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y 2026-02-20T22:39:12.999 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:12.999 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.000 INFO:teuthology.orchestra.run.trial173.stderr:+ echo TxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK 2026-02-20T22:39:13.000 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.000 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.001 INFO:teuthology.orchestra.run.trial173.stderr:+ echo /+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae 2026-02-20T22:39:13.001 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.001 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.001 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Z6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw 2026-02-20T22:39:13.001 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.002 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.002 INFO:teuthology.orchestra.run.trial173.stderr:+ echo pTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn 2026-02-20T22:39:13.002 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.003 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.003 INFO:teuthology.orchestra.run.trial173.stderr:+ echo yR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r 2026-02-20T22:39:13.003 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.004 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.004 INFO:teuthology.orchestra.run.trial173.stderr:+ echo +g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq 2026-02-20T22:39:13.004 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.005 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.005 INFO:teuthology.orchestra.run.trial173.stderr:+ echo PLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP 2026-02-20T22:39:13.005 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.006 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.006 INFO:teuthology.orchestra.run.trial173.stderr:+ echo Somz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC 2026-02-20T22:39:13.006 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.006 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.007 INFO:teuthology.orchestra.run.trial173.stderr:+ echo zsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ 2026-02-20T22:39:13.007 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.008 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.008 INFO:teuthology.orchestra.run.trial173.stderr:+ echo wb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH 2026-02-20T22:39:13.008 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.009 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.009 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW 2026-02-20T22:39:13.009 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.010 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.010 INFO:teuthology.orchestra.run.trial173.stderr:+ echo G0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E 2026-02-20T22:39:13.010 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.010 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.011 INFO:teuthology.orchestra.run.trial173.stderr:+ echo XwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk 2026-02-20T22:39:13.011 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.011 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.012 INFO:teuthology.orchestra.run.trial173.stderr:+ echo L1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx 2026-02-20T22:39:13.012 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.012 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.012 INFO:teuthology.orchestra.run.trial173.stderr:+ echo IlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs 2026-02-20T22:39:13.012 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.013 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.013 INFO:teuthology.orchestra.run.trial173.stderr:+ echo N7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP 2026-02-20T22:39:13.013 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.014 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.014 INFO:teuthology.orchestra.run.trial173.stderr:+ echo ASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M 2026-02-20T22:39:13.014 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.015 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.015 INFO:teuthology.orchestra.run.trial173.stderr:+ echo 7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW 2026-02-20T22:39:13.016 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.016 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.016 INFO:teuthology.orchestra.run.trial173.stderr:+ echo NwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn 2026-02-20T22:39:13.016 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.017 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.017 INFO:teuthology.orchestra.run.trial173.stderr:+ echo vcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO 2026-02-20T22:39:13.017 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.018 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.018 INFO:teuthology.orchestra.run.trial173.stderr:+ echo xtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z 2026-02-20T22:39:13.018 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.019 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.019 INFO:teuthology.orchestra.run.trial173.stderr:+ echo MH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/ 2026-02-20T22:39:13.019 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.020 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.020 INFO:teuthology.orchestra.run.trial173.stderr:+ echo ORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM 2026-02-20T22:39:13.020 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.021 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.021 INFO:teuthology.orchestra.run.trial173.stderr:+ echo E0uza1CxP2jP52HTVLWPwwi4caw4 2026-02-20T22:39:13.021 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.022 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.022 INFO:teuthology.orchestra.run.trial173.stderr:+ echo -----END PRIVATE KEY----- 2026-02-20T22:39:13.022 INFO:teuthology.orchestra.run.trial173.stderr:+ sed -e 's/^/ /' 2026-02-20T22:39:13.023 INFO:teuthology.orchestra.run.trial173.stderr:+ read LINE 2026-02-20T22:39:13.023 INFO:teuthology.orchestra.run.trial173.stderr:+ ceph orch apply -i /tmp/mgmt.spec 2026-02-20T22:39:13.192 INFO:teuthology.orchestra.run.trial173.stdout:Scheduled mgmt-gateway update... 2026-02-20T22:39:13.200 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:13 trial173 ceph-mon[41946]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:13.332 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-20T22:39:13.351 INFO:tasks.cephadm:Waiting for ceph service mgmt-gateway to start (timeout 300)... 2026-02-20T22:39:13.352 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:13.357 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:13 trial073 ceph-mon[41944]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:13.376 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:13 trial035 ceph-mon[40051]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:13.472 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:13.742 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:13.742 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:35:39.848043Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:13.190982Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "running": 0, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:13.883 INFO:tasks.cephadm:mgmt-gateway has 0/1 2026-02-20T22:39:14.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='client.24295 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:39:14.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: Saving service mgmt-gateway spec with placement trial173 2026-02-20T22:39:14.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='client.24295 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:39:14.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: Saving service mgmt-gateway spec with placement trial173 2026-02-20T22:39:14.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:39:14.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:39:14.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:39:14.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:39:14.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.608 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:14 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='client.24295 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T22:39:14.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: Saving service mgmt-gateway spec with placement trial173 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:14 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:14.884 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:15.007 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:15.031 INFO:journalctl@ceph.mgr.a.trial035.stdout:Feb 20 22:39:14 trial035 ceph-2b6ffc98-0eac-11f1-900e-d404e6e7d460-mgr-a[40350]: ::ffff:10.20.193.73 - - [20/Feb/2026:22:39:14] "GET /metrics HTTP/1.1" 200 24240 "" "Prometheus/3.6.0" 2026-02-20T22:39:15.249 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:15.250 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:35:39.848043Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:13.190982Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "running": 0, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:15.386 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:15 trial035 ceph-mon[40051]: Deploying daemon mgmt-gateway.trial173 on trial173 2026-02-20T22:39:15.387 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:15 trial035 ceph-mon[40051]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:15.387 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:15 trial035 ceph-mon[40051]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:15.411 INFO:tasks.cephadm:mgmt-gateway has 0/1 2026-02-20T22:39:15.606 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:15 trial073 ceph-mon[41944]: Deploying daemon mgmt-gateway.trial173 on trial173 2026-02-20T22:39:15.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:15 trial073 ceph-mon[41944]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:15.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:15 trial073 ceph-mon[41944]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:15.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:15 trial173 ceph-mon[41946]: Deploying daemon mgmt-gateway.trial173 on trial173 2026-02-20T22:39:15.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:15 trial173 ceph-mon[41946]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:15.684 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:15 trial173 ceph-mon[41946]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:16.412 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:16.533 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:16.770 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:16.770 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:35:39.848043Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:13.190982Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "running": 0, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:16.912 INFO:tasks.cephadm:mgmt-gateway has 0/1 2026-02-20T22:39:17.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:17 trial035 ceph-mon[40051]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:17.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:17 trial035 ceph-mon[40051]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:17.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:17 trial073 ceph-mon[41944]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:17.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:17 trial073 ceph-mon[41944]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:17.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:17 trial173 ceph-mon[41946]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:17.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:17 trial173 ceph-mon[41946]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:17.913 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:18.029 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:18.263 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:18.263 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:35:39.848043Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:13.190982Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "running": 0, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:18.401 INFO:tasks.cephadm:mgmt-gateway has 0/1 2026-02-20T22:39:18.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:18 trial035 ceph-mon[40051]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:18.606 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:18 trial073 ceph-mon[41944]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:18.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:18 trial173 ceph-mon[41946]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:19.402 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:19.465 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:19 trial035 ceph-mon[40051]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:19.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:19 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:39:19.520 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:19.606 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:19 trial073 ceph-mon[41944]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:19.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:19 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:39:19.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:19 trial173 ceph-mon[41946]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:19.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:19 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-20T22:39:19.757 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:19.758 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:35:39.848043Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:13.190982Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "running": 0, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:19.897 INFO:tasks.cephadm:mgmt-gateway has 0/1 2026-02-20T22:39:20.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:20 trial035 ceph-mon[40051]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:20.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:20 trial073 ceph-mon[41944]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:20.683 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:20 trial173 ceph-mon[41946]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:20.897 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:21.015 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:21.243 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:21 trial173 ceph-mon[41946]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:21.244 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:21 trial173 ceph-mon[41946]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:21.256 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:21.256 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:35:39.848043Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:13.190982Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "running": 0, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:21.399 INFO:tasks.cephadm:mgmt-gateway has 0/1 2026-02-20T22:39:21.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:21 trial035 ceph-mon[40051]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:21.466 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:21 trial035 ceph-mon[40051]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:21.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:21 trial073 ceph-mon[41944]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:21.607 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:21 trial073 ceph-mon[41944]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:22.400 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- ceph orch ls -f json 2026-02-20T22:39:22.518 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:22.716 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:39:22.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:39:22.717 INFO:journalctl@ceph.mon.a.trial035.stdout:Feb 20 22:39:22 trial035 ceph-mon[40051]: [20/Feb/2026:22:39:22] ENGINE Bus STOPPING 2026-02-20T22:39:22.760 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:22.760 INFO:teuthology.orchestra.run.trial035.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-20T22:35:12.502232Z", "last_refresh": "2026-02-20T22:39:22.186630Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-20T22:35:12.322777Z", "last_refresh": "2026-02-20T22:35:39.880093Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-20T22:39:21.495996Z service:mgmt-gateway [INFO] \"service was created\""], "placement": {"hosts": ["trial173"]}, "service_name": "mgmt-gateway", "service_type": "mgmt-gateway", "spec": {"enable_health_check_endpoint": true, "ssl": true, "ssl_cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUUqlb/ORwYwjlmafLJ453t+RQjvMwDQYJKoZIhvcNAQEL\nBQAwDDEKMAgGA1UEAwwBKjAeFw0yNjAyMjAyMjM5MTJaFw0yNjAzMjIyMjM5MTJa\nMAwxCjAIBgNVBAMMASowggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCY\nQMTMGKBDoAIDCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhB\nWAvb/t8PewjmGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvo\ny0aDd45vEkN85safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/\nL0sbmwL8Y7Do4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdV\nYms1cll2j9M4i4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg\n6XR0LUKZa6+EVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wv\nQxTUi53rJpto6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZA\nCewQHvH3ar215/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14Akat\nJGfYVUc9djwi+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1m\nIZPhEDcxYunYE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3\ngJF50BKduzjnMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABo1MwUTAdBgNVHQ4E\nFgQUo8vrTqOCClgheBd5Nb87z7s7ZhswHwYDVR0jBBgwFoAUo8vrTqOCClgheBd5\nNb87z7s7ZhswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAes/b\nZd5kdi5Ln1H9HXJyn+lnc88Kr9dU9OWVjOrQjusSeaD2univZkVXkJvBIjSMnX3G\nfmikegU0yC/i5EIG7a5IMQD8Rnaypkv9DOb9OJcnoJr+FN18RWA0wCXI2A2Lvjv3\nwrMXEgwXciPaG+Xq5oN0h7u2hC4WxLVEMGq7/vNODvbm94awQwHHGnFRKehJ2mBq\nLxXX03DrO8jxZjCNDe96mNJLMNh2uGdFZa+1zKhwxLHiahLdKAKnmFAMnVtTFzDN\n/aVjE7KxSbITR5uGRAKMkgz7VIKWN7nPt7qjVwJjYZTqww4T5WMgs92IAQY2J9HH\nsvfWQF3wbBhCWRey5nRBpYewFxuKtogvEI46WImoyP4hfgfkQ4FFDfEK0w0jAF8Z\n04EWBWfIrcrewaPfyAN/kU1l9PFJlhMlNK/ud+iyAK+r1chr88+QQmhpzB9Sg47w\n+kFhX1rYT/BxHg/k268jTqOX9bPUgTx6V4JPu80aKl8CVA6dnH59MgvgHGb0Wq0a\nfobcoCZcAudbqlkYe6aPrNjx2SwHZ/jZFPw22uuTCC30n6mh8wi7LTCoxN4sEVai\nRXE+yRuQ3RwzKXrfJV7epJ0Uc2ICrSDYwqPMXqKbamYGUBwDB+g5dXMmMNgHYaqw\nK3piZHW6wm9sg++gmyG7zdTusg7FlLu+IXlFI4M=\n-----END CERTIFICATE-----\n", "ssl_ciphers": ["AES128-SHA", "AES256-SHA"], "ssl_key": "-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCYQMTMGKBDoAID\nCprEW2cmWJe7ZGNdiWx3SJ/8kJM8hGrMeMUn8s1XO9jwgGPEcdhBWAvb/t8Pewjm\nGmbaN1UJgqx/wV+RIHsaXh0vPd72mAThdzdEe0FlR5X0gcSnmnvoy0aDd45vEkN8\n5safZsxX0L7gVgUsbAwAc4j0oIk2ZesafyGAOi9cbNBRRuWiEHp/L0sbmwL8Y7Do\n4zGR223XbfeTqIho+88+jAcU326j/Z/qkMeDUmSzaPowcJ/aCHdVYms1cll2j9M4\ni4DQsaghntjMalghobsNhHfjR0VJj2wvQ/o4D9785pVQ4cxXo7Bg6XR0LUKZa6+E\nVK6Wo3gZikoHhTiKG2BJ7JlZwhrrffvSc6MqEo44sbSNIJ1f51wvQxTUi53rJpto\n6Wc6OghSJTtNVSUxGj+1NuvsmNsC5mYyWmVGVjRtf3cmZIEHawZACewQHvH3ar21\n5/74//KU2GvgxQH21ki/Nnu/baT5qEOypvtXDf+pWKMxQQ14AkatJGfYVUc9djwi\n+Y0xr+NPiV+r+2CQpFqfg5c54LoL/26G5JaTObbtkDTxT804sC1mIZPhEDcxYunY\nE+2zapGoEM5bXvGwPsVq52CpHl1x4QVVUwTlC99YMNdMXZVeWgS3gJF50BKduzjn\nMD8jCtoruloIirkBFKHFt3l0yfx0MQIDAQABAoICAEe2/luaX+bql/gBxzulSBVu\nVm4cj5dP80jOaxlmqguv3bRZUJiMC//Cf2FtQFEYRMImrFNgHoZmsB7eocK4nHQB\n2qnElnTABWw6l2mYrYyet3HSGzTFD90aVn5Yn55IrIPPN/QV3P/hbOuIslcD702P\n1FDMA9zUOeT+hqyfb3IxmIefCVMiVQumb4tRJznqpCCDUM/8eHAUrxBLb55h6r+2\nGw8wq6wzq/8squtAgRd6kBhHQMrRBQDi+jHV4t2q7jbISHJg3dX0UgwI3dCvVeAc\nN8c1cjTJPtfTpTrnZ7IJ/e3XiaVdiG28WOnDqeJABoTnggR1CzFD4WUmFCR9dERt\ndga6d/BUhDhP6CpsW4WWOk8x8a8yS6j5oaBw+mXvHenPfQnbrO2vFdtBmedcNNAA\neN1JgqAcqSpfDuwaBKizvxT1tDthsgEvuwUcgqjbzAuw4aPYI+TfPxMMognbhMKL\nCEZ3/2diKSclJH0pdZdKWOtS0wtqE5gqTTGD3ex6WKNpDD1RCJAZ5pyBBVqsCGxv\nd8zc1bzqk4NIut+tgAMosUgp5pvJnHTGLvZ8m7AvB1UmTcueWa2emZ+tViii8rIh\nJaxYkfX57C1i5mJe+vceMq7V6X0A5y8KXEiqk7Rj3m6RDjSaGOAnYLuBJzwhpySv\nz3PtuHdV+R6nToJnBWp/AoIBAQDIimaMSkcO0b+nFGif0TowJoTApIPBZQ2qHvC+\npIkjQXx46l6MwFLFZGAOLxFTpwY6nBDWy39A4GPG+8v4py413YR0ChWjBbC/1Vsz\n5qPwsk71hw0izHIyFY2mdHODOSc+EL67ZYpW/8JUYPNCs573NeY2LUYWraYwGz77\nbMQOPbHA03Rbn9yEIPyJvrgfepuHRoShxHrHmTfgaDxqRMzoTww5N84LSZsRVC/y\nTxK8ddkupHvZP0obPnOJedfhmNmKagHxhp2/2d+x8zlfm1Ckx6t1OIYEZanze4uK\n/+JEbPk9QJVL609ScJchWT2q9toEguuxJTa+usQC63I9bgwTAoIBAQDCW8RyFNae\nZ6oA6nUobNSUjWuvOxAV93ydDmBwsYH0ImL3bABnTyGh7LsY++++az8TnHS80FQw\npTLXta9+Vw/LXhwYMgXwFC4WMk7z2cO8GavVfEemAWVmZr+DlvtRRbYrD8ZRsdMn\nyR67kfxc4HjKnpFRaKl00WDEIiByX3z/ZC+d2Vf16Am0NJ1QwTI6lp4S/TUxrI6r\n+g84SSnaF6V+kv00Fw8voKPfmNIWX/naMfpxsqd0IoiiUngRJPAL/WeQmR8pwNmq\nPLeOA9POH1aA/tTfe7bk6Jyw/jMvEojleWdl9jdIIRFhEzlhyumVjK39o8PHHBbP\nSomz0LeH0X8rAoIBABrxZUex7wwRqCMlfc0DCkNP2YQcVktUbVqO359tcbNX6AZC\nzsMwT66PhsxBDJ3lkdOsBiMlogowW5dvWv8kTvQTt+jzNeb6K74KRz+Y3CvJeQxJ\nwb0MJMeP18EmYiKeOiR/kXCR+t0nbY9ymxw6D8B88FoVCRag6/QIpRSYj1qudURH\n5JkuyCzEVcmX4xrvmRe6pLUrNae9cSFoP72zUqhffm/tjHQ9xmS0n+B5OTYyyyQW\nG0Gb3DP+1v0Abr2zkH6lMW+mu2j8N66r0+iBcHtDDEkqd+79TbEVxzC8okS5M19E\nXwqdKcIUuGlVmRBwK+hxQoNBUbKcWxtdULLqJxsCggEAcE+1KjNOfgTrYVIa13xk\nL1+1fXIE7pyv/tXi9twse1YvmEhpx0kb50U0LNDRDllM/tknQECmleGwiqQrwDcx\nIlTEqVqmwb/3jc4Of600BYtUF66UfKJL5Su0uabSnXlKNoIMGQNIQLJgtwU6LrVs\nN7H/yWpQmfewEkaiN1VklvRe67k/shMfIGpTCepKSz7kI5b8WTMc0tZSWzU0IRoP\nASCRfrtghCYw7DGUHWfiqqq8zVzulRarnBlJ1qZgrJ0HbrB9KJSPc2dYrpEZoP/M\n7gfUHTyRSJ/+g+ywyR/NycUo8eugsGajc1Q3kYI/DrNXi71JkdJyf+DTx/vxQmPW\nNwKCAQAH3hzG7Uo8OdjdpvWRvRIPxtccfCYG4xEe2yUU9ppIbc3ZUMqVJgLcf1Vn\nvcnu1ODA8pgiqL0Y2YoNWclNonQYtt3fYSqF5WyjP273q45vh0vvkAvGHVO26GTO\nxtfSupJjd2l4Hz+8rJYQc1pBjTxOG8q9xvGFzwCx4toFhIKg6ra3eDpoez0vQP8z\nMH6UB6DEH+MbzdiiF0P1uL8N2aRPEPoecX58mSLIzNn1b7XJiBFVqGgGcqS1cVk/\nORNFuM7xmvjZNBI4ZkwZ9d0DptgkfD5PDwA6Ndx2vWWu4JBfC1E8HsUCObZpLjeM\nE0uza1CxP2jP52HTVLWPwwi4caw4\n-----END PRIVATE KEY-----\n", "ssl_protocols": ["TLSv1.2", "TLSv1.3"]}, "status": {"created": "2026-02-20T22:39:13.188998Z", "last_refresh": "2026-02-20T22:39:22.186677Z", "running": 1, "size": 1}}, {"placement": {"count": 2, "hosts": ["trial035=a", "trial073=b"]}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-20T22:34:28.629999Z", "last_refresh": "2026-02-20T22:35:34.870308Z", "running": 2, "size": 2}}, {"placement": {"count": 3, "hosts": ["trial035:10.20.193.35=a", "trial073:10.20.193.73=b", "trial173:10.20.193.173=c"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-20T22:34:14.756983Z", "last_refresh": "2026-02-20T22:35:34.870242Z", "running": 3, "size": 3}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-20T22:35:12.150289Z", "last_refresh": "2026-02-20T22:35:34.870402Z", "ports": [9100], "running": 3, "size": 3}}, {"placement": {"host_pattern": "trial173"}, "service_id": "default", "service_name": "osd.default", "service_type": "osd", "spec": {"data_devices": {"paths": ["vg_nvme/lv_4"]}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2026-02-20T22:34:52.608298Z", "last_refresh": "2026-02-20T22:35:34.870358Z", "running": 3, "size": 3}}, {"events": ["2026-02-20T22:35:36.752317Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-20T22:35:12.680315Z", "last_refresh": "2026-02-20T22:35:34.870446Z", "ports": [9095], "running": 1, "size": 1}}] 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:22.857 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.858 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.858 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:39:22.858 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:39:22.858 INFO:journalctl@ceph.mon.b.trial073.stdout:Feb 20 22:39:22 trial073 ceph-mon[41944]: [20/Feb/2026:22:39:22] ENGINE Bus STOPPING 2026-02-20T22:39:22.899 INFO:tasks.cephadm:mgmt-gateway has 1/1 2026-02-20T22:39:22.899 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T22:39:22.915 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial035.front.sepia.ceph.com 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> 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 2b6ffc98-0eac-11f1-900e-d404e6e7d460 -- bash -c 'set -ex 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> # Function to wait for a service to be healthy and log response on error 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> wait_for_service() { 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> local name="$1" 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> local url="$2" 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> local jq_filter="$3" 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> echo "Waiting for service $name to be healthy at $url..." 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> for i in {1..30}; do 2026-02-20T22:39:22.916 DEBUG:teuthology.orchestra.run.trial035:> local response 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> response=$(curl -k -s -u admin:admin "$url") 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> if echo "$response" | jq -e "$jq_filter" > /dev/null; then 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "Service $name is healthy." 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> return 0 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> fi 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "Attempt $i: service $name not ready yet" 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> sleep 10 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> done 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "Timeout waiting for $name at $url" 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "Last HTTP response:" 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "$response" 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "jq output:" 2026-02-20T22:39:22.917 DEBUG:teuthology.orchestra.run.trial035:> echo "$response" | jq "$jq_filter" || echo "(jq parse error or no match)" 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> return 1 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> } 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> # retrieve mgmt hostname and ip 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> MGMT_GTW_HOST=$(ceph orch ps --daemon-type mgmt-gateway -f json | jq -e '"'"'.[]'"'"' | jq -r '"'"'.hostname'"'"') 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> MGMT_GTW_IP=$(ceph orch host ls -f json | jq -r --arg MGMT_GTW_HOST "$MGMT_GTW_HOST" '"'"'.[] | select(.hostname==$MGMT_GTW_HOST) | .addr'"'"') 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> # check mgmt-gateway health 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> curl -k -s https://${MGMT_GTW_IP}/health 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> curl -k -s https://${MGMT_GTW_IP}:29443/health 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> 2026-02-20T22:39:22.918 DEBUG:teuthology.orchestra.run.trial035:> # wait for monitoring services 2026-02-20T22:39:22.919 DEBUG:teuthology.orchestra.run.trial035:> wait_for_service "Grafana" "https://${MGMT_GTW_IP}/grafana/api/health" '"'"'.database == "ok"'"'"' || exit 1 2026-02-20T22:39:22.919 DEBUG:teuthology.orchestra.run.trial035:> wait_for_service "Prometheus" "https://${MGMT_GTW_IP}/prometheus/api/v1/status/config" '"'"'.status == "success"'"'"' || exit 1 2026-02-20T22:39:22.919 DEBUG:teuthology.orchestra.run.trial035:> wait_for_service "Alertmanager" "https://${MGMT_GTW_IP}/alertmanager/api/v2/status" '"'"'.cluster.status == "ready"'"'"' || exit 1 2026-02-20T22:39:22.919 DEBUG:teuthology.orchestra.run.trial035:> ' 2026-02-20T22:39:22.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T22:39:22.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.933 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: from='mgr.14463 10.20.193.35:0/1692744922' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T22:39:22.934 INFO:journalctl@ceph.mon.c.trial173.stdout:Feb 20 22:39:22 trial173 ceph-mon[41946]: [20/Feb/2026:22:39:22] ENGINE Bus STOPPING 2026-02-20T22:39:23.033 INFO:teuthology.orchestra.run.trial035.stderr:Inferring config /var/lib/ceph/2b6ffc98-0eac-11f1-900e-d404e6e7d460/mon.a/config 2026-02-20T22:39:23.115 INFO:teuthology.orchestra.run.trial035.stderr:++ ceph orch ps --daemon-type mgmt-gateway -f json 2026-02-20T22:39:23.115 INFO:teuthology.orchestra.run.trial035.stderr:++ jq -e '.[]' 2026-02-20T22:39:23.115 INFO:teuthology.orchestra.run.trial035.stderr:++ jq -r .hostname 2026-02-20T22:39:23.284 INFO:teuthology.orchestra.run.trial035.stderr:+ MGMT_GTW_HOST=trial173 2026-02-20T22:39:23.284 INFO:teuthology.orchestra.run.trial035.stderr:++ ceph orch host ls -f json 2026-02-20T22:39:23.284 INFO:teuthology.orchestra.run.trial035.stderr:++ jq -r --arg MGMT_GTW_HOST trial173 '.[] | select(.hostname==$MGMT_GTW_HOST) | .addr' 2026-02-20T22:39:23.449 INFO:teuthology.orchestra.run.trial035.stderr:+ MGMT_GTW_IP=10.20.193.173 2026-02-20T22:39:23.449 INFO:teuthology.orchestra.run.trial035.stderr:+ curl -k -s https://10.20.193.173/health 2026-02-20T22:39:23.459 INFO:teuthology.orchestra.run.trial035.stderr:+ curl -k -s https://10.20.193.173:29443/health 2026-02-20T22:39:23.470 INFO:teuthology.orchestra.run.trial035.stdout:OK 2026-02-20T22:39:23.471 INFO:teuthology.orchestra.run.trial035.stdout:400 No required SSL certificate was sent 2026-02-20T22:39:23.471 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:23.471 INFO:teuthology.orchestra.run.trial035.stdout:

400 Bad Request

2026-02-20T22:39:23.471 INFO:teuthology.orchestra.run.trial035.stdout:
No required SSL certificate was sent
2026-02-20T22:39:23.471 INFO:teuthology.orchestra.run.trial035.stdout:
nginx/1.26.1
2026-02-20T22:39:23.471 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:23.472 INFO:teuthology.orchestra.run.trial035.stdout: 2026-02-20T22:39:23.472 INFO:teuthology.orchestra.run.trial035.stderr:+ wait_for_service Grafana https://10.20.193.173/grafana/api/health '.database == "ok"' 2026-02-20T22:39:23.473 INFO:teuthology.orchestra.run.trial035.stderr:+ local name=Grafana 2026-02-20T22:39:23.473 INFO:teuthology.orchestra.run.trial035.stderr:+ local url=https://10.20.193.173/grafana/api/health 2026-02-20T22:39:23.473 INFO:teuthology.orchestra.run.trial035.stderr:+ local 'jq_filter=.database == "ok"' 2026-02-20T22:39:23.473 INFO:teuthology.orchestra.run.trial035.stdout:Waiting for service Grafana to be healthy at https://10.20.193.173/grafana/api/health... 2026-02-20T22:39:23.474 INFO:teuthology.orchestra.run.trial035.stderr:+ echo 'Waiting for service Grafana to be healthy at https://10.20.193.173/grafana/api/health...' 2026-02-20T22:39:23.474 INFO:teuthology.orchestra.run.trial035.stderr:+ for i in {1..30} 2026-02-20T22:39:23.474 INFO:teuthology.orchestra.run.trial035.stderr:+ local response 2026-02-20T22:39:23.474 INFO:teuthology.orchestra.run.trial035.stderr:++ curl -k -s -u admin:admin https://10.20.193.173/grafana/api/health 2026-02-20T22:39:23.497 INFO:teuthology.orchestra.run.trial035.stderr:+ response=' 2026-02-20T22:39:23.497 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.497 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.497 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.497 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: Grafana 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.498 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.499 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.500 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.501 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.514 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.514 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.514 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.514 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.514 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:

If you'\''re seeing this Grafana has failed to load its application files

2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
    2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
  1. This could be caused by your reverse proxy settings.
  2. 2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr:
  3. If you host grafana under a subpath make sure your grafana.ini root_url setting 2026-02-20T22:39:23.515 INFO:teuthology.orchestra.run.trial035.stderr: includes subpath. If not using a reverse proxy make sure to set serve_from_sub_path to true.
  4. 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr:
  5. If you have a local dev build make sure you build frontend using: yarn start, or 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr: yarn build.
  6. 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr:
  7. Sometimes restarting grafana-server can help.
  8. 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr:
  9. Check if you are using a non-supported browser. For more information, refer to the list of 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr: supported browsers .
  10. 2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.516 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.519 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.519 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.519 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.519 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.519 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.524 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.524 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.524 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.524 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.524 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.524 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.525 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.525 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.526 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.526 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.526 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.526 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.527 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.527 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.527 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.527 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.528 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.528 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.528 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr:' 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr:+ jq -e '.database == "ok"' 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr:+ echo ' 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.529 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: Grafana 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.530 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.531 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.532 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.542 INFO:teuthology.orchestra.run.trial035.stderr:

If you'\''re seeing this Grafana has failed to load its application files

2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
    2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
  1. This could be caused by your reverse proxy settings.
  2. 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
  3. If you host grafana under a subpath make sure your grafana.ini root_url setting 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr: includes subpath. If not using a reverse proxy make sure to set serve_from_sub_path to true.
  4. 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
  5. If you have a local dev build make sure you build frontend using: yarn start, or 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr: yarn build.
  6. 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
  7. Sometimes restarting grafana-server can help.
  8. 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
  9. Check if you are using a non-supported browser. For more information, refer to the list of 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr: supported browsers .
  10. 2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.543 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.545 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.545 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.545 INFO:teuthology.orchestra.run.trial035.stderr:
2026-02-20T22:39:23.545 INFO:teuthology.orchestra.run.trial035.stderr: 2026-02-20T22:39:23.545 INFO:teuthology.orchestra.run.trial035.stderr: