2024-09-15T02:59:45.464 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-15T02:59:45.480 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-15T02:59:45.560 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239 branch: wip-bharath9-testing-2024-09-13-1444-quincy description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} email: skanta@redhat.com first_in_suite: false job_id: '7905239' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-bharath9-testing-2024-09-13-1444-quincy ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum sha1: d75f23820806da622f561ee5ee7551015285993f ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d75f23820806da622f561ee5ee7551015285993f selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-bharath9-testing-2024-09-13-1444-quincy sha1: d75f23820806da622f561ee5ee7551015285993f owner: scheduled_skanta@teuthology priority: 99 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 2126 sha1: d75f23820806da622f561ee5ee7551015285993f sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-bharath9-testing-2024-09-13-1444-quincy suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_d75f23820806da622f561ee5ee7551015285993f/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: d75f23820806da622f561ee5ee7551015285993f targets: smithi032.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBETNJrz3On+TpBgVjCvrNWfJ9fJ2D4U/eqI04j1+S+IpAlMKyqIjFt/PtxmnKUbSv0RS5oq/XsbJtb5aAh5jkeo= smithi096.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEvDihipxkVQ0375axH/ssUQcb3zwXCsk64lO61h7VerINPDQudUkxZz7rgLrldjvFWQ5f9ddYMoCneM+dOWRhA= smithi187.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNYf1Gbylr5qAJP3pHeO8uKRhHk8l3fbQGWQXi77YwPHRlUv6ze1H75dYBiv1/ha2Bk5WcNugHvSeUvgd2aixvY= tasks: - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# now drain that host\nceph orch host drain\ \ $HOST_C --zap-osd-devices\n# wait for drain to complete\nHOST_C_DAEMONS=$(ceph\ \ orch ps --hostname $HOST_C)\nwhile [ \"$HOST_C_DAEMONS\" != \"No daemons reported\"\ \ ]; do\n sleep 15\n HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n\ # we want to check the ability to remove the host from\n# the CRUSH map, so\ \ we should first verify the host is in\n# the CRUSH map.\nceph osd getcrushmap\ \ -o compiled-crushmap\ncrushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat\ \ crushmap.txt)\nif ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf\ \ \"Expected to see $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\n\ fi\n# If the drain was successful, we should be able to remove the\n# host without\ \ force with no issues. If there are still daemons\n# we will get a response\ \ telling us to drain the host and a\n# non-zero return code\nceph orch host\ \ rm $HOST_C --rm-crush-entry\n# verify we've successfully removed the host\ \ from the CRUSH map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH\ \ map after it should have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-15_00:54:39 tube: smithi user: skanta verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-15T02:59:45.560 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_d75f23820806da622f561ee5ee7551015285993f/qa; will attempt to use it 2024-09-15T02:59:45.561 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_d75f23820806da622f561ee5ee7551015285993f/qa/tasks 2024-09-15T02:59:45.561 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-15T02:59:45.563 INFO:teuthology.task.internal:Checking packages... 2024-09-15T02:59:45.586 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'd75f23820806da622f561ee5ee7551015285993f' 2024-09-15T02:59:45.586 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-15T02:59:45.586 INFO:teuthology.packaging:ref: None 2024-09-15T02:59:45.586 INFO:teuthology.packaging:tag: None 2024-09-15T02:59:45.586 INFO:teuthology.packaging:branch: wip-bharath9-testing-2024-09-13-1444-quincy 2024-09-15T02:59:45.587 INFO:teuthology.packaging:sha1: d75f23820806da622f561ee5ee7551015285993f 2024-09-15T02:59:45.587 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-bharath9-testing-2024-09-13-1444-quincy 2024-09-15T02:59:45.730 INFO:teuthology.task.internal:Found packages for ceph version 17.2.7-1643.gd75f2382 2024-09-15T02:59:45.732 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-15T02:59:45.738 INFO:teuthology.task.internal:no buildpackages task found 2024-09-15T02:59:45.738 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-15T02:59:45.743 INFO:teuthology.task.internal:Saving configuration 2024-09-15T02:59:45.755 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-15T02:59:45.761 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-15T02:59:45.782 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi032.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-15 02:54:47.239136', 'locked_by': 'scheduled_skanta@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBETNJrz3On+TpBgVjCvrNWfJ9fJ2D4U/eqI04j1+S+IpAlMKyqIjFt/PtxmnKUbSv0RS5oq/XsbJtb5aAh5jkeo='} 2024-09-15T02:59:45.801 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi096.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-15 02:54:47.237690', 'locked_by': 'scheduled_skanta@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEvDihipxkVQ0375axH/ssUQcb3zwXCsk64lO61h7VerINPDQudUkxZz7rgLrldjvFWQ5f9ddYMoCneM+dOWRhA='} 2024-09-15T02:59:45.818 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi187.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-15 02:54:47.240374', 'locked_by': 'scheduled_skanta@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNYf1Gbylr5qAJP3pHeO8uKRhHk8l3fbQGWQXi77YwPHRlUv6ze1H75dYBiv1/ha2Bk5WcNugHvSeUvgd2aixvY='} 2024-09-15T02:59:45.818 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-15T02:59:45.823 INFO:teuthology.task.internal:roles: ubuntu@smithi032.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-15T02:59:45.823 INFO:teuthology.task.internal:roles: ubuntu@smithi096.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-15T02:59:45.823 INFO:teuthology.task.internal:roles: ubuntu@smithi187.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-15T02:59:45.824 INFO:teuthology.run_tasks:Running task console_log... 2024-09-15T02:59:45.891 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f5b19647ac0>, signals=[15]) 2024-09-15T02:59:45.891 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-15T02:59:45.896 INFO:teuthology.task.internal:Opening connections... 2024-09-15T02:59:45.896 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi032.front.sepia.ceph.com 2024-09-15T02:59:45.898 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi032.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T02:59:45.979 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi096.front.sepia.ceph.com 2024-09-15T02:59:45.980 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T02:59:46.054 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi187.front.sepia.ceph.com 2024-09-15T02:59:46.055 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T02:59:46.131 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-15T02:59:46.137 DEBUG:teuthology.orchestra.run.smithi032:> uname -m 2024-09-15T02:59:46.155 INFO:teuthology.orchestra.run.smithi032.stdout:x86_64 2024-09-15T02:59:46.156 DEBUG:teuthology.orchestra.run.smithi032:> cat /etc/os-release 2024-09-15T02:59:46.213 INFO:teuthology.orchestra.run.smithi032.stdout:NAME="CentOS Stream" 2024-09-15T02:59:46.213 INFO:teuthology.orchestra.run.smithi032.stdout:VERSION="9" 2024-09-15T02:59:46.213 INFO:teuthology.orchestra.run.smithi032.stdout:ID="centos" 2024-09-15T02:59:46.213 INFO:teuthology.orchestra.run.smithi032.stdout:ID_LIKE="rhel fedora" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:VERSION_ID="9" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:PLATFORM_ID="platform:el9" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:ANSI_COLOR="0;31" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:LOGO="fedora-logo-icon" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:HOME_URL="https://centos.org/" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-15T02:59:46.214 INFO:teuthology.orchestra.run.smithi032.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-15T02:59:46.215 INFO:teuthology.lock.ops:Updating smithi032.front.sepia.ceph.com on lock server 2024-09-15T02:59:46.239 DEBUG:teuthology.orchestra.run.smithi096:> uname -m 2024-09-15T02:59:46.258 INFO:teuthology.orchestra.run.smithi096.stdout:x86_64 2024-09-15T02:59:46.258 DEBUG:teuthology.orchestra.run.smithi096:> cat /etc/os-release 2024-09-15T02:59:46.316 INFO:teuthology.orchestra.run.smithi096.stdout:NAME="CentOS Stream" 2024-09-15T02:59:46.316 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION="9" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:ID="centos" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:ID_LIKE="rhel fedora" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION_ID="9" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:PLATFORM_ID="platform:el9" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:ANSI_COLOR="0;31" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:LOGO="fedora-logo-icon" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:HOME_URL="https://centos.org/" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-15T02:59:46.317 INFO:teuthology.orchestra.run.smithi096.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-15T02:59:46.318 INFO:teuthology.lock.ops:Updating smithi096.front.sepia.ceph.com on lock server 2024-09-15T02:59:46.339 DEBUG:teuthology.orchestra.run.smithi187:> uname -m 2024-09-15T02:59:46.357 INFO:teuthology.orchestra.run.smithi187.stdout:x86_64 2024-09-15T02:59:46.357 DEBUG:teuthology.orchestra.run.smithi187:> cat /etc/os-release 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:NAME="CentOS Stream" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:VERSION="9" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:ID="centos" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:ID_LIKE="rhel fedora" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:VERSION_ID="9" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:PLATFORM_ID="platform:el9" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:ANSI_COLOR="0;31" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:LOGO="fedora-logo-icon" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-15T02:59:46.419 INFO:teuthology.orchestra.run.smithi187.stdout:HOME_URL="https://centos.org/" 2024-09-15T02:59:46.420 INFO:teuthology.orchestra.run.smithi187.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-15T02:59:46.420 INFO:teuthology.orchestra.run.smithi187.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-15T02:59:46.420 INFO:teuthology.orchestra.run.smithi187.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-15T02:59:46.420 INFO:teuthology.lock.ops:Updating smithi187.front.sepia.ceph.com on lock server 2024-09-15T02:59:46.438 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-15T02:59:46.446 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-15T02:59:46.452 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-15T02:59:46.452 DEBUG:teuthology.orchestra.run.smithi032:> test '!' -e /home/ubuntu/cephtest 2024-09-15T02:59:46.455 DEBUG:teuthology.orchestra.run.smithi096:> test '!' -e /home/ubuntu/cephtest 2024-09-15T02:59:46.457 DEBUG:teuthology.orchestra.run.smithi187:> test '!' -e /home/ubuntu/cephtest 2024-09-15T02:59:46.476 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-15T02:59:46.482 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-15T02:59:46.482 DEBUG:teuthology.orchestra.run.smithi032:> test -z $(ls -A /var/lib/ceph) 2024-09-15T02:59:46.512 DEBUG:teuthology.orchestra.run.smithi096:> test -z $(ls -A /var/lib/ceph) 2024-09-15T02:59:46.515 DEBUG:teuthology.orchestra.run.smithi187:> test -z $(ls -A /var/lib/ceph) 2024-09-15T02:59:46.638 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-15T02:59:46.708 INFO:teuthology.run_tasks:Running task kernel... 2024-09-15T02:59:46.723 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-15T02:59:46.724 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-15T02:59:46.724 DEBUG:teuthology.orchestra.run.smithi032:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-15T02:59:46.725 DEBUG:teuthology.orchestra.run.smithi096:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-15T02:59:46.725 DEBUG:teuthology.orchestra.run.smithi187:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-15T02:59:46.742 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T02:59:46.743 DEBUG:teuthology.orchestra.run.smithi032:> uname -r 2024-09-15T02:59:46.745 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T02:59:46.745 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T02:59:46.746 DEBUG:teuthology.orchestra.run.smithi187:> uname -r 2024-09-15T02:59:46.747 DEBUG:teuthology.orchestra.run.smithi096:> uname -r 2024-09-15T02:59:46.801 INFO:teuthology.orchestra.run.smithi032.stdout:5.14.0-503.el9.x86_64 2024-09-15T02:59:46.802 INFO:teuthology.task.kernel:Running kernel on smithi032: 5.14.0-503.el9.x86_64 2024-09-15T02:59:46.802 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum install -y kernel 2024-09-15T02:59:46.804 INFO:teuthology.orchestra.run.smithi096.stdout:5.14.0-503.el9.x86_64 2024-09-15T02:59:46.804 INFO:teuthology.task.kernel:Running kernel on smithi096: 5.14.0-503.el9.x86_64 2024-09-15T02:59:46.805 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum install -y kernel 2024-09-15T02:59:46.806 INFO:teuthology.orchestra.run.smithi187.stdout:5.14.0-503.el9.x86_64 2024-09-15T02:59:46.806 INFO:teuthology.task.kernel:Running kernel on smithi187: 5.14.0-503.el9.x86_64 2024-09-15T02:59:46.806 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum install -y kernel 2024-09-15T02:59:48.995 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - BaseOS 19 MB/s | 8.2 MB 00:00 2024-09-15T02:59:49.183 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.2 MB 00:00 2024-09-15T02:59:49.527 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - BaseOS 8.5 MB/s | 8.2 MB 00:00 2024-09-15T02:59:51.212 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - AppStream 19 MB/s | 20 MB 00:01 2024-09-15T02:59:56.957 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - AppStream 3.1 MB/s | 20 MB 00:06 2024-09-15T02:59:57.195 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - CRB 3.3 MB/s | 6.5 MB 00:01 2024-09-15T02:59:57.627 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - AppStream 2.9 MB/s | 20 MB 00:06 2024-09-15T02:59:58.621 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - Extras packages 115 kB/s | 19 kB 00:00 2024-09-15T02:59:59.408 INFO:teuthology.orchestra.run.smithi096.stdout:Extra Packages for Enterprise Linux 34 MB/s | 23 MB 00:00 2024-09-15T03:00:01.550 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - CRB 8.7 MB/s | 6.5 MB 00:00 2024-09-15T03:00:02.220 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-15T03:00:03.184 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - Extras packages 64 kB/s | 19 kB 00:00 2024-09-15T03:00:03.946 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - Extras packages 39 kB/s | 19 kB 00:00 2024-09-15T03:00:03.954 INFO:teuthology.orchestra.run.smithi187.stdout:Extra Packages for Enterprise Linux 35 MB/s | 23 MB 00:00 2024-09-15T03:00:04.850 INFO:teuthology.orchestra.run.smithi032.stdout:Extra Packages for Enterprise Linux 29 MB/s | 23 MB 00:00 2024-09-15T03:00:05.130 INFO:teuthology.orchestra.run.smithi096.stdout:lab-extras 39 kB/s | 1.7 kB 00:00 2024-09-15T03:00:07.121 INFO:teuthology.orchestra.run.smithi096.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-15T03:00:07.121 INFO:teuthology.orchestra.run.smithi096.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-15T03:00:07.202 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout: Package Architecture Version Repository Size 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-15T03:00:07.213 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:00:07.214 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:00:07.214 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:00:07.214 INFO:teuthology.orchestra.run.smithi096.stdout:Install 4 Packages 2024-09-15T03:00:07.214 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:00:07.214 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 79 M 2024-09-15T03:00:07.214 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 126 M 2024-09-15T03:00:07.215 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:00:07.523 INFO:teuthology.orchestra.run.smithi096.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 79 kB/s | 23 kB 00:00 2024-09-15T03:00:09.452 INFO:teuthology.orchestra.run.smithi187.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-09-15T03:00:10.497 INFO:teuthology.orchestra.run.smithi032.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-09-15T03:00:11.466 INFO:teuthology.orchestra.run.smithi187.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-15T03:00:11.466 INFO:teuthology.orchestra.run.smithi187.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-15T03:00:11.562 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout: Package Architecture Version Repository Size 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:00:11.567 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout:Install 4 Packages 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 79 M 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 126 M 2024-09-15T03:00:11.568 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:00:11.953 INFO:teuthology.orchestra.run.smithi187.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 80 kB/s | 23 kB 00:00 2024-09-15T03:00:12.596 INFO:teuthology.orchestra.run.smithi032.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-15T03:00:12.596 INFO:teuthology.orchestra.run.smithi032.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-15T03:00:12.690 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout: Package Architecture Version Repository Size 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-15T03:00:12.697 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout:Install 4 Packages 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:00:12.698 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 79 M 2024-09-15T03:00:12.699 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 126 M 2024-09-15T03:00:12.699 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:00:13.257 INFO:teuthology.orchestra.run.smithi032.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 43 kB/s | 23 kB 00:00 2024-09-15T03:00:14.141 INFO:teuthology.orchestra.run.smithi032.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 11 MB/s | 16 MB 00:01 2024-09-15T03:00:15.099 INFO:teuthology.orchestra.run.smithi032.stdout:(3/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 15 MB/s | 35 MB 00:02 2024-09-15T03:00:15.633 INFO:teuthology.orchestra.run.smithi032.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 12 MB/s | 29 MB 00:02 2024-09-15T03:00:15.633 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:00:15.634 INFO:teuthology.orchestra.run.smithi032.stdout:Total 27 MB/s | 79 MB 00:02 2024-09-15T03:00:16.339 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:00:16.720 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:00:16.720 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:00:17.627 INFO:teuthology.orchestra.run.smithi187.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 2.6 MB/s | 16 MB 00:05 2024-09-15T03:00:17.716 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:00:17.717 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:00:20.293 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:00:20.979 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-15T03:00:21.068 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:00:22.446 INFO:teuthology.orchestra.run.smithi096.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 1.0 MB/s | 16 MB 00:15 2024-09-15T03:00:23.894 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:00:24.014 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:00:29.156 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:00:29.198 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:00:32.345 INFO:teuthology.orchestra.run.smithi096.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 1.2 MB/s | 29 MB 00:24 2024-09-15T03:00:33.150 INFO:teuthology.orchestra.run.smithi187.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 1.3 MB/s | 29 MB 00:21 2024-09-15T03:00:33.678 INFO:teuthology.orchestra.run.smithi096.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 1.3 MB/s | 35 MB 00:26 2024-09-15T03:00:33.678 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:00:33.678 INFO:teuthology.orchestra.run.smithi096.stdout:Total 3.0 MB/s | 79 MB 00:26 2024-09-15T03:00:34.334 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:00:34.361 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:00:34.704 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:00:34.704 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:00:35.664 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:00:35.665 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:00:38.112 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:00:38.873 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-15T03:00:38.963 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:00:41.732 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:00:41.864 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:00:46.685 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:00:46.773 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:00:51.440 INFO:teuthology.orchestra.run.smithi187.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 889 kB/s | 35 MB 00:39 2024-09-15T03:00:51.440 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:00:51.440 INFO:teuthology.orchestra.run.smithi187.stdout:Total 2.0 MB/s | 79 MB 00:39 2024-09-15T03:00:51.630 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:00:52.117 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:00:52.476 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:00:52.476 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:00:53.458 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:00:53.459 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:00:55.917 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:00:56.564 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-15T03:00:56.640 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:00:59.441 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:00:59.574 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:01:04.423 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:01:04.524 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:09.366 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:13.560 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:13.601 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:13.904 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:13.904 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-15T03:01:13.904 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:01:13.904 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:01:14.757 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:14.757 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:01:14.758 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:01:15.101 DEBUG:teuthology.orchestra.run.smithi032:> rpm -q kernel | sort -rV | head -n 1 2024-09-15T03:01:15.187 INFO:teuthology.orchestra.run.smithi032.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:15.188 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-15T03:01:15.188 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-15T03:01:15.188 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-15T03:01:15.188 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-15T03:01:15.188 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-15T03:01:15.188 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi032.front.sepia.ceph.com, path=None, version=distro) 2024-09-15T03:01:15.188 DEBUG:teuthology.orchestra.run.smithi032:> rpm -q kernel | sort -rV | head -n 1 2024-09-15T03:01:15.246 INFO:teuthology.orchestra.run.smithi032.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:15.246 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-15T03:01:15.246 DEBUG:teuthology.orchestra.run.smithi032:> sudo rpm -qi grub2-tools 2024-09-15T03:01:15.277 INFO:teuthology.orchestra.run.smithi032.stdout:Name : grub2-tools 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Epoch : 1 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Version : 2.06 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Release : 82.el9 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Architecture: x86_64 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Group : Unspecified 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Size : 8274670 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:License : GPLv3+ 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-15T03:01:15.278 INFO:teuthology.orchestra.run.smithi032.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:Packager : builder@centos.org 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:Vendor : CentOS 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:Summary : Support tools for GRUB. 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:Description : 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:hardware devices. 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:01:15.279 INFO:teuthology.orchestra.run.smithi032.stdout:This subpackage provides tools for support of all platforms. 2024-09-15T03:01:15.280 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-15T03:01:15.281 INFO:teuthology.task.kernel:Updating grub on smithi032 to boot 5.14.0-505.el9.x86_64 2024-09-15T03:01:15.281 DEBUG:teuthology.orchestra.run.smithi032:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-15T03:01:15.904 INFO:teuthology.orchestra.run.smithi032.stderr:Generating grub configuration file ... 2024-09-15T03:01:17.231 INFO:teuthology.orchestra.run.smithi032.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-15T03:01:17.258 INFO:teuthology.orchestra.run.smithi032.stderr:done 2024-09-15T03:01:17.260 DEBUG:teuthology.orchestra.run.smithi032:> mktemp 2024-09-15T03:01:17.295 INFO:teuthology.orchestra.run.smithi032.stdout:/tmp/tmp.6HqQz4ix9R 2024-09-15T03:01:17.295 DEBUG:teuthology.orchestra.run.smithi032:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.6HqQz4ix9R 2024-09-15T03:01:17.361 DEBUG:teuthology.orchestra.run.smithi032:> sudo chmod 0666 /tmp/tmp.6HqQz4ix9R 2024-09-15T03:01:17.500 DEBUG:teuthology.orchestra.remote:smithi032:/tmp/tmp.6HqQz4ix9R is 6KB 2024-09-15T03:01:17.548 DEBUG:teuthology.orchestra.run.smithi032:> rm -fr /tmp/tmp.6HqQz4ix9R 2024-09-15T03:01:17.563 DEBUG:teuthology.orchestra.run.smithi032:> sudo /bin/ls /boot/loader/entries || true 2024-09-15T03:01:17.625 INFO:teuthology.orchestra.run.smithi032.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-15T03:01:17.625 INFO:teuthology.orchestra.run.smithi032.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-15T03:01:17.626 INFO:teuthology.orchestra.run.smithi032.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-15T03:01:17.626 INFO:teuthology.orchestra.run.smithi032.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-15T03:01:17.627 DEBUG:teuthology.orchestra.run.smithi032:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-15T03:01:17.775 DEBUG:teuthology.orchestra.run.smithi032:> sudo shutdown -r now 2024-09-15T03:01:29.685 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:29.724 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:30.085 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:30.085 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-15T03:01:30.085 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:01:30.086 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:01:30.964 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:30.964 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:01:30.965 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:01:31.331 DEBUG:teuthology.orchestra.run.smithi096:> rpm -q kernel | sort -rV | head -n 1 2024-09-15T03:01:31.416 INFO:teuthology.orchestra.run.smithi096.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:31.416 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-15T03:01:31.416 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-15T03:01:31.416 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-15T03:01:31.416 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-15T03:01:31.416 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-15T03:01:31.417 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi096.front.sepia.ceph.com, path=None, version=distro) 2024-09-15T03:01:31.417 DEBUG:teuthology.orchestra.run.smithi096:> rpm -q kernel | sort -rV | head -n 1 2024-09-15T03:01:31.475 INFO:teuthology.orchestra.run.smithi096.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:31.475 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-15T03:01:31.475 DEBUG:teuthology.orchestra.run.smithi096:> sudo rpm -qi grub2-tools 2024-09-15T03:01:31.512 INFO:teuthology.orchestra.run.smithi096.stdout:Name : grub2-tools 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Epoch : 1 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Version : 2.06 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Release : 82.el9 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Architecture: x86_64 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Group : Unspecified 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Size : 8274670 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:License : GPLv3+ 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-15T03:01:31.513 INFO:teuthology.orchestra.run.smithi096.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:Packager : builder@centos.org 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:Vendor : CentOS 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:Summary : Support tools for GRUB. 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:Description : 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout:hardware devices. 2024-09-15T03:01:31.514 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:01:31.515 INFO:teuthology.orchestra.run.smithi096.stdout:This subpackage provides tools for support of all platforms. 2024-09-15T03:01:31.515 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-15T03:01:31.515 INFO:teuthology.task.kernel:Updating grub on smithi096 to boot 5.14.0-505.el9.x86_64 2024-09-15T03:01:31.516 DEBUG:teuthology.orchestra.run.smithi096:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-15T03:01:32.205 INFO:teuthology.orchestra.run.smithi096.stderr:Generating grub configuration file ... 2024-09-15T03:01:33.570 INFO:teuthology.orchestra.run.smithi096.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-15T03:01:33.613 INFO:teuthology.orchestra.run.smithi096.stderr:done 2024-09-15T03:01:33.615 DEBUG:teuthology.orchestra.run.smithi096:> mktemp 2024-09-15T03:01:33.630 INFO:teuthology.orchestra.run.smithi096.stdout:/tmp/tmp.yXTC5URsgZ 2024-09-15T03:01:33.631 DEBUG:teuthology.orchestra.run.smithi096:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.yXTC5URsgZ 2024-09-15T03:01:33.700 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 0666 /tmp/tmp.yXTC5URsgZ 2024-09-15T03:01:33.840 DEBUG:teuthology.orchestra.remote:smithi096:/tmp/tmp.yXTC5URsgZ is 6KB 2024-09-15T03:01:33.888 DEBUG:teuthology.orchestra.run.smithi096:> rm -fr /tmp/tmp.yXTC5URsgZ 2024-09-15T03:01:33.905 DEBUG:teuthology.orchestra.run.smithi096:> sudo /bin/ls /boot/loader/entries || true 2024-09-15T03:01:33.969 INFO:teuthology.orchestra.run.smithi096.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-15T03:01:33.969 INFO:teuthology.orchestra.run.smithi096.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-15T03:01:33.969 INFO:teuthology.orchestra.run.smithi096.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-15T03:01:33.969 INFO:teuthology.orchestra.run.smithi096.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-15T03:01:33.971 DEBUG:teuthology.orchestra.run.smithi096:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-15T03:01:34.127 DEBUG:teuthology.orchestra.run.smithi096:> sudo shutdown -r now 2024-09-15T03:01:47.422 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:47.463 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:47.777 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-15T03:01:47.777 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi032.front.sepia.ceph.com' 2024-09-15T03:01:47.778 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi032.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:01:47.781 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:47.781 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-15T03:01:47.781 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-15T03:01:47.781 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-15T03:01:48.664 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:01:48.665 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:01:49.061 DEBUG:teuthology.orchestra.run.smithi187:> rpm -q kernel | sort -rV | head -n 1 2024-09-15T03:01:49.146 INFO:teuthology.orchestra.run.smithi187.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:49.146 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-15T03:01:49.147 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-15T03:01:49.147 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-15T03:01:49.147 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-15T03:01:49.147 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-15T03:01:49.147 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi187.front.sepia.ceph.com, path=None, version=distro) 2024-09-15T03:01:49.148 DEBUG:teuthology.orchestra.run.smithi187:> rpm -q kernel | sort -rV | head -n 1 2024-09-15T03:01:49.207 INFO:teuthology.orchestra.run.smithi187.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-15T03:01:49.207 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-15T03:01:49.208 DEBUG:teuthology.orchestra.run.smithi187:> sudo rpm -qi grub2-tools 2024-09-15T03:01:49.239 INFO:teuthology.orchestra.run.smithi187.stdout:Name : grub2-tools 2024-09-15T03:01:49.239 INFO:teuthology.orchestra.run.smithi187.stdout:Epoch : 1 2024-09-15T03:01:49.239 INFO:teuthology.orchestra.run.smithi187.stdout:Version : 2.06 2024-09-15T03:01:49.239 INFO:teuthology.orchestra.run.smithi187.stdout:Release : 82.el9 2024-09-15T03:01:49.239 INFO:teuthology.orchestra.run.smithi187.stdout:Architecture: x86_64 2024-09-15T03:01:49.239 INFO:teuthology.orchestra.run.smithi187.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Group : Unspecified 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Size : 8274670 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:License : GPLv3+ 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Packager : builder@centos.org 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Vendor : CentOS 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Summary : Support tools for GRUB. 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout:Description : 2024-09-15T03:01:49.240 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:01:49.241 INFO:teuthology.orchestra.run.smithi187.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-15T03:01:49.241 INFO:teuthology.orchestra.run.smithi187.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-15T03:01:49.241 INFO:teuthology.orchestra.run.smithi187.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-15T03:01:49.241 INFO:teuthology.orchestra.run.smithi187.stdout:hardware devices. 2024-09-15T03:01:49.241 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:01:49.241 INFO:teuthology.orchestra.run.smithi187.stdout:This subpackage provides tools for support of all platforms. 2024-09-15T03:01:49.242 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-15T03:01:49.242 INFO:teuthology.task.kernel:Updating grub on smithi187 to boot 5.14.0-505.el9.x86_64 2024-09-15T03:01:49.242 DEBUG:teuthology.orchestra.run.smithi187:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-15T03:01:49.919 INFO:teuthology.orchestra.run.smithi187.stderr:Generating grub configuration file ... 2024-09-15T03:01:51.374 INFO:teuthology.orchestra.run.smithi187.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-15T03:01:51.405 INFO:teuthology.orchestra.run.smithi187.stderr:done 2024-09-15T03:01:51.407 DEBUG:teuthology.orchestra.run.smithi187:> mktemp 2024-09-15T03:01:51.423 INFO:teuthology.orchestra.run.smithi187.stdout:/tmp/tmp.fv0T5FNxIv 2024-09-15T03:01:51.423 DEBUG:teuthology.orchestra.run.smithi187:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.fv0T5FNxIv 2024-09-15T03:01:51.489 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod 0666 /tmp/tmp.fv0T5FNxIv 2024-09-15T03:01:51.640 DEBUG:teuthology.orchestra.remote:smithi187:/tmp/tmp.fv0T5FNxIv is 6KB 2024-09-15T03:01:51.690 DEBUG:teuthology.orchestra.run.smithi187:> rm -fr /tmp/tmp.fv0T5FNxIv 2024-09-15T03:01:51.714 DEBUG:teuthology.orchestra.run.smithi187:> sudo /bin/ls /boot/loader/entries || true 2024-09-15T03:01:51.768 INFO:teuthology.orchestra.run.smithi187.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-15T03:01:51.768 INFO:teuthology.orchestra.run.smithi187.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-15T03:01:51.768 INFO:teuthology.orchestra.run.smithi187.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-15T03:01:51.768 INFO:teuthology.orchestra.run.smithi187.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-15T03:01:51.769 DEBUG:teuthology.orchestra.run.smithi187:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-15T03:01:51.919 DEBUG:teuthology.orchestra.run.smithi187:> sudo shutdown -r now 2024-09-15T03:02:04.141 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-15T03:02:04.142 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:02:04.143 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:02:21.938 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-15T03:02:21.939 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-09-15T03:02:21.939 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:02:22.276 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.32 2024-09-15T03:02:22.525 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-09-15T03:02:31.285 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi032.front.sepia.ceph.com' 2024-09-15T03:02:31.285 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi032.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:02:31.526 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:02:31.528 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:02:34.369 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.32 2024-09-15T03:02:34.593 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-09-15T03:02:46.381 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi032.front.sepia.ceph.com' 2024-09-15T03:02:46.382 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi032.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:02:46.593 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:02:46.594 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:02:46.773 DEBUG:teuthology.orchestra.run.smithi032:> true 2024-09-15T03:02:47.191 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi032.front.sepia.ceph.com' 2024-09-15T03:02:47.191 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-505.el9.x86_64"... 2024-09-15T03:02:47.191 DEBUG:teuthology.orchestra.run.smithi032:> uname -r 2024-09-15T03:02:47.206 INFO:teuthology.orchestra.run.smithi032.stdout:5.14.0-505.el9.x86_64 2024-09-15T03:02:47.206 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-15T03:02:47.206 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-15T03:02:47.206 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-15T03:02:48.207 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-15T03:02:48.208 DEBUG:teuthology.orchestra.run.smithi032:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-15T03:02:48.314 INFO:teuthology.orchestra.run.smithi032.stdout:ttyS1 2024-09-15T03:02:48.335 DEBUG:teuthology.parallel:result is None 2024-09-15T03:03:05.021 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-09-15T03:03:20.023 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:03:20.024 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:03:20.357 DEBUG:teuthology.orchestra.run.smithi096:> true 2024-09-15T03:03:20.708 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:03:20.708 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-505.el9.x86_64"... 2024-09-15T03:03:20.709 DEBUG:teuthology.orchestra.run.smithi096:> uname -r 2024-09-15T03:03:20.723 INFO:teuthology.orchestra.run.smithi096.stdout:5.14.0-505.el9.x86_64 2024-09-15T03:03:20.724 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-15T03:03:20.724 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-15T03:03:20.724 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-15T03:03:21.725 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-15T03:03:21.725 DEBUG:teuthology.orchestra.run.smithi096:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-15T03:03:21.813 INFO:teuthology.orchestra.run.smithi096.stdout:ttyS1 2024-09-15T03:03:21.851 DEBUG:teuthology.parallel:result is None 2024-09-15T03:03:21.942 DEBUG:teuthology.orchestra.remote:timed out 2024-09-15T03:03:30.943 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-09-15T03:03:30.944 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:03:31.331 DEBUG:teuthology.orchestra.run.smithi187:> true 2024-09-15T03:03:31.693 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-09-15T03:03:31.693 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-505.el9.x86_64"... 2024-09-15T03:03:31.693 DEBUG:teuthology.orchestra.run.smithi187:> uname -r 2024-09-15T03:03:31.709 INFO:teuthology.orchestra.run.smithi187.stdout:5.14.0-505.el9.x86_64 2024-09-15T03:03:31.709 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-15T03:03:31.709 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-15T03:03:31.709 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-15T03:03:32.710 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-15T03:03:32.710 DEBUG:teuthology.orchestra.run.smithi187:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-15T03:03:32.770 INFO:teuthology.orchestra.run.smithi187.stdout:ttyS1 2024-09-15T03:03:32.789 DEBUG:teuthology.parallel:result is None 2024-09-15T03:03:32.789 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-15T03:03:32.797 INFO:teuthology.task.internal:Creating test directory... 2024-09-15T03:03:32.797 DEBUG:teuthology.orchestra.run.smithi032:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-15T03:03:32.801 DEBUG:teuthology.orchestra.run.smithi096:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-15T03:03:32.804 DEBUG:teuthology.orchestra.run.smithi187:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-15T03:03:32.821 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-15T03:03:32.866 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-15T03:03:32.871 INFO:teuthology.task.internal:Creating archive directory... 2024-09-15T03:03:32.872 DEBUG:teuthology.orchestra.run.smithi032:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-15T03:03:32.875 DEBUG:teuthology.orchestra.run.smithi096:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-15T03:03:32.878 DEBUG:teuthology.orchestra.run.smithi187:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-15T03:03:32.986 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-15T03:03:32.992 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-15T03:03:32.993 DEBUG:teuthology.orchestra.run.smithi032:> 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 2024-09-15T03:03:32.995 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-09-15T03:03:32.998 DEBUG:teuthology.orchestra.run.smithi187:> 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 2024-09-15T03:03:33.026 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-15T03:03:33.027 INFO:teuthology.orchestra.run.smithi187.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-15T03:03:33.031 INFO:teuthology.orchestra.run.smithi032.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-15T03:03:33.037 INFO:teuthology.orchestra.run.smithi187.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-15T03:03:33.037 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-15T03:03:33.043 INFO:teuthology.orchestra.run.smithi032.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-15T03:03:33.045 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-15T03:03:33.052 INFO:teuthology.task.internal:Configuring sudo... 2024-09-15T03:03:33.053 DEBUG:teuthology.orchestra.run.smithi032:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-15T03:03:33.088 DEBUG:teuthology.orchestra.run.smithi096:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-15T03:03:33.091 DEBUG:teuthology.orchestra.run.smithi187:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-15T03:03:33.119 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-15T03:03:33.129 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-15T03:03:33.129 DEBUG:teuthology.orchestra.run.smithi032:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-15T03:03:33.158 DEBUG:teuthology.orchestra.run.smithi096:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-15T03:03:33.161 DEBUG:teuthology.orchestra.run.smithi187:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-15T03:03:33.177 DEBUG:teuthology.orchestra.run.smithi032:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-15T03:03:33.264 DEBUG:teuthology.orchestra.run.smithi032:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-15T03:03:33.310 DEBUG:teuthology.orchestra.run.smithi032:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-15T03:03:33.395 DEBUG:teuthology.orchestra.run.smithi032:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-15T03:03:33.437 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:03:33.438 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-15T03:03:33.504 DEBUG:teuthology.orchestra.run.smithi096:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-15T03:03:33.550 DEBUG:teuthology.orchestra.run.smithi096:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-15T03:03:33.613 DEBUG:teuthology.orchestra.run.smithi096:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-15T03:03:33.659 DEBUG:teuthology.orchestra.run.smithi096:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-15T03:03:33.701 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:03:33.701 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-15T03:03:33.767 DEBUG:teuthology.orchestra.run.smithi187:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-15T03:03:33.808 DEBUG:teuthology.orchestra.run.smithi187:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-15T03:03:33.851 DEBUG:teuthology.orchestra.run.smithi187:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-15T03:03:33.932 DEBUG:teuthology.orchestra.run.smithi187:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-15T03:03:33.968 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:03:33.969 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-15T03:03:34.041 DEBUG:teuthology.orchestra.run.smithi032:> sudo service rsyslog restart 2024-09-15T03:03:34.045 DEBUG:teuthology.orchestra.run.smithi096:> sudo service rsyslog restart 2024-09-15T03:03:34.047 DEBUG:teuthology.orchestra.run.smithi187:> sudo service rsyslog restart 2024-09-15T03:03:34.093 INFO:teuthology.orchestra.run.smithi096.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-15T03:03:34.101 INFO:teuthology.orchestra.run.smithi032.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-15T03:03:34.120 INFO:teuthology.orchestra.run.smithi187.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-15T03:03:34.607 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-15T03:03:34.614 INFO:teuthology.task.internal:Starting timer... 2024-09-15T03:03:34.614 INFO:teuthology.run_tasks:Running task pcp... 2024-09-15T03:03:34.624 INFO:teuthology.run_tasks:Running task selinux... 2024-09-15T03:03:34.635 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-15T03:03:34.635 DEBUG:teuthology.orchestra.run.smithi032:> sudo service auditd rotate 2024-09-15T03:03:34.702 INFO:teuthology.orchestra.run.smithi032.stdout:Rotating logs: 2024-09-15T03:03:34.704 DEBUG:teuthology.orchestra.run.smithi096:> sudo service auditd rotate 2024-09-15T03:03:34.751 INFO:teuthology.orchestra.run.smithi096.stdout:Rotating logs: 2024-09-15T03:03:34.752 DEBUG:teuthology.orchestra.run.smithi187:> sudo service auditd rotate 2024-09-15T03:03:34.802 INFO:teuthology.orchestra.run.smithi187.stdout:Rotating logs: 2024-09-15T03:03:34.804 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-15T03:03:34.804 DEBUG:teuthology.orchestra.run.smithi032:> /usr/sbin/getenforce 2024-09-15T03:03:34.827 INFO:teuthology.orchestra.run.smithi032.stdout:Permissive 2024-09-15T03:03:34.827 DEBUG:teuthology.orchestra.run.smithi096:> /usr/sbin/getenforce 2024-09-15T03:03:34.864 INFO:teuthology.orchestra.run.smithi096.stdout:Permissive 2024-09-15T03:03:34.864 DEBUG:teuthology.orchestra.run.smithi187:> /usr/sbin/getenforce 2024-09-15T03:03:34.885 INFO:teuthology.orchestra.run.smithi187.stdout:Permissive 2024-09-15T03:03:34.885 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi032.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi096.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi187.front.sepia.ceph.com': 'permissive'} 2024-09-15T03:03:34.886 DEBUG:teuthology.orchestra.run.smithi032:> 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 2024-09-15T03:03:34.916 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:03:34.917 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-09-15T03:03:34.945 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:03:34.946 DEBUG:teuthology.orchestra.run.smithi187:> 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 2024-09-15T03:03:34.970 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:03:34.970 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-15T03:03:34.970 DEBUG:teuthology.orchestra.run.smithi032:> sudo /usr/sbin/setenforce permissive 2024-09-15T03:03:35.005 DEBUG:teuthology.orchestra.run.smithi096:> sudo /usr/sbin/setenforce permissive 2024-09-15T03:03:35.036 DEBUG:teuthology.orchestra.run.smithi187:> sudo /usr/sbin/setenforce permissive 2024-09-15T03:03:35.066 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-15T03:03:35.077 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-15T03:03:35.090 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'}]}] 2024-09-15T03:03:35.091 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi032.front.sepia.ceph.com,smithi096.front.sepia.ceph.com,smithi187.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-15T03:07:27.070 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi032.front.sepia.ceph.com'), Remote(name='ubuntu@smithi096.front.sepia.ceph.com'), Remote(name='ubuntu@smithi187.front.sepia.ceph.com')] 2024-09-15T03:07:27.071 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi032.front.sepia.ceph.com' 2024-09-15T03:07:27.073 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi032.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:07:27.152 DEBUG:teuthology.orchestra.run.smithi032:> true 2024-09-15T03:07:27.237 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi032.front.sepia.ceph.com' 2024-09-15T03:07:27.238 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:07:27.238 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:07:27.316 DEBUG:teuthology.orchestra.run.smithi096:> true 2024-09-15T03:07:27.394 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-09-15T03:07:27.394 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-09-15T03:07:27.395 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-15T03:07:27.471 DEBUG:teuthology.orchestra.run.smithi187:> true 2024-09-15T03:07:27.558 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-09-15T03:07:27.558 INFO:teuthology.run_tasks:Running task clock... 2024-09-15T03:07:27.569 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-15T03:07:27.569 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-15T03:07:27.570 DEBUG:teuthology.orchestra.run.smithi032:> 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 2024-09-15T03:07:27.572 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-15T03:07:27.572 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-09-15T03:07:27.574 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-15T03:07:27.574 DEBUG:teuthology.orchestra.run.smithi187:> 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 2024-09-15T03:07:27.602 INFO:teuthology.orchestra.run.smithi032.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-15T03:07:27.605 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-15T03:07:27.619 INFO:teuthology.orchestra.run.smithi032.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-15T03:07:27.622 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-15T03:07:27.632 INFO:teuthology.orchestra.run.smithi187.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-15T03:07:27.646 INFO:teuthology.orchestra.run.smithi032.stderr:sudo: ntpd: command not found 2024-09-15T03:07:27.647 INFO:teuthology.orchestra.run.smithi187.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-15T03:07:27.648 INFO:teuthology.orchestra.run.smithi096.stderr:sudo: ntpd: command not found 2024-09-15T03:07:27.658 INFO:teuthology.orchestra.run.smithi032.stdout:506 Cannot talk to daemon 2024-09-15T03:07:27.660 INFO:teuthology.orchestra.run.smithi096.stdout:506 Cannot talk to daemon 2024-09-15T03:07:27.673 INFO:teuthology.orchestra.run.smithi187.stderr:sudo: ntpd: command not found 2024-09-15T03:07:27.674 INFO:teuthology.orchestra.run.smithi032.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-15T03:07:27.675 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-15T03:07:27.685 INFO:teuthology.orchestra.run.smithi187.stdout:506 Cannot talk to daemon 2024-09-15T03:07:27.689 INFO:teuthology.orchestra.run.smithi032.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-15T03:07:27.689 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-15T03:07:27.699 INFO:teuthology.orchestra.run.smithi187.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-15T03:07:27.714 INFO:teuthology.orchestra.run.smithi187.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-15T03:07:27.745 INFO:teuthology.orchestra.run.smithi096.stderr:bash: line 1: ntpq: command not found 2024-09-15T03:07:27.749 INFO:teuthology.orchestra.run.smithi096.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-15T03:07:27.749 INFO:teuthology.orchestra.run.smithi096.stdout:=============================================================================== 2024-09-15T03:07:27.749 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.749 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.749 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.749 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.753 INFO:teuthology.orchestra.run.smithi032.stderr:bash: line 1: ntpq: command not found 2024-09-15T03:07:27.757 INFO:teuthology.orchestra.run.smithi032.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-15T03:07:27.757 INFO:teuthology.orchestra.run.smithi032.stdout:=============================================================================== 2024-09-15T03:07:27.757 INFO:teuthology.orchestra.run.smithi032.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.757 INFO:teuthology.orchestra.run.smithi032.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.757 INFO:teuthology.orchestra.run.smithi032.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.757 INFO:teuthology.orchestra.run.smithi032.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.772 INFO:teuthology.orchestra.run.smithi187.stderr:bash: line 1: ntpq: command not found 2024-09-15T03:07:27.776 INFO:teuthology.orchestra.run.smithi187.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-15T03:07:27.776 INFO:teuthology.orchestra.run.smithi187.stdout:=============================================================================== 2024-09-15T03:07:27.776 INFO:teuthology.orchestra.run.smithi187.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.776 INFO:teuthology.orchestra.run.smithi187.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.776 INFO:teuthology.orchestra.run.smithi187.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.776 INFO:teuthology.orchestra.run.smithi187.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:07:27.777 INFO:teuthology.run_tasks:Running task install... 2024-09-15T03:07:27.786 DEBUG:teuthology.task.install:project ceph 2024-09-15T03:07:27.786 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'd75f23820806da622f561ee5ee7551015285993f'}} 2024-09-15T03:07:27.786 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'd75f23820806da622f561ee5ee7551015285993f'} 2024-09-15T03:07:27.786 INFO:teuthology.task.install:Using flavor: default 2024-09-15T03:07:27.792 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']} 2024-09-15T03:07:27.792 INFO:teuthology.task.install:extra packages: [] 2024-09-15T03:07:27.792 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': 'd75f23820806da622f561ee5ee7551015285993f', 'tag': None, 'wait_for_package': False} 2024-09-15T03:07:27.793 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:07:27.795 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': 'd75f23820806da622f561ee5ee7551015285993f', 'tag': None, 'wait_for_package': False} 2024-09-15T03:07:27.795 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:07:27.796 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': 'd75f23820806da622f561ee5ee7551015285993f', 'tag': None, 'wait_for_package': False} 2024-09-15T03:07:27.796 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:07:27.948 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/ 2024-09-15T03:07:27.948 INFO:teuthology.task.install.rpm:Package version is 17.2.7-1643.gd75f2382 2024-09-15T03:07:27.956 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/ 2024-09-15T03:07:27.957 INFO:teuthology.task.install.rpm:Package version is 17.2.7-1643.gd75f2382 2024-09-15T03:07:27.959 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/ 2024-09-15T03:07:27.960 INFO:teuthology.task.install.rpm:Package version is 17.2.7-1643.gd75f2382 2024-09-15T03:07:28.060 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-15T03:07:28.060 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:07:28.060 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-15T03:07:28.070 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-15T03:07:28.070 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:07:28.070 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-15T03:07:28.073 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/wip-bharath9-testing-2024-09-13-1444-quincy/d75f23820806da622f561ee5ee7551015285993f/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-15T03:07:28.073 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:07:28.073 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-15T03:07:28.086 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 2024-09-15T03:07:28.087 DEBUG:teuthology.orchestra.run.smithi187:> 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/d75f23820806da622f561ee5ee7551015285993f/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-15T03:07:28.096 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 2024-09-15T03:07:28.096 DEBUG:teuthology.orchestra.run.smithi096:> 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/d75f23820806da622f561ee5ee7551015285993f/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-15T03:07:28.101 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 2024-09-15T03:07:28.102 DEBUG:teuthology.orchestra.run.smithi032:> 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/d75f23820806da622f561ee5ee7551015285993f/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-15T03:07:28.153 DEBUG:teuthology.orchestra.run.smithi187:> 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 2024-09-15T03:07:28.161 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-09-15T03:07:28.168 DEBUG:teuthology.orchestra.run.smithi032:> 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 2024-09-15T03:07:28.228 DEBUG:teuthology.orchestra.run.smithi187:> 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 2024-09-15T03:07:28.236 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-09-15T03:07:28.248 DEBUG:teuthology.orchestra.run.smithi032:> 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 2024-09-15T03:07:28.293 INFO:teuthology.orchestra.run.smithi187.stdout:check_obsoletes = 1 2024-09-15T03:07:28.294 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum clean all 2024-09-15T03:07:28.300 INFO:teuthology.orchestra.run.smithi096.stdout:check_obsoletes = 1 2024-09-15T03:07:28.301 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum clean all 2024-09-15T03:07:28.313 INFO:teuthology.orchestra.run.smithi032.stdout:check_obsoletes = 1 2024-09-15T03:07:28.315 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum clean all 2024-09-15T03:07:28.519 INFO:teuthology.orchestra.run.smithi187.stdout:45 files removed 2024-09-15T03:07:28.534 INFO:teuthology.orchestra.run.smithi096.stdout:45 files removed 2024-09-15T03:07:28.547 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-radosgw 2024-09-15T03:07:28.557 INFO:teuthology.orchestra.run.smithi032.stdout:45 files removed 2024-09-15T03:07:28.560 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-radosgw 2024-09-15T03:07:28.584 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-radosgw 2024-09-15T03:07:29.102 INFO:teuthology.orchestra.run.smithi187.stdout:ceph packages for x86_64 284 kB/s | 77 kB 00:00 2024-09-15T03:07:29.123 INFO:teuthology.orchestra.run.smithi096.stdout:ceph packages for x86_64 276 kB/s | 77 kB 00:00 2024-09-15T03:07:29.151 INFO:teuthology.orchestra.run.smithi032.stdout:ceph packages for x86_64 289 kB/s | 77 kB 00:00 2024-09-15T03:07:29.391 INFO:teuthology.orchestra.run.smithi096.stdout:ceph noarch packages 48 kB/s | 11 kB 00:00 2024-09-15T03:07:29.394 INFO:teuthology.orchestra.run.smithi187.stdout:ceph noarch packages 43 kB/s | 11 kB 00:00 2024-09-15T03:07:29.435 INFO:teuthology.orchestra.run.smithi032.stdout:ceph noarch packages 45 kB/s | 11 kB 00:00 2024-09-15T03:07:29.658 INFO:teuthology.orchestra.run.smithi096.stdout:ceph source packages 7.8 kB/s | 1.8 kB 00:00 2024-09-15T03:07:29.669 INFO:teuthology.orchestra.run.smithi187.stdout:ceph source packages 7.5 kB/s | 1.8 kB 00:00 2024-09-15T03:07:29.694 INFO:teuthology.orchestra.run.smithi032.stdout:ceph source packages 8.1 kB/s | 1.8 kB 00:00 2024-09-15T03:07:30.178 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - BaseOS 17 MB/s | 8.2 MB 00:00 2024-09-15T03:07:30.408 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.2 MB 00:00 2024-09-15T03:07:30.527 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - BaseOS 10 MB/s | 8.2 MB 00:00 2024-09-15T03:07:32.828 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - AppStream 17 MB/s | 20 MB 00:01 2024-09-15T03:07:34.254 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - AppStream 6.9 MB/s | 20 MB 00:02 2024-09-15T03:07:36.108 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - AppStream 4.4 MB/s | 20 MB 00:04 2024-09-15T03:07:37.430 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-15T03:07:38.530 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - CRB 13 MB/s | 6.5 MB 00:00 2024-09-15T03:07:39.039 INFO:teuthology.orchestra.run.smithi032.stdout:CentOS Stream 9 - Extras packages 57 kB/s | 19 kB 00:00 2024-09-15T03:07:39.928 INFO:teuthology.orchestra.run.smithi032.stdout:Extra Packages for Enterprise Linux 30 MB/s | 23 MB 00:00 2024-09-15T03:07:40.097 INFO:teuthology.orchestra.run.smithi187.stdout:CentOS Stream 9 - Extras packages 55 kB/s | 19 kB 00:00 2024-09-15T03:07:40.868 INFO:teuthology.orchestra.run.smithi187.stdout:Extra Packages for Enterprise Linux 35 MB/s | 23 MB 00:00 2024-09-15T03:07:41.226 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - CRB 4.9 MB/s | 6.5 MB 00:01 2024-09-15T03:07:42.752 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 9 - Extras packages 60 kB/s | 19 kB 00:00 2024-09-15T03:07:43.556 INFO:teuthology.orchestra.run.smithi096.stdout:Extra Packages for Enterprise Linux 33 MB/s | 23 MB 00:00 2024-09-15T03:07:45.576 INFO:teuthology.orchestra.run.smithi032.stdout:lab-extras 41 kB/s | 1.7 kB 00:00 2024-09-15T03:07:46.307 INFO:teuthology.orchestra.run.smithi187.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-09-15T03:07:48.036 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:07:48.047 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:07:48.047 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:07:48.047 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-radosgw x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 14 M 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout:Upgrading: 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout: librados2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 3.1 M 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout: librbd1 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.9 M 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-base x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 5.0 M 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-common x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 22 M 2024-09-15T03:07:48.048 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-selinux x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 25 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: libcephfs2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 637 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: libradosstriper1 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 458 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: librgw2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 4.9 M 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: python3-ceph-argparse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 45 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: python3-ceph-common x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 120 k 2024-09-15T03:07:48.049 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cephfs x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 156 k 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rados x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 320 k 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rbd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 295 k 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rgw x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 100 k 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout:Install 22 Packages 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout:Upgrade 2 Packages 2024-09-15T03:07:48.050 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:07:48.051 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 58 M 2024-09-15T03:07:48.051 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:07:48.698 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:07:48.709 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:07:48.709 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:07:48.709 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:07:48.709 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:07:48.709 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-radosgw x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 14 M 2024-09-15T03:07:48.709 INFO:teuthology.orchestra.run.smithi187.stdout:Upgrading: 2024-09-15T03:07:48.710 INFO:teuthology.orchestra.run.smithi187.stdout: librados2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 3.1 M 2024-09-15T03:07:48.710 INFO:teuthology.orchestra.run.smithi187.stdout: librbd1 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.9 M 2024-09-15T03:07:48.710 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:07:48.710 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-base x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 5.0 M 2024-09-15T03:07:48.710 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-common x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 22 M 2024-09-15T03:07:48.711 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-selinux x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 25 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: libcephfs2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 637 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: libradosstriper1 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 458 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: librgw2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 4.9 M 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-15T03:07:48.712 INFO:teuthology.orchestra.run.smithi187.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ceph-argparse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 45 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ceph-common x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 120 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cephfs x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 156 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rados x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 320 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rbd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 295 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rgw x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 100 k 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:07:48.713 INFO:teuthology.orchestra.run.smithi187.stdout:Install 22 Packages 2024-09-15T03:07:48.714 INFO:teuthology.orchestra.run.smithi187.stdout:Upgrade 2 Packages 2024-09-15T03:07:48.714 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:07:48.714 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 58 M 2024-09-15T03:07:48.714 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:07:48.878 INFO:teuthology.orchestra.run.smithi096.stdout:lab-extras 41 kB/s | 1.7 kB 00:00 2024-09-15T03:07:48.977 INFO:teuthology.orchestra.run.smithi032.stdout:(1/24): ceph-base-17.2.7-1643.gd75f2382.el9.x86 8.8 MB/s | 5.0 MB 00:00 2024-09-15T03:07:49.052 INFO:teuthology.orchestra.run.smithi032.stdout:(2/24): ceph-selinux-17.2.7-1643.gd75f2382.el9. 335 kB/s | 25 kB 00:00 2024-09-15T03:07:49.153 INFO:teuthology.orchestra.run.smithi032.stdout:(3/24): libcephfs2-17.2.7-1643.gd75f2382.el9.x8 6.2 MB/s | 637 kB 00:00 2024-09-15T03:07:49.236 INFO:teuthology.orchestra.run.smithi032.stdout:(4/24): libradosstriper1-17.2.7-1643.gd75f2382. 5.4 MB/s | 458 kB 00:00 2024-09-15T03:07:49.386 INFO:teuthology.orchestra.run.smithi032.stdout:(5/24): ceph-radosgw-17.2.7-1643.gd75f2382.el9. 15 MB/s | 14 MB 00:00 2024-09-15T03:07:49.453 INFO:teuthology.orchestra.run.smithi032.stdout:(6/24): python3-ceph-argparse-17.2.7-1643.gd75f 679 kB/s | 45 kB 00:00 2024-09-15T03:07:49.537 INFO:teuthology.orchestra.run.smithi032.stdout:(7/24): python3-ceph-common-17.2.7-1643.gd75f23 1.4 MB/s | 120 kB 00:00 2024-09-15T03:07:49.612 INFO:teuthology.orchestra.run.smithi032.stdout:(8/24): librgw2-17.2.7-1643.gd75f2382.el9.x86_6 13 MB/s | 4.9 MB 00:00 2024-09-15T03:07:49.637 INFO:teuthology.orchestra.run.smithi032.stdout:(9/24): python3-cephfs-17.2.7-1643.gd75f2382.el 1.5 MB/s | 156 kB 00:00 2024-09-15T03:07:49.808 INFO:teuthology.orchestra.run.smithi187.stdout:(1/24): ceph-base-17.2.7-1643.gd75f2382.el9.x86 6.3 MB/s | 5.0 MB 00:00 2024-09-15T03:07:49.858 INFO:teuthology.orchestra.run.smithi187.stdout:(2/24): ceph-selinux-17.2.7-1643.gd75f2382.el9. 504 kB/s | 25 kB 00:00 2024-09-15T03:07:49.879 INFO:teuthology.orchestra.run.smithi032.stdout:(10/24): ceph-common-17.2.7-1643.gd75f2382.el9. 15 MB/s | 22 MB 00:01 2024-09-15T03:07:49.904 INFO:teuthology.orchestra.run.smithi032.stdout:(11/24): python3-rbd-17.2.7-1643.gd75f2382.el9. 1.1 MB/s | 295 kB 00:00 2024-09-15T03:07:49.925 INFO:teuthology.orchestra.run.smithi187.stdout:(3/24): libcephfs2-17.2.7-1643.gd75f2382.el9.x8 9.3 MB/s | 637 kB 00:00 2024-09-15T03:07:49.929 INFO:teuthology.orchestra.run.smithi032.stdout:(12/24): python3-rados-17.2.7-1643.gd75f2382.el 1.0 MB/s | 320 kB 00:00 2024-09-15T03:07:49.955 INFO:teuthology.orchestra.run.smithi032.stdout:(13/24): python3-rgw-17.2.7-1643.gd75f2382.el9. 1.3 MB/s | 100 kB 00:00 2024-09-15T03:07:50.000 INFO:teuthology.orchestra.run.smithi187.stdout:(4/24): libradosstriper1-17.2.7-1643.gd75f2382. 6.0 MB/s | 458 kB 00:00 2024-09-15T03:07:50.047 INFO:teuthology.orchestra.run.smithi032.stdout:(14/24): librabbitmq-0.11.0-7.el9.x86_64.rpm 387 kB/s | 45 kB 00:00 2024-09-15T03:07:50.122 INFO:teuthology.orchestra.run.smithi032.stdout:(15/24): libpmemobj-1.12.1-1.el9.x86_64.rpm 737 kB/s | 160 kB 00:00 2024-09-15T03:07:50.164 INFO:teuthology.orchestra.run.smithi032.stdout:(16/24): python3-prettytable-0.7.2-27.el9.noarc 1.0 MB/s | 42 kB 00:00 2024-09-15T03:07:50.189 INFO:teuthology.orchestra.run.smithi032.stdout:(17/24): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.0 MB/s | 292 kB 00:00 2024-09-15T03:07:50.239 INFO:teuthology.orchestra.run.smithi032.stdout:(18/24): gperftools-libs-2.9.1-3.el9.x86_64.rpm 4.0 MB/s | 308 kB 00:00 2024-09-15T03:07:50.282 INFO:teuthology.orchestra.run.smithi032.stdout:(19/24): librdkafka-1.6.1-102.el9.x86_64.rpm 2.0 MB/s | 662 kB 00:00 2024-09-15T03:07:50.307 INFO:teuthology.orchestra.run.smithi032.stdout:(20/24): liboath-2.6.7-2.el9.x86_64.rpm 415 kB/s | 49 kB 00:00 2024-09-15T03:07:50.334 INFO:teuthology.orchestra.run.smithi187.stdout:(5/24): librgw2-17.2.7-1643.gd75f2382.el9.x86_6 15 MB/s | 4.9 MB 00:00 2024-09-15T03:07:50.340 INFO:teuthology.orchestra.run.smithi032.stdout:(21/24): libunwind-1.6.2-1.el9.x86_64.rpm 684 kB/s | 67 kB 00:00 2024-09-15T03:07:50.384 INFO:teuthology.orchestra.run.smithi187.stdout:(6/24): python3-ceph-argparse-17.2.7-1643.gd75f 903 kB/s | 45 kB 00:00 2024-09-15T03:07:50.407 INFO:teuthology.orchestra.run.smithi032.stdout:(22/24): thrift-0.15.0-2.el9.x86_64.rpm 13 MB/s | 1.6 MB 00:00 2024-09-15T03:07:50.434 INFO:teuthology.orchestra.run.smithi187.stdout:(7/24): python3-ceph-common-17.2.7-1643.gd75f23 2.4 MB/s | 120 kB 00:00 2024-09-15T03:07:50.509 INFO:teuthology.orchestra.run.smithi187.stdout:(8/24): python3-cephfs-17.2.7-1643.gd75f2382.el 2.0 MB/s | 156 kB 00:00 2024-09-15T03:07:50.541 INFO:teuthology.orchestra.run.smithi032.stdout:(23/24): librados2-17.2.7-1643.gd75f2382.el9.x8 14 MB/s | 3.1 MB 00:00 2024-09-15T03:07:50.560 INFO:teuthology.orchestra.run.smithi187.stdout:(9/24): python3-rados-17.2.7-1643.gd75f2382.el9 6.2 MB/s | 320 kB 00:00 2024-09-15T03:07:50.599 INFO:teuthology.orchestra.run.smithi032.stdout:(24/24): librbd1-17.2.7-1643.gd75f2382.el9.x86_ 11 MB/s | 2.9 MB 00:00 2024-09-15T03:07:50.605 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:07:50.605 INFO:teuthology.orchestra.run.smithi032.stdout:Total 23 MB/s | 58 MB 00:02 2024-09-15T03:07:50.619 INFO:teuthology.orchestra.run.smithi187.stdout:(10/24): python3-rbd-17.2.7-1643.gd75f2382.el9. 4.9 MB/s | 295 kB 00:00 2024-09-15T03:07:50.672 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:07:50.710 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:07:50.710 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:07:50.786 INFO:teuthology.orchestra.run.smithi187.stdout:(11/24): ceph-radosgw-17.2.7-1643.gd75f2382.el9 8.2 MB/s | 14 MB 00:01 2024-09-15T03:07:50.811 INFO:teuthology.orchestra.run.smithi187.stdout:(12/24): python3-rgw-17.2.7-1643.gd75f2382.el9. 518 kB/s | 100 kB 00:00 2024-09-15T03:07:51.036 INFO:teuthology.orchestra.run.smithi187.stdout:(13/24): ceph-common-17.2.7-1643.gd75f2382.el9. 11 MB/s | 22 MB 00:02 2024-09-15T03:07:51.145 INFO:teuthology.orchestra.run.smithi187.stdout:(14/24): libpmemobj-1.12.1-1.el9.x86_64.rpm 447 kB/s | 160 kB 00:00 2024-09-15T03:07:51.170 INFO:teuthology.orchestra.run.smithi187.stdout:(15/24): librabbitmq-0.11.0-7.el9.x86_64.rpm 126 kB/s | 45 kB 00:00 2024-09-15T03:07:51.229 INFO:teuthology.orchestra.run.smithi187.stdout:(16/24): librdkafka-1.6.1-102.el9.x86_64.rpm 3.4 MB/s | 662 kB 00:00 2024-09-15T03:07:51.253 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:07:51.254 INFO:teuthology.orchestra.run.smithi187.stdout:(17/24): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.6 MB/s | 292 kB 00:00 2024-09-15T03:07:51.277 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:07:51.277 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-radosgw x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 14 M 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout:Upgrading: 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: librados2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 3.1 M 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: librbd1 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.9 M 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-base x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 5.0 M 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-common x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 22 M 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-selinux x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 25 k 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-15T03:07:51.278 INFO:teuthology.orchestra.run.smithi096.stdout: libcephfs2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 637 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: libradosstriper1 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 458 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: librgw2 x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 4.9 M 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ceph-argparse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 45 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ceph-common x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 120 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cephfs x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 156 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-15T03:07:51.279 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rados x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 320 k 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rbd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 295 k 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rgw x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 100 k 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout:Install 22 Packages 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout:Upgrade 2 Packages 2024-09-15T03:07:51.280 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:07:51.281 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 58 M 2024-09-15T03:07:51.281 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:07:51.288 INFO:teuthology.orchestra.run.smithi187.stdout:(18/24): python3-prettytable-0.7.2-27.el9.noarc 360 kB/s | 42 kB 00:00 2024-09-15T03:07:51.338 INFO:teuthology.orchestra.run.smithi187.stdout:(19/24): liboath-2.6.7-2.el9.x86_64.rpm 639 kB/s | 49 kB 00:00 2024-09-15T03:07:51.363 INFO:teuthology.orchestra.run.smithi187.stdout:(20/24): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.2 MB/s | 308 kB 00:00 2024-09-15T03:07:51.373 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:07:51.373 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:07:51.380 INFO:teuthology.orchestra.run.smithi187.stdout:(21/24): libunwind-1.6.2-1.el9.x86_64.rpm 814 kB/s | 67 kB 00:00 2024-09-15T03:07:51.431 INFO:teuthology.orchestra.run.smithi187.stdout:(22/24): thrift-0.15.0-2.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2024-09-15T03:07:51.614 INFO:teuthology.orchestra.run.smithi187.stdout:(23/24): librados2-17.2.7-1643.gd75f2382.el9.x8 12 MB/s | 3.1 MB 00:00 2024-09-15T03:07:51.673 INFO:teuthology.orchestra.run.smithi187.stdout:(24/24): librbd1-17.2.7-1643.gd75f2382.el9.x86_ 10 MB/s | 2.9 MB 00:00 2024-09-15T03:07:51.679 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:07:51.679 INFO:teuthology.orchestra.run.smithi187.stdout:Total 20 MB/s | 58 MB 00:02 2024-09-15T03:07:51.745 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:07:51.779 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:07:51.779 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:07:52.062 INFO:teuthology.orchestra.run.smithi096.stdout:(1/24): ceph-base-17.2.7-1643.gd75f2382.el9.x86 9.9 MB/s | 5.0 MB 00:00 2024-09-15T03:07:52.129 INFO:teuthology.orchestra.run.smithi096.stdout:(2/24): ceph-selinux-17.2.7-1643.gd75f2382.el9. 378 kB/s | 25 kB 00:00 2024-09-15T03:07:52.229 INFO:teuthology.orchestra.run.smithi096.stdout:(3/24): libcephfs2-17.2.7-1643.gd75f2382.el9.x8 6.2 MB/s | 637 kB 00:00 2024-09-15T03:07:52.338 INFO:teuthology.orchestra.run.smithi096.stdout:(4/24): libradosstriper1-17.2.7-1643.gd75f2382. 4.1 MB/s | 458 kB 00:00 2024-09-15T03:07:52.408 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:07:52.409 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:07:52.597 INFO:teuthology.orchestra.run.smithi096.stdout:(5/24): librgw2-17.2.7-1643.gd75f2382.el9.x86_6 19 MB/s | 4.9 MB 00:00 2024-09-15T03:07:52.624 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:07:52.756 INFO:teuthology.orchestra.run.smithi096.stdout:(6/24): ceph-radosgw-17.2.7-1643.gd75f2382.el9. 12 MB/s | 14 MB 00:01 2024-09-15T03:07:52.789 INFO:teuthology.orchestra.run.smithi096.stdout:(7/24): python3-ceph-argparse-17.2.7-1643.gd75f 235 kB/s | 45 kB 00:00 2024-09-15T03:07:52.816 INFO:teuthology.orchestra.run.smithi096.stdout:(8/24): python3-ceph-common-17.2.7-1643.gd75f23 2.0 MB/s | 120 kB 00:00 2024-09-15T03:07:52.979 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/26 2024-09-15T03:07:53.048 INFO:teuthology.orchestra.run.smithi096.stdout:(9/24): ceph-common-17.2.7-1643.gd75f2382.el9.x 15 MB/s | 22 MB 00:01 2024-09-15T03:07:53.073 INFO:teuthology.orchestra.run.smithi096.stdout:(10/24): python3-cephfs-17.2.7-1643.gd75f2382.e 550 kB/s | 156 kB 00:00 2024-09-15T03:07:53.076 INFO:teuthology.orchestra.run.smithi032.stdout: Upgrading : librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:07:53.099 INFO:teuthology.orchestra.run.smithi096.stdout:(11/24): python3-rados-17.2.7-1643.gd75f2382.el 1.1 MB/s | 320 kB 00:00 2024-09-15T03:07:53.132 INFO:teuthology.orchestra.run.smithi096.stdout:(12/24): python3-rgw-17.2.7-1643.gd75f2382.el9. 1.7 MB/s | 100 kB 00:00 2024-09-15T03:07:53.158 INFO:teuthology.orchestra.run.smithi096.stdout:(13/24): python3-rbd-17.2.7-1643.gd75f2382.el9. 2.6 MB/s | 295 kB 00:00 2024-09-15T03:07:53.170 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:07:53.233 INFO:teuthology.orchestra.run.smithi096.stdout:(14/24): librabbitmq-0.11.0-7.el9.x86_64.rpm 452 kB/s | 45 kB 00:00 2024-09-15T03:07:53.250 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 3/26 2024-09-15T03:07:53.258 INFO:teuthology.orchestra.run.smithi096.stdout:(15/24): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.0 MB/s | 160 kB 00:00 2024-09-15T03:07:53.278 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:07:53.325 INFO:teuthology.orchestra.run.smithi096.stdout:(16/24): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.1 MB/s | 292 kB 00:00 2024-09-15T03:07:53.352 INFO:teuthology.orchestra.run.smithi096.stdout:(17/24): python3-prettytable-0.7.2-27.el9.noarc 460 kB/s | 42 kB 00:00 2024-09-15T03:07:53.352 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:07:53.401 INFO:teuthology.orchestra.run.smithi096.stdout:(18/24): librdkafka-1.6.1-102.el9.x86_64.rpm 2.7 MB/s | 662 kB 00:00 2024-09-15T03:07:53.405 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : thrift-0.15.0-2.el9.x86_64 5/26 2024-09-15T03:07:53.433 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 6/26 2024-09-15T03:07:53.434 INFO:teuthology.orchestra.run.smithi096.stdout:(19/24): liboath-2.6.7-2.el9.x86_64.rpm 581 kB/s | 49 kB 00:00 2024-09-15T03:07:53.469 INFO:teuthology.orchestra.run.smithi096.stdout:(20/24): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.1 MB/s | 308 kB 00:00 2024-09-15T03:07:53.493 INFO:teuthology.orchestra.run.smithi096.stdout:(21/24): libunwind-1.6.2-1.el9.x86_64.rpm 748 kB/s | 67 kB 00:00 2024-09-15T03:07:53.543 INFO:teuthology.orchestra.run.smithi096.stdout:(22/24): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-15T03:07:53.606 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:07:53.652 INFO:teuthology.orchestra.run.smithi096.stdout:(23/24): librados2-17.2.7-1643.gd75f2382.el9.x8 19 MB/s | 3.1 MB 00:00 2024-09-15T03:07:53.877 INFO:teuthology.orchestra.run.smithi096.stdout:(24/24): librbd1-17.2.7-1643.gd75f2382.el9.x86_ 7.7 MB/s | 2.9 MB 00:00 2024-09-15T03:07:53.882 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:07:53.883 INFO:teuthology.orchestra.run.smithi096.stdout:Total 22 MB/s | 58 MB 00:02 2024-09-15T03:07:53.897 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 7/26 2024-09-15T03:07:53.922 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 8/26 2024-09-15T03:07:53.948 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:07:53.968 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 8/26 2024-09-15T03:07:53.977 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/26 2024-09-15T03:07:53.981 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:07:53.981 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:07:54.005 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : liboath-2.6.7-2.el9.x86_64 9/26 2024-09-15T03:07:54.041 INFO:teuthology.orchestra.run.smithi187.stdout: Upgrading : librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:07:54.048 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9. 10/26 2024-09-15T03:07:54.086 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 11/26 2024-09-15T03:07:54.125 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:07:54.149 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 12/26 2024-09-15T03:07:54.175 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 13/26 2024-09-15T03:07:54.204 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 3/26 2024-09-15T03:07:54.226 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:07:54.241 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 13/26 2024-09-15T03:07:54.292 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/26 2024-09-15T03:07:54.317 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:07:54.325 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/26 2024-09-15T03:07:54.366 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 16/26 2024-09-15T03:07:54.371 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : thrift-0.15.0-2.el9.x86_64 5/26 2024-09-15T03:07:54.409 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 6/26 2024-09-15T03:07:54.657 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:07:54.658 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:07:54.675 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 17/26 2024-09-15T03:07:54.720 INFO:teuthology.orchestra.run.smithi032.stdout: Upgrading : librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 18/26 2024-09-15T03:07:54.795 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 18/26 2024-09-15T03:07:54.844 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 7/26 2024-09-15T03:07:54.864 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 8/26 2024-09-15T03:07:54.871 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 19/26 2024-09-15T03:07:54.906 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x8 20/26 2024-09-15T03:07:54.927 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 8/26 2024-09-15T03:07:54.964 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : liboath-2.6.7-2.el9.x86_64 9/26 2024-09-15T03:07:55.007 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9. 10/26 2024-09-15T03:07:55.044 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 11/26 2024-09-15T03:07:55.106 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 12/26 2024-09-15T03:07:55.134 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 13/26 2024-09-15T03:07:55.200 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 13/26 2024-09-15T03:07:55.239 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/26 2024-09-15T03:07:55.300 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/26 2024-09-15T03:07:55.333 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 16/26 2024-09-15T03:07:55.626 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 17/26 2024-09-15T03:07:55.662 INFO:teuthology.orchestra.run.smithi187.stdout: Upgrading : librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 18/26 2024-09-15T03:07:55.752 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 18/26 2024-09-15T03:07:55.827 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 19/26 2024-09-15T03:07:55.865 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x8 20/26 2024-09-15T03:07:55.893 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:07:56.271 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/26 2024-09-15T03:07:56.338 INFO:teuthology.orchestra.run.smithi096.stdout: Upgrading : librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:07:56.429 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:07:56.508 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 3/26 2024-09-15T03:07:56.548 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:07:56.635 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:07:56.691 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : thrift-0.15.0-2.el9.x86_64 5/26 2024-09-15T03:07:56.728 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 6/26 2024-09-15T03:07:57.172 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 7/26 2024-09-15T03:07:57.201 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 8/26 2024-09-15T03:07:57.263 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 8/26 2024-09-15T03:07:57.292 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : liboath-2.6.7-2.el9.x86_64 9/26 2024-09-15T03:07:57.336 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9. 10/26 2024-09-15T03:07:57.372 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 11/26 2024-09-15T03:07:57.434 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 12/26 2024-09-15T03:07:57.441 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:07:57.462 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 13/26 2024-09-15T03:07:57.485 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:07:57.527 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 13/26 2024-09-15T03:07:57.578 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/26 2024-09-15T03:07:57.612 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 15/26 2024-09-15T03:07:57.654 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 16/26 2024-09-15T03:07:57.954 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 17/26 2024-09-15T03:07:57.999 INFO:teuthology.orchestra.run.smithi096.stdout: Upgrading : librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 18/26 2024-09-15T03:07:58.034 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:07:58.071 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 22/26 2024-09-15T03:07:58.089 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 18/26 2024-09-15T03:07:58.163 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 19/26 2024-09-15T03:07:58.178 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 22/26 2024-09-15T03:07:58.178 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-15T03:07:58.178 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-15T03:07:58.178 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:07:58.193 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x8 20/26 2024-09-15T03:07:58.214 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:07:58.338 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:07:58.369 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:07:58.899 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:07:58.947 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 22/26 2024-09-15T03:07:59.048 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 22/26 2024-09-15T03:07:59.048 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-15T03:07:59.049 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-15T03:07:59.049 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:07:59.090 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:00.616 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:08:00.657 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:08:01.193 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 21/26 2024-09-15T03:08:01.227 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 22/26 2024-09-15T03:08:01.308 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 22/26 2024-09-15T03:08:01.309 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-15T03:08:01.309 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-15T03:08:01.309 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:01.337 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:08.602 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /sys 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /proc 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /mnt 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /var/tmp 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /home 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /root 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout:skipping the directory /tmp 2024-09-15T03:08:08.603 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /sys 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /proc 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /mnt 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /var/tmp 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /home 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /root 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout:skipping the directory /tmp 2024-09-15T03:08:08.859 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:09.971 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 24/26 2024-09-15T03:08:10.051 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 24/26 2024-09-15T03:08:10.051 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:10.051 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-15T03:08:10.052 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-15T03:08:10.052 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-15T03:08:10.052 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:10.053 INFO:teuthology.orchestra.run.smithi032.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-15T03:08:10.141 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-15T03:08:10.141 INFO:teuthology.orchestra.run.smithi032.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:10.163 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 24/26 2024-09-15T03:08:10.242 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 24/26 2024-09-15T03:08:10.242 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:10.242 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-15T03:08:10.242 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-15T03:08:10.242 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-15T03:08:10.242 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:10.243 INFO:teuthology.orchestra.run.smithi187.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-15T03:08:10.332 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-15T03:08:10.332 INFO:teuthology.orchestra.run.smithi187.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /sys 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /proc 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /mnt 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /var/tmp 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /home 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /root 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout:skipping the directory /tmp 2024-09-15T03:08:10.980 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:11.399 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:11.400 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 1/26 2024-09-15T03:08:11.400 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:08:11.400 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 3/26 2024-09-15T03:08:11.400 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:08:11.400 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 5/26 2024-09-15T03:08:11.400 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 6/26 2024-09-15T03:08:11.401 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 7/26 2024-09-15T03:08:11.401 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9. 8/26 2024-09-15T03:08:11.401 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x8 9/26 2024-09-15T03:08:11.401 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 10/26 2024-09-15T03:08:11.401 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 11/26 2024-09-15T03:08:11.401 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 12/26 2024-09-15T03:08:11.402 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 13/26 2024-09-15T03:08:11.402 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 14/26 2024-09-15T03:08:11.402 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 15/26 2024-09-15T03:08:11.402 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 16/26 2024-09-15T03:08:11.402 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 17/26 2024-09-15T03:08:11.402 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 18/26 2024-09-15T03:08:11.403 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 19/26 2024-09-15T03:08:11.403 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 20/26 2024-09-15T03:08:11.403 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 21/26 2024-09-15T03:08:11.403 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 22/26 2024-09-15T03:08:11.403 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:11.403 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 24/26 2024-09-15T03:08:11.404 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 25/26 2024-09-15T03:08:11.620 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:11.620 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 1/26 2024-09-15T03:08:11.620 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:08:11.620 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 3/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 5/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 6/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 7/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9. 8/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x8 9/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 10/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 11/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 12/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 13/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 14/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 15/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 16/26 2024-09-15T03:08:11.621 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 17/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 18/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 19/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 20/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 21/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 22/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 24/26 2024-09-15T03:08:11.622 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 25/26 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout:Upgraded: 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.097 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-15T03:08:12.098 INFO:teuthology.orchestra.run.smithi032.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:12.099 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:12.325 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 24/26 2024-09-15T03:08:12.390 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:12.390 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:12.390 INFO:teuthology.orchestra.run.smithi187.stdout:Upgraded: 2024-09-15T03:08:12.390 INFO:teuthology.orchestra.run.smithi187.stdout: librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.390 INFO:teuthology.orchestra.run.smithi187.stdout: librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.390 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.391 INFO:teuthology.orchestra.run.smithi187.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:12.392 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:12.400 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-test 2024-09-15T03:08:12.404 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 24/26 2024-09-15T03:08:12.404 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:12.404 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-15T03:08:12.404 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-15T03:08:12.405 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-15T03:08:12.405 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:12.406 INFO:teuthology.orchestra.run.smithi096.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-15T03:08:12.495 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 25/26 2024-09-15T03:08:12.495 INFO:teuthology.orchestra.run.smithi096.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:12.777 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-test 2024-09-15T03:08:12.991 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:27 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:13.132 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:13.132 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:13.133 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:08:13.133 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:13.133 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:08:13.133 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-test x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 48 M 2024-09-15T03:08:13.133 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:08:13.133 INFO:teuthology.orchestra.run.smithi032.stdout: libcephsqlite x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 163 k 2024-09-15T03:08:13.134 INFO:teuthology.orchestra.run.smithi032.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-15T03:08:13.134 INFO:teuthology.orchestra.run.smithi032.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-15T03:08:13.134 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:13.134 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:08:13.134 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:13.134 INFO:teuthology.orchestra.run.smithi032.stdout:Install 4 Packages 2024-09-15T03:08:13.135 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:13.136 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 48 M 2024-09-15T03:08:13.136 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 193 M 2024-09-15T03:08:13.136 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:08:13.351 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:00:27 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:13.462 INFO:teuthology.orchestra.run.smithi032.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.6 MB/s | 304 kB 00:00 2024-09-15T03:08:13.485 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:13.486 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:13.486 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:08:13.486 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:13.486 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:08:13.486 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-test x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 48 M 2024-09-15T03:08:13.486 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout: libcephsqlite x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 163 k 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout:Install 4 Packages 2024-09-15T03:08:13.487 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:13.488 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 48 M 2024-09-15T03:08:13.488 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 193 M 2024-09-15T03:08:13.488 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:08:13.501 INFO:teuthology.orchestra.run.smithi032.stdout:(2/4): libcephsqlite-17.2.7-1643.gd75f2382.el9. 722 kB/s | 163 kB 00:00 2024-09-15T03:08:13.529 INFO:teuthology.orchestra.run.smithi032.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 955 kB/s | 64 kB 00:00 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 1/26 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2/26 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 3/26 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 4/26 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 5/26 2024-09-15T03:08:13.749 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_6 6/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 7/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9. 8/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x8 9/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 10/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 11/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 12/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 13/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 14/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 15/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 16/26 2024-09-15T03:08:13.750 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 17/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 18/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 19/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 20/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 21/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 22/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 23/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 24/26 2024-09-15T03:08:13.751 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 25/26 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 26/26 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout:Upgraded: 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-radosgw-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-selinux-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.670 INFO:teuthology.orchestra.run.smithi096.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: libradosstriper1-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: librgw2-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ceph-argparse-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ceph-common-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-15T03:08:14.671 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.672 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.672 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:14.672 INFO:teuthology.orchestra.run.smithi096.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-15T03:08:14.672 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:14.672 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:14.945 INFO:teuthology.orchestra.run.smithi032.stdout:(4/4): ceph-test-17.2.7-1643.gd75f2382.el9.x86_ 29 MB/s | 48 MB 00:01 2024-09-15T03:08:14.947 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:14.948 INFO:teuthology.orchestra.run.smithi032.stdout:Total 27 MB/s | 48 MB 00:01 2024-09-15T03:08:14.976 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:08:14.997 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:08:14.997 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:08:15.059 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-test 2024-09-15T03:08:15.383 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:08:15.384 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:08:15.629 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:27 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:15.762 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-test x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 48 M 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout: libcephsqlite x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 163 k 2024-09-15T03:08:15.763 INFO:teuthology.orchestra.run.smithi096.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-15T03:08:15.764 INFO:teuthology.orchestra.run.smithi096.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-15T03:08:15.764 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:15.764 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:08:15.764 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:15.764 INFO:teuthology.orchestra.run.smithi096.stdout:Install 4 Packages 2024-09-15T03:08:15.764 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:15.765 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 48 M 2024-09-15T03:08:15.765 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 193 M 2024-09-15T03:08:15.765 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:08:15.942 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:08:16.021 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-15T03:08:16.034 INFO:teuthology.orchestra.run.smithi096.stdout:(1/4): libcephsqlite-17.2.7-1643.gd75f2382.el9. 746 kB/s | 163 kB 00:00 2024-09-15T03:08:16.062 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-15T03:08:16.085 INFO:teuthology.orchestra.run.smithi096.stdout:(2/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.1 MB/s | 304 kB 00:00 2024-09-15T03:08:16.089 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 3/4 2024-09-15T03:08:16.185 INFO:teuthology.orchestra.run.smithi096.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 423 kB/s | 64 kB 00:00 2024-09-15T03:08:16.905 INFO:teuthology.orchestra.run.smithi187.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 2.3 MB/s | 304 kB 00:00 2024-09-15T03:08:16.947 INFO:teuthology.orchestra.run.smithi187.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-09-15T03:08:17.039 INFO:teuthology.orchestra.run.smithi187.stdout:(3/4): libcephsqlite-17.2.7-1643.gd75f2382.el9. 619 kB/s | 163 kB 00:00 2024-09-15T03:08:17.294 INFO:teuthology.orchestra.run.smithi096.stdout:(4/4): ceph-test-17.2.7-1643.gd75f2382.el9.x86_ 32 MB/s | 48 MB 00:01 2024-09-15T03:08:17.296 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:17.297 INFO:teuthology.orchestra.run.smithi096.stdout:Total 32 MB/s | 48 MB 00:01 2024-09-15T03:08:17.324 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:08:17.343 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:08:17.343 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:08:17.711 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:08:17.711 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:08:18.243 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:08:18.320 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-15T03:08:18.359 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-15T03:08:18.396 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 3/4 2024-09-15T03:08:18.406 INFO:teuthology.orchestra.run.smithi187.stdout:(4/4): ceph-test-17.2.7-1643.gd75f2382.el9.x86_ 29 MB/s | 48 MB 00:01 2024-09-15T03:08:18.408 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:18.408 INFO:teuthology.orchestra.run.smithi187.stdout:Total 9.8 MB/s | 48 MB 00:04 2024-09-15T03:08:18.436 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:08:18.455 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:08:18.456 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:08:18.820 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:08:18.821 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:08:19.335 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:08:19.419 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-15T03:08:19.468 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-15T03:08:19.491 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 3/4 2024-09-15T03:08:20.768 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 3/4 2024-09-15T03:08:20.840 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 4/4 2024-09-15T03:08:22.822 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 3/4 2024-09-15T03:08:22.893 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 4/4 2024-09-15T03:08:22.998 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 4/4 2024-09-15T03:08:22.998 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 1/4 2024-09-15T03:08:22.998 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 2/4 2024-09-15T03:08:22.998 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:23.288 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:23.674 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph 2024-09-15T03:08:23.874 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 3/4 2024-09-15T03:08:23.946 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 4/4 2024-09-15T03:08:24.261 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:39 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:24.401 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: ceph x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 6.5 k 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mds x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.1 M 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 1.4 M 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-modules-core noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 240 k 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mon x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 3.9 M 2024-09-15T03:08:24.404 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-osd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 15 M 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-collections 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-15T03:08:24.405 INFO:teuthology.orchestra.run.smithi032.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-15T03:08:24.406 INFO:teuthology.orchestra.run.smithi032.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout:Install 34 Packages 2024-09-15T03:08:24.407 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:24.408 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 27 M 2024-09-15T03:08:24.408 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 96 M 2024-09-15T03:08:24.408 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:08:24.828 INFO:teuthology.orchestra.run.smithi032.stdout:(1/34): ceph-17.2.7-1643.gd75f2382.el9.x86_64.r 49 kB/s | 6.5 kB 00:00 2024-09-15T03:08:25.003 INFO:teuthology.orchestra.run.smithi032.stdout:(2/34): ceph-mds-17.2.7-1643.gd75f2382.el9.x86_ 6.7 MB/s | 2.1 MB 00:00 2024-09-15T03:08:25.045 INFO:teuthology.orchestra.run.smithi032.stdout:(3/34): ceph-mgr-17.2.7-1643.gd75f2382.el9.x86_ 4.0 MB/s | 1.4 MB 00:00 2024-09-15T03:08:25.090 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 4/4 2024-09-15T03:08:25.090 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 1/4 2024-09-15T03:08:25.090 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 2/4 2024-09-15T03:08:25.090 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-15T03:08:25.112 INFO:teuthology.orchestra.run.smithi032.stdout:(4/34): ceph-mgr-modules-core-17.2.7-1643.gd75f 3.5 MB/s | 240 kB 00:00 2024-09-15T03:08:25.204 INFO:teuthology.orchestra.run.smithi032.stdout:(5/34): ceph-mon-17.2.7-1643.gd75f2382.el9.x86_ 10 MB/s | 3.9 MB 00:00 2024-09-15T03:08:25.362 INFO:teuthology.orchestra.run.smithi032.stdout:(6/34): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.0 MB/s | 253 kB 00:00 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:25.382 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:25.538 INFO:teuthology.orchestra.run.smithi032.stdout:(7/34): ceph-osd-17.2.7-1643.gd75f2382.el9.x86_ 29 MB/s | 15 MB 00:00 2024-09-15T03:08:25.563 INFO:teuthology.orchestra.run.smithi032.stdout:(8/34): python3-ply-3.11-14.el9.noarch.rpm 532 kB/s | 106 kB 00:00 2024-09-15T03:08:25.605 INFO:teuthology.orchestra.run.smithi032.stdout:(9/34): python3-cryptography-36.0.1-4.el9.x86_6 3.1 MB/s | 1.2 MB 00:00 2024-09-15T03:08:25.630 INFO:teuthology.orchestra.run.smithi032.stdout:(10/34): python3-requests-2.25.1-8.el9.noarch.r 1.8 MB/s | 125 kB 00:00 2024-09-15T03:08:25.664 INFO:teuthology.orchestra.run.smithi032.stdout:(11/34): python3-urllib3-1.26.5-6.el9.noarch.rp 3.6 MB/s | 215 kB 00:00 2024-09-15T03:08:25.679 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph 2024-09-15T03:08:25.714 INFO:teuthology.orchestra.run.smithi032.stdout:(12/34): python3-pycparser-2.20-6.el9.noarch.rp 769 kB/s | 135 kB 00:00 2024-09-15T03:08:25.789 INFO:teuthology.orchestra.run.smithi032.stdout:(13/34): python3-markupsafe-1.1.1-12.el9.x86_64 277 kB/s | 35 kB 00:00 2024-09-15T03:08:25.823 INFO:teuthology.orchestra.run.smithi032.stdout:(14/34): python3-mako-1.1.4-6.el9.noarch.rpm 896 kB/s | 172 kB 00:00 2024-09-15T03:08:25.857 INFO:teuthology.orchestra.run.smithi032.stdout:(15/34): python3-packaging-20.9-5.el9.noarch.rp 542 kB/s | 77 kB 00:00 2024-09-15T03:08:25.882 INFO:teuthology.orchestra.run.smithi032.stdout:(16/34): python3-pytz-2021.1-5.el9.noarch.rpm 551 kB/s | 51 kB 00:00 2024-09-15T03:08:25.907 INFO:teuthology.orchestra.run.smithi032.stdout:(17/34): python3-toml-0.10.2-6.el9.noarch.rpm 495 kB/s | 42 kB 00:00 2024-09-15T03:08:25.957 INFO:teuthology.orchestra.run.smithi032.stdout:(18/34): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 432 kB/s | 43 kB 00:00 2024-09-15T03:08:25.983 INFO:teuthology.orchestra.run.smithi032.stdout:(19/34): python3-jaraco-8.2.1-3.el9.noarch.rpm 464 kB/s | 11 kB 00:00 2024-09-15T03:08:26.008 INFO:teuthology.orchestra.run.smithi032.stdout:(20/34): python3-jaraco-classes-3.2.1-5.el9.noa 710 kB/s | 18 kB 00:00 2024-09-15T03:08:26.033 INFO:teuthology.orchestra.run.smithi032.stdout:(21/34): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-09-15T03:08:26.058 INFO:teuthology.orchestra.run.smithi032.stdout:(22/34): python3-jaraco-collections-3.0.0-8.el9 463 kB/s | 23 kB 00:00 2024-09-15T03:08:26.084 INFO:teuthology.orchestra.run.smithi032.stdout:(23/34): python3-jaraco-functools-3.5.0-2.el9.n 389 kB/s | 19 kB 00:00 2024-09-15T03:08:26.109 INFO:teuthology.orchestra.run.smithi032.stdout:(24/34): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-15T03:08:26.134 INFO:teuthology.orchestra.run.smithi032.stdout:(25/34): python3-logutils-0.3.5-21.el9.noarch.r 924 kB/s | 46 kB 00:00 2024-09-15T03:08:26.159 INFO:teuthology.orchestra.run.smithi032.stdout:(26/34): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-15T03:08:26.185 INFO:teuthology.orchestra.run.smithi032.stdout:(27/34): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-09-15T03:08:26.188 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 4/4 2024-09-15T03:08:26.188 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 1/4 2024-09-15T03:08:26.188 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 2/4 2024-09-15T03:08:26.188 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-15T03:08:26.210 INFO:teuthology.orchestra.run.smithi032.stdout:(28/34): python3-portend-3.1.0-2.el9.noarch.rpm 326 kB/s | 16 kB 00:00 2024-09-15T03:08:26.227 INFO:teuthology.orchestra.run.smithi032.stdout:(29/34): python3-tempora-5.0.0-2.el9.noarch.rpm 2.1 MB/s | 36 kB 00:00 2024-09-15T03:08:26.252 INFO:teuthology.orchestra.run.smithi032.stdout:(30/34): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.3 MB/s | 90 kB 00:00 2024-09-15T03:08:26.256 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:38 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:26.286 INFO:teuthology.orchestra.run.smithi032.stdout:(31/34): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-09-15T03:08:26.303 INFO:teuthology.orchestra.run.smithi032.stdout:(32/34): python3-zc-lockfile-2.0-10.el9.noarch. 1.2 MB/s | 20 kB 00:00 2024-09-15T03:08:26.328 INFO:teuthology.orchestra.run.smithi032.stdout:(33/34): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-15T03:08:26.361 INFO:teuthology.orchestra.run.smithi032.stdout:(34/34): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-09-15T03:08:26.366 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:26.366 INFO:teuthology.orchestra.run.smithi032.stdout:Total 14 MB/s | 27 MB 00:01 2024-09-15T03:08:26.392 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:26.394 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:26.394 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:08:26.394 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: ceph x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 6.5 k 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mds x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.1 M 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 1.4 M 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-modules-core noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 240 k 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mon x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 3.9 M 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-osd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 15 M 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-15T03:08:26.395 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-collections 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-15T03:08:26.396 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-15T03:08:26.397 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout:Install 34 Packages 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 27 M 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 96 M 2024-09-15T03:08:26.398 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:08:26.503 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-test-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: libcephsqlite-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:26.509 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:26.545 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:08:26.545 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:08:26.806 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph 2024-09-15T03:08:26.854 INFO:teuthology.orchestra.run.smithi096.stdout:(1/34): ceph-17.2.7-1643.gd75f2382.el9.x86_64.r 53 kB/s | 6.5 kB 00:00 2024-09-15T03:08:26.944 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:08:26.944 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:08:27.012 INFO:teuthology.orchestra.run.smithi096.stdout:(2/34): ceph-mgr-17.2.7-1643.gd75f2382.el9.x86_ 5.0 MB/s | 1.4 MB 00:00 2024-09-15T03:08:27.079 INFO:teuthology.orchestra.run.smithi096.stdout:(3/34): ceph-mds-17.2.7-1643.gd75f2382.el9.x86_ 5.9 MB/s | 2.1 MB 00:00 2024-09-15T03:08:27.188 INFO:teuthology.orchestra.run.smithi096.stdout:(4/34): ceph-mon-17.2.7-1643.gd75f2382.el9.x86_ 12 MB/s | 3.9 MB 00:00 2024-09-15T03:08:27.222 INFO:teuthology.orchestra.run.smithi096.stdout:(5/34): ceph-mgr-modules-core-17.2.7-1643.gd75f 1.7 MB/s | 240 kB 00:00 2024-09-15T03:08:27.378 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:00:41 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:27.405 INFO:teuthology.orchestra.run.smithi096.stdout:(6/34): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.1 MB/s | 253 kB 00:00 2024-09-15T03:08:27.514 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:27.516 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:27.516 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:08:27.516 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:27.516 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:08:27.516 INFO:teuthology.orchestra.run.smithi187.stdout: ceph x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 6.5 k 2024-09-15T03:08:27.516 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mds x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.1 M 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 1.4 M 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-modules-core noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 240 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mon x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 3.9 M 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-osd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 15 M 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-15T03:08:27.517 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-collections 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-15T03:08:27.518 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout:Install 34 Packages 2024-09-15T03:08:27.519 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:27.520 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 27 M 2024-09-15T03:08:27.520 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 96 M 2024-09-15T03:08:27.520 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:08:27.572 INFO:teuthology.orchestra.run.smithi096.stdout:(7/34): ceph-osd-17.2.7-1643.gd75f2382.el9.x86_ 27 MB/s | 15 MB 00:00 2024-09-15T03:08:27.597 INFO:teuthology.orchestra.run.smithi096.stdout:(8/34): python3-ply-3.11-14.el9.noarch.rpm 555 kB/s | 106 kB 00:00 2024-09-15T03:08:27.639 INFO:teuthology.orchestra.run.smithi096.stdout:(9/34): python3-cryptography-36.0.1-4.el9.x86_6 2.9 MB/s | 1.2 MB 00:00 2024-09-15T03:08:27.665 INFO:teuthology.orchestra.run.smithi096.stdout:(10/34): python3-requests-2.25.1-8.el9.noarch.r 1.8 MB/s | 125 kB 00:00 2024-09-15T03:08:27.707 INFO:teuthology.orchestra.run.smithi096.stdout:(11/34): python3-urllib3-1.26.5-6.el9.noarch.rp 3.1 MB/s | 215 kB 00:00 2024-09-15T03:08:27.732 INFO:teuthology.orchestra.run.smithi096.stdout:(12/34): python3-mako-1.1.4-6.el9.noarch.rpm 2.5 MB/s | 172 kB 00:00 2024-09-15T03:08:27.766 INFO:teuthology.orchestra.run.smithi096.stdout:(13/34): python3-pycparser-2.20-6.el9.noarch.rp 700 kB/s | 135 kB 00:00 2024-09-15T03:08:27.791 INFO:teuthology.orchestra.run.smithi096.stdout:(14/34): python3-markupsafe-1.1.1-12.el9.x86_64 415 kB/s | 35 kB 00:00 2024-09-15T03:08:27.816 INFO:teuthology.orchestra.run.smithi096.stdout:(15/34): python3-packaging-20.9-5.el9.noarch.rp 919 kB/s | 77 kB 00:00 2024-09-15T03:08:27.842 INFO:teuthology.orchestra.run.smithi096.stdout:(16/34): python3-pytz-2021.1-5.el9.noarch.rpm 676 kB/s | 51 kB 00:00 2024-09-15T03:08:27.867 INFO:teuthology.orchestra.run.smithi096.stdout:(17/34): python3-toml-0.10.2-6.el9.noarch.rpm 550 kB/s | 42 kB 00:00 2024-09-15T03:08:27.925 INFO:teuthology.orchestra.run.smithi096.stdout:(18/34): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 520 kB/s | 43 kB 00:00 2024-09-15T03:08:27.951 INFO:teuthology.orchestra.run.smithi096.stdout:(19/34): python3-jaraco-8.2.1-3.el9.noarch.rpm 460 kB/s | 11 kB 00:00 2024-09-15T03:08:27.976 INFO:teuthology.orchestra.run.smithi096.stdout:(20/34): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.3 MB/s | 172 kB 00:00 2024-09-15T03:08:28.001 INFO:teuthology.orchestra.run.smithi096.stdout:(21/34): python3-jaraco-classes-3.2.1-5.el9.noa 352 kB/s | 18 kB 00:00 2024-09-15T03:08:28.027 INFO:teuthology.orchestra.run.smithi096.stdout:(22/34): python3-jaraco-collections-3.0.0-8.el9 461 kB/s | 23 kB 00:00 2024-09-15T03:08:28.052 INFO:teuthology.orchestra.run.smithi096.stdout:(23/34): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-15T03:08:28.078 INFO:teuthology.orchestra.run.smithi096.stdout:(24/34): python3-jaraco-text-3.2.0-6.el9.noarch 389 kB/s | 20 kB 00:00 2024-09-15T03:08:28.103 INFO:teuthology.orchestra.run.smithi096.stdout:(25/34): python3-logutils-0.3.5-21.el9.noarch.r 913 kB/s | 46 kB 00:00 2024-09-15T03:08:28.128 INFO:teuthology.orchestra.run.smithi096.stdout:(26/34): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-15T03:08:28.153 INFO:teuthology.orchestra.run.smithi096.stdout:(27/34): python3-cherrypy-18.6.1-2.el9.noarch.r 1.2 MB/s | 358 kB 00:00 2024-09-15T03:08:28.179 INFO:teuthology.orchestra.run.smithi096.stdout:(28/34): python3-portend-3.1.0-2.el9.noarch.rpm 325 kB/s | 16 kB 00:00 2024-09-15T03:08:28.204 INFO:teuthology.orchestra.run.smithi096.stdout:(29/34): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-09-15T03:08:28.229 INFO:teuthology.orchestra.run.smithi096.stdout:(30/34): python3-tempora-5.0.0-2.el9.noarch.rpm 715 kB/s | 36 kB 00:00 2024-09-15T03:08:28.263 INFO:teuthology.orchestra.run.smithi096.stdout:(31/34): python3-pecan-1.4.2-3.el9.noarch.rpm 1.7 MB/s | 272 kB 00:00 2024-09-15T03:08:28.292 INFO:teuthology.orchestra.run.smithi096.stdout:(32/34): python3-zc-lockfile-2.0-10.el9.noarch. 701 kB/s | 20 kB 00:00 2024-09-15T03:08:28.325 INFO:teuthology.orchestra.run.smithi096.stdout:(33/34): python3-webob-1.8.8-2.el9.noarch.rpm 2.4 MB/s | 230 kB 00:00 2024-09-15T03:08:28.350 INFO:teuthology.orchestra.run.smithi096.stdout:(34/34): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.5 MB/s | 427 kB 00:00 2024-09-15T03:08:28.354 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:28.355 INFO:teuthology.orchestra.run.smithi096.stdout:Total 14 MB/s | 27 MB 00:01 2024-09-15T03:08:28.364 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:08:28.431 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/34 2024-09-15T03:08:28.455 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/34 2024-09-15T03:08:28.483 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:08:28.488 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/34 2024-09-15T03:08:28.520 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:08:28.521 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:08:28.585 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/34 2024-09-15T03:08:28.670 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/34 2024-09-15T03:08:28.717 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/34 2024-09-15T03:08:28.759 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/34 2024-09-15T03:08:28.789 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/34 2024-09-15T03:08:28.824 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/34 2024-09-15T03:08:28.857 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/34 2024-09-15T03:08:28.898 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/34 2024-09-15T03:08:28.909 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:08:28.910 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:08:28.941 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/34 2024-09-15T03:08:28.983 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/34 2024-09-15T03:08:29.032 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/34 2024-09-15T03:08:29.081 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-15T03:08:29.158 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 16/34 2024-09-15T03:08:29.312 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 17/34 2024-09-15T03:08:29.453 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 18/34 2024-09-15T03:08:29.504 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 19/34 2024-09-15T03:08:29.542 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 20/34 2024-09-15T03:08:29.601 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-ply-3.11-14.el9.noarch 21/34 2024-09-15T03:08:29.664 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 22/34 2024-09-15T03:08:29.861 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 23/34 2024-09-15T03:08:29.904 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 24/34 2024-09-15T03:08:29.986 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/34 2024-09-15T03:08:30.083 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 26/34 2024-09-15T03:08:30.119 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/34 2024-09-15T03:08:30.193 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:08:30.243 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 28/34 2024-09-15T03:08:30.262 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/34 2024-09-15T03:08:30.293 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/34 2024-09-15T03:08:30.335 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/34 2024-09-15T03:08:30.397 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9. 29/34 2024-09-15T03:08:30.426 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/34 2024-09-15T03:08:30.429 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 30/34 2024-09-15T03:08:30.457 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 30/34 2024-09-15T03:08:30.457 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:30.457 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-15T03:08:30.457 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-15T03:08:30.457 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-15T03:08:30.458 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:30.521 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/34 2024-09-15T03:08:30.571 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/34 2024-09-15T03:08:30.615 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/34 2024-09-15T03:08:30.645 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/34 2024-09-15T03:08:30.679 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/34 2024-09-15T03:08:30.713 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/34 2024-09-15T03:08:30.753 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/34 2024-09-15T03:08:30.788 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/34 2024-09-15T03:08:30.814 INFO:teuthology.orchestra.run.smithi187.stdout:(1/34): ceph-17.2.7-1643.gd75f2382.el9.x86_64.r 50 kB/s | 6.5 kB 00:00 2024-09-15T03:08:30.823 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/34 2024-09-15T03:08:30.871 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/34 2024-09-15T03:08:30.904 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-15T03:08:30.972 INFO:teuthology.orchestra.run.smithi187.stdout:(2/34): ceph-mgr-17.2.7-1643.gd75f2382.el9.x86_ 4.9 MB/s | 1.4 MB 00:00 2024-09-15T03:08:30.984 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 16/34 2024-09-15T03:08:31.022 INFO:teuthology.orchestra.run.smithi187.stdout:(3/34): ceph-mds-17.2.7-1643.gd75f2382.el9.x86_ 6.1 MB/s | 2.1 MB 00:00 2024-09-15T03:08:31.106 INFO:teuthology.orchestra.run.smithi187.stdout:(4/34): ceph-mgr-modules-core-17.2.7-1643.gd75f 2.8 MB/s | 240 kB 00:00 2024-09-15T03:08:31.132 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 17/34 2024-09-15T03:08:31.189 INFO:teuthology.orchestra.run.smithi187.stdout:(5/34): ceph-mon-17.2.7-1643.gd75f2382.el9.x86_ 10 MB/s | 3.9 MB 00:00 2024-09-15T03:08:31.211 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 18/34 2024-09-15T03:08:31.268 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 19/34 2024-09-15T03:08:31.312 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 20/34 2024-09-15T03:08:31.361 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-ply-3.11-14.el9.noarch 21/34 2024-09-15T03:08:31.416 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 22/34 2024-09-15T03:08:31.490 INFO:teuthology.orchestra.run.smithi187.stdout:(6/34): ceph-osd-17.2.7-1643.gd75f2382.el9.x86_ 30 MB/s | 15 MB 00:00 2024-09-15T03:08:31.515 INFO:teuthology.orchestra.run.smithi187.stdout:(7/34): python3-cffi-1.14.5-5.el9.x86_64.rpm 620 kB/s | 253 kB 00:00 2024-09-15T03:08:31.574 INFO:teuthology.orchestra.run.smithi187.stdout:(8/34): python3-pycparser-2.20-6.el9.noarch.rpm 2.3 MB/s | 135 kB 00:00 2024-09-15T03:08:31.609 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 23/34 2024-09-15T03:08:31.615 INFO:teuthology.orchestra.run.smithi187.stdout:(9/34): python3-cryptography-36.0.1-4.el9.x86_6 2.9 MB/s | 1.2 MB 00:00 2024-09-15T03:08:31.641 INFO:teuthology.orchestra.run.smithi187.stdout:(10/34): python3-requests-2.25.1-8.el9.noarch.r 1.8 MB/s | 125 kB 00:00 2024-09-15T03:08:31.663 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 24/34 2024-09-15T03:08:31.674 INFO:teuthology.orchestra.run.smithi187.stdout:(11/34): python3-urllib3-1.26.5-6.el9.noarch.rp 3.6 MB/s | 215 kB 00:00 2024-09-15T03:08:31.700 INFO:teuthology.orchestra.run.smithi187.stdout:(12/34): python3-ply-3.11-14.el9.noarch.rpm 509 kB/s | 106 kB 00:00 2024-09-15T03:08:31.725 INFO:teuthology.orchestra.run.smithi187.stdout:(13/34): python3-mako-1.1.4-6.el9.noarch.rpm 2.0 MB/s | 172 kB 00:00 2024-09-15T03:08:31.741 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/34 2024-09-15T03:08:31.750 INFO:teuthology.orchestra.run.smithi187.stdout:(14/34): python3-markupsafe-1.1.1-12.el9.x86_64 458 kB/s | 35 kB 00:00 2024-09-15T03:08:31.776 INFO:teuthology.orchestra.run.smithi187.stdout:(15/34): python3-pytz-2021.1-5.el9.noarch.rpm 1.0 MB/s | 51 kB 00:00 2024-09-15T03:08:31.801 INFO:teuthology.orchestra.run.smithi187.stdout:(16/34): python3-packaging-20.9-5.el9.noarch.rp 764 kB/s | 77 kB 00:00 2024-09-15T03:08:31.826 INFO:teuthology.orchestra.run.smithi187.stdout:(17/34): python3-toml-0.10.2-6.el9.noarch.rpm 553 kB/s | 42 kB 00:00 2024-09-15T03:08:31.837 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 26/34 2024-09-15T03:08:31.846 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 31/34 2024-09-15T03:08:31.876 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 31/34 2024-09-15T03:08:31.876 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:31.876 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-15T03:08:31.876 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-15T03:08:31.876 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-15T03:08:31.876 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:31.877 INFO:teuthology.orchestra.run.smithi187.stdout:(18/34): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 433 kB/s | 43 kB 00:00 2024-09-15T03:08:31.879 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/34 2024-09-15T03:08:31.902 INFO:teuthology.orchestra.run.smithi187.stdout:(19/34): python3-jaraco-8.2.1-3.el9.noarch.rpm 464 kB/s | 11 kB 00:00 2024-09-15T03:08:31.927 INFO:teuthology.orchestra.run.smithi187.stdout:(20/34): python3-jaraco-classes-3.2.1-5.el9.noa 716 kB/s | 18 kB 00:00 2024-09-15T03:08:31.952 INFO:teuthology.orchestra.run.smithi187.stdout:(21/34): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-09-15T03:08:31.977 INFO:teuthology.orchestra.run.smithi187.stdout:(22/34): python3-jaraco-collections-3.0.0-8.el9 460 kB/s | 23 kB 00:00 2024-09-15T03:08:32.000 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 28/34 2024-09-15T03:08:32.003 INFO:teuthology.orchestra.run.smithi187.stdout:(23/34): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-15T03:08:32.028 INFO:teuthology.orchestra.run.smithi187.stdout:(24/34): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-15T03:08:32.053 INFO:teuthology.orchestra.run.smithi187.stdout:(25/34): python3-logutils-0.3.5-21.el9.noarch.r 924 kB/s | 46 kB 00:00 2024-09-15T03:08:32.079 INFO:teuthology.orchestra.run.smithi187.stdout:(26/34): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-15T03:08:32.104 INFO:teuthology.orchestra.run.smithi187.stdout:(27/34): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-09-15T03:08:32.129 INFO:teuthology.orchestra.run.smithi187.stdout:(28/34): python3-portend-3.1.0-2.el9.noarch.rpm 327 kB/s | 16 kB 00:00 2024-09-15T03:08:32.152 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9. 29/34 2024-09-15T03:08:32.154 INFO:teuthology.orchestra.run.smithi187.stdout:(29/34): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-09-15T03:08:32.171 INFO:teuthology.orchestra.run.smithi187.stdout:(30/34): python3-tempora-5.0.0-2.el9.noarch.rpm 860 kB/s | 36 kB 00:00 2024-09-15T03:08:32.182 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 30/34 2024-09-15T03:08:32.196 INFO:teuthology.orchestra.run.smithi187.stdout:(31/34): python3-pecan-1.4.2-3.el9.noarch.rpm 1.9 MB/s | 272 kB 00:00 2024-09-15T03:08:32.206 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 30/34 2024-09-15T03:08:32.206 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:32.206 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-15T03:08:32.206 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-15T03:08:32.206 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-15T03:08:32.206 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:32.222 INFO:teuthology.orchestra.run.smithi187.stdout:(32/34): python3-zc-lockfile-2.0-10.el9.noarch. 803 kB/s | 20 kB 00:00 2024-09-15T03:08:32.247 INFO:teuthology.orchestra.run.smithi187.stdout:(33/34): python3-webob-1.8.8-2.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-09-15T03:08:32.272 INFO:teuthology.orchestra.run.smithi187.stdout:(34/34): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-09-15T03:08:32.277 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:32.277 INFO:teuthology.orchestra.run.smithi187.stdout:Total 5.7 MB/s | 27 MB 00:04 2024-09-15T03:08:32.280 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 32/34 2024-09-15T03:08:32.306 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 32/34 2024-09-15T03:08:32.307 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:32.307 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-15T03:08:32.307 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-15T03:08:32.307 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-15T03:08:32.307 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:32.410 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:08:32.447 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:08:32.448 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:08:32.531 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 33/34 2024-09-15T03:08:32.556 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 33/34 2024-09-15T03:08:32.557 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:32.557 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-15T03:08:32.557 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-15T03:08:32.557 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-15T03:08:32.557 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:32.622 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 34/34 2024-09-15T03:08:32.833 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:08:32.833 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:08:33.584 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 31/34 2024-09-15T03:08:33.612 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 31/34 2024-09-15T03:08:33.612 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:33.612 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-15T03:08:33.612 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-15T03:08:33.612 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-15T03:08:33.612 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:33.992 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 32/34 2024-09-15T03:08:34.017 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 32/34 2024-09-15T03:08:34.017 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:34.017 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-15T03:08:34.017 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-15T03:08:34.017 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-15T03:08:34.017 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:34.104 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:08:34.167 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/34 2024-09-15T03:08:34.199 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/34 2024-09-15T03:08:34.218 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 33/34 2024-09-15T03:08:34.240 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/34 2024-09-15T03:08:34.241 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 33/34 2024-09-15T03:08:34.242 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:34.242 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-15T03:08:34.242 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-15T03:08:34.242 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-15T03:08:34.242 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:34.253 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 34/34 2024-09-15T03:08:34.253 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 1/34 2024-09-15T03:08:34.253 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 2/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 3/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 4/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 5/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9. 6/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/34 2024-09-15T03:08:34.254 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 18/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 19/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 20/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 21/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 22/34 2024-09-15T03:08:34.255 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 23/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 24/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 25/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 26/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 27/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 28/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 29/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 30/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 31/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 32/34 2024-09-15T03:08:34.256 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 33/34 2024-09-15T03:08:34.307 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 34/34 2024-09-15T03:08:34.332 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/34 2024-09-15T03:08:34.402 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/34 2024-09-15T03:08:34.451 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 6/34 2024-09-15T03:08:34.498 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/34 2024-09-15T03:08:34.528 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/34 2024-09-15T03:08:34.562 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/34 2024-09-15T03:08:34.597 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/34 2024-09-15T03:08:34.636 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/34 2024-09-15T03:08:34.670 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/34 2024-09-15T03:08:34.714 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/34 2024-09-15T03:08:34.762 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/34 2024-09-15T03:08:34.794 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-15T03:08:34.866 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 16/34 2024-09-15T03:08:35.005 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 17/34 2024-09-15T03:08:35.166 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 34/34 2024-09-15T03:08:35.166 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:35.166 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:08:35.166 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:35.167 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:35.167 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:35.167 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:35.167 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:35.167 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:35.167 INFO:teuthology.orchestra.run.smithi032.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-15T03:08:35.168 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-15T03:08:35.168 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-15T03:08:35.168 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-15T03:08:35.168 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-15T03:08:35.168 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-15T03:08:35.168 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-15T03:08:35.169 INFO:teuthology.orchestra.run.smithi032.stdout: python3-ply-3.11-14.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-15T03:08:35.170 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:35.171 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:35.243 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 18/34 2024-09-15T03:08:35.296 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 19/34 2024-09-15T03:08:35.344 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 20/34 2024-09-15T03:08:35.393 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-ply-3.11-14.el9.noarch 21/34 2024-09-15T03:08:35.447 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 22/34 2024-09-15T03:08:35.511 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-base 2024-09-15T03:08:35.642 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 23/34 2024-09-15T03:08:35.689 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 24/34 2024-09-15T03:08:35.758 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/34 2024-09-15T03:08:35.847 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 26/34 2024-09-15T03:08:35.888 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/34 2024-09-15T03:08:36.002 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 28/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 34/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 1/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 2/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 3/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 4/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 5/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9. 6/34 2024-09-15T03:08:36.050 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/34 2024-09-15T03:08:36.051 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 18/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 19/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 20/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 21/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 22/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 23/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 24/34 2024-09-15T03:08:36.052 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 25/34 2024-09-15T03:08:36.053 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 26/34 2024-09-15T03:08:36.053 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 27/34 2024-09-15T03:08:36.053 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 28/34 2024-09-15T03:08:36.053 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 29/34 2024-09-15T03:08:36.054 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 30/34 2024-09-15T03:08:36.054 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 31/34 2024-09-15T03:08:36.054 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 32/34 2024-09-15T03:08:36.054 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 33/34 2024-09-15T03:08:36.099 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:51 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:36.150 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9. 29/34 2024-09-15T03:08:36.173 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 30/34 2024-09-15T03:08:36.191 INFO:teuthology.orchestra.run.smithi032.stdout:Package ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:08:36.199 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 30/34 2024-09-15T03:08:36.199 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:36.199 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-15T03:08:36.199 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-15T03:08:36.199 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-15T03:08:36.199 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:36.234 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:36.235 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:08:36.235 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:36.309 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install cephadm 2024-09-15T03:08:36.892 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:51 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 34/34 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:36.961 INFO:teuthology.orchestra.run.smithi096.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-15T03:08:36.962 INFO:teuthology.orchestra.run.smithi096.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-ply-3.11-14.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-15T03:08:36.963 INFO:teuthology.orchestra.run.smithi096.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-15T03:08:36.964 INFO:teuthology.orchestra.run.smithi096.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-15T03:08:36.964 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:36.964 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:37.029 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:37.029 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:37.029 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout: cephadm noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 83 k 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 83 k 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 375 k 2024-09-15T03:08:37.030 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:08:37.229 INFO:teuthology.orchestra.run.smithi032.stdout:cephadm-17.2.7-1643.gd75f2382.el9.noarch.rpm 416 kB/s | 83 kB 00:00 2024-09-15T03:08:37.230 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:37.230 INFO:teuthology.orchestra.run.smithi032.stdout:Total 413 kB/s | 83 kB 00:00 2024-09-15T03:08:37.230 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:08:37.236 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:08:37.236 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:08:37.237 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:08:37.238 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:08:37.320 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:08:37.402 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-base 2024-09-15T03:08:37.516 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 31/34 2024-09-15T03:08:37.544 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 31/34 2024-09-15T03:08:37.544 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:37.544 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-15T03:08:37.544 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-15T03:08:37.545 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-15T03:08:37.545 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:37.782 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:37.886 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:37.925 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 32/34 2024-09-15T03:08:37.949 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 32/34 2024-09-15T03:08:37.950 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:37.950 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-15T03:08:37.950 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-15T03:08:37.950 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-15T03:08:37.950 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:37.971 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:49 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:38.060 INFO:teuthology.orchestra.run.smithi096.stdout:Package ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:08:38.102 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:38.103 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:08:38.103 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:38.151 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 33/34 2024-09-15T03:08:38.169 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install cephadm 2024-09-15T03:08:38.175 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 33/34 2024-09-15T03:08:38.175 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:38.175 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-15T03:08:38.175 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-15T03:08:38.175 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-15T03:08:38.175 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:38.239 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 34/34 2024-09-15T03:08:38.242 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:38.481 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:38.481 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:38.481 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:08:38.482 INFO:teuthology.orchestra.run.smithi032.stdout: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:38.482 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:38.482 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:38.684 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-immutable-object-cache 2024-09-15T03:08:38.729 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:50 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:38.859 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout: cephadm noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 83 k 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:08:38.860 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:38.861 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:08:38.861 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:38.861 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 83 k 2024-09-15T03:08:38.861 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 375 k 2024-09-15T03:08:38.861 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:08:39.068 INFO:teuthology.orchestra.run.smithi096.stdout:cephadm-17.2.7-1643.gd75f2382.el9.noarch.rpm 399 kB/s | 83 kB 00:00 2024-09-15T03:08:39.069 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:39.069 INFO:teuthology.orchestra.run.smithi096.stdout:Total 395 kB/s | 83 kB 00:00 2024-09-15T03:08:39.069 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:08:39.074 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:08:39.075 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:08:39.076 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:08:39.077 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:08:39.157 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:08:39.270 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:54 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:39.408 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:39.409 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:39.409 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repo Size 2024-09-15T03:08:39.409 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:39.409 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-immutable-object-cache x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 137 k 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 137 k 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 379 k 2024-09-15T03:08:39.410 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:08:39.602 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:39.618 INFO:teuthology.orchestra.run.smithi032.stdout:ceph-immutable-object-cache-17.2.7-1643.gd75f23 660 kB/s | 137 kB 00:00 2024-09-15T03:08:39.619 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:39.619 INFO:teuthology.orchestra.run.smithi032.stdout:Total 655 kB/s | 137 kB 00:00 2024-09-15T03:08:39.619 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:08:39.627 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:08:39.627 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:08:39.688 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:08:39.689 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:08:39.705 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:39.839 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 34/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 1/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 2/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 3/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 4/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 5/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9. 6/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/34 2024-09-15T03:08:39.854 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 15/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 18/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 19/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 20/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 21/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 22/34 2024-09-15T03:08:39.855 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 23/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 24/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 25/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 26/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 27/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 28/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 29/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 30/34 2024-09-15T03:08:39.856 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 31/34 2024-09-15T03:08:39.857 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 32/34 2024-09-15T03:08:39.857 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 33/34 2024-09-15T03:08:39.911 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:39.937 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:39.937 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:39.937 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-15T03:08:39.938 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:40.055 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:40.294 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:40.294 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:40.295 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:08:40.295 INFO:teuthology.orchestra.run.smithi096.stdout: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:40.295 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:40.295 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:40.505 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-immutable-object-cache 2024-09-15T03:08:40.777 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 34/34 2024-09-15T03:08:40.777 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:40.777 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mds-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-modules-core-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mon-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-osd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-15T03:08:40.778 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ply-3.11-14.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-15T03:08:40.779 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:40.780 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:40.877 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:40.877 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:40.877 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:08:40.877 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:40.877 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:40.877 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:41.074 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:53 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:41.079 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-mgr 2024-09-15T03:08:41.162 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-base 2024-09-15T03:08:41.207 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:41.207 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:41.207 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repo Size 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-immutable-object-cache x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 137 k 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:08:41.208 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:41.209 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 137 k 2024-09-15T03:08:41.209 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 379 k 2024-09-15T03:08:41.209 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:08:41.400 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-immutable-object-cache-17.2.7-1643.gd75f23 720 kB/s | 137 kB 00:00 2024-09-15T03:08:41.400 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:41.401 INFO:teuthology.orchestra.run.smithi096.stdout:Total 713 kB/s | 137 kB 00:00 2024-09-15T03:08:41.401 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:08:41.409 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:08:41.409 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:08:41.465 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:08:41.466 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:08:41.612 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:08:41.667 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:56 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:41.701 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:41.727 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:41.727 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:41.727 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-15T03:08:41.727 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:41.729 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:00:55 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:41.760 INFO:teuthology.orchestra.run.smithi032.stdout:Package ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:08:41.804 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:41.805 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:08:41.805 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:41.818 INFO:teuthology.orchestra.run.smithi187.stdout:Package ceph-base-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:08:41.859 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:41.861 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:08:41.861 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:41.876 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-mgr-dashboard 2024-09-15T03:08:41.933 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install cephadm 2024-09-15T03:08:42.464 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:00:57 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:42.499 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:00:56 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:42.603 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:42.603 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-dashboard noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 3.4 M 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-grafana-dashboards noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 24 k 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-prometheus-alerts noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 15 k 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jwt noarch 2.4.0-1.el9 epel 41 k 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-15T03:08:42.604 INFO:teuthology.orchestra.run.smithi032.stdout:Installing weak dependencies: 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jwt+crypto noarch 2.4.0-1.el9 epel 9.0 k 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout:Install 7 Packages 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:42.605 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 3.7 M 2024-09-15T03:08:42.606 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 80 M 2024-09-15T03:08:42.606 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:08:42.631 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:42.632 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:42.632 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:08:42.632 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:42.632 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:08:42.632 INFO:teuthology.orchestra.run.smithi187.stdout: cephadm noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 83 k 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 83 k 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 375 k 2024-09-15T03:08:42.633 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:08:42.736 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:42.736 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:42.736 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:08:42.736 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:42.736 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:42.736 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:42.824 INFO:teuthology.orchestra.run.smithi187.stdout:cephadm-17.2.7-1643.gd75f2382.el9.noarch.rpm 432 kB/s | 83 kB 00:00 2024-09-15T03:08:42.825 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:42.825 INFO:teuthology.orchestra.run.smithi187.stdout:Total 429 kB/s | 83 kB 00:00 2024-09-15T03:08:42.825 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:08:42.830 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:08:42.830 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:08:42.832 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:08:42.833 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:08:42.908 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:08:42.946 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-mgr 2024-09-15T03:08:43.374 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:43.462 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:43.531 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:55 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:43.629 INFO:teuthology.orchestra.run.smithi096.stdout:Package ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:08:43.671 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:43.672 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:08:43.672 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:43.743 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-mgr-dashboard 2024-09-15T03:08:43.800 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:44.049 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:08:44.049 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:44.049 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:08:44.049 INFO:teuthology.orchestra.run.smithi187.stdout: cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:44.050 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:44.050 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:44.269 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-immutable-object-cache 2024-09-15T03:08:44.309 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:00:56 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:44.441 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:44.441 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-dashboard noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 3.4 M 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-grafana-dashboards noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 24 k 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-prometheus-alerts noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 15 k 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jwt noarch 2.4.0-1.el9 epel 41 k 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout:Installing weak dependencies: 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jwt+crypto noarch 2.4.0-1.el9 epel 9.0 k 2024-09-15T03:08:44.442 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout:Install 7 Packages 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 3.7 M 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 80 M 2024-09-15T03:08:44.443 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:08:44.850 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:00:58 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:44.987 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repo Size 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-immutable-object-cache x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 137 k 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:44.988 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:08:44.989 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:44.989 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 137 k 2024-09-15T03:08:44.989 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 379 k 2024-09-15T03:08:44.989 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:08:45.363 INFO:teuthology.orchestra.run.smithi096.stdout:(1/7): ceph-prometheus-alerts-17.2.7-1643.gd75f 47 kB/s | 15 kB 00:00 2024-09-15T03:08:45.388 INFO:teuthology.orchestra.run.smithi096.stdout:(2/7): ceph-grafana-dashboards-17.2.7-1643.gd75 72 kB/s | 24 kB 00:00 2024-09-15T03:08:45.388 INFO:teuthology.orchestra.run.smithi187.stdout:ceph-immutable-object-cache-17.2.7-1643.gd75f23 344 kB/s | 137 kB 00:00 2024-09-15T03:08:45.389 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:45.389 INFO:teuthology.orchestra.run.smithi187.stdout:Total 343 kB/s | 137 kB 00:00 2024-09-15T03:08:45.389 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:08:45.397 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:08:45.397 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:08:45.438 INFO:teuthology.orchestra.run.smithi096.stdout:(3/7): python3-jwt+crypto-2.4.0-1.el9.noarch.rp 120 kB/s | 9.0 kB 00:00 2024-09-15T03:08:45.455 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:08:45.455 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:08:45.464 INFO:teuthology.orchestra.run.smithi096.stdout:(4/7): python3-repoze-lru-0.7-16.el9.noarch.rpm 1.3 MB/s | 31 kB 00:00 2024-09-15T03:08:45.489 INFO:teuthology.orchestra.run.smithi096.stdout:(5/7): python3-jwt-2.4.0-1.el9.noarch.rpm 406 kB/s | 41 kB 00:00 2024-09-15T03:08:45.523 INFO:teuthology.orchestra.run.smithi096.stdout:(6/7): python3-routes-2.5.1-5.el9.noarch.rpm 3.1 MB/s | 188 kB 00:00 2024-09-15T03:08:45.605 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:08:45.664 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:45.689 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:45.689 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:08:45.689 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-15T03:08:45.689 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:46.523 INFO:teuthology.orchestra.run.smithi096.stdout:(7/7): ceph-mgr-dashboard-17.2.7-1643.gd75f2382 2.3 MB/s | 3.4 MB 00:01 2024-09-15T03:08:46.527 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:46.527 INFO:teuthology.orchestra.run.smithi096.stdout:Total 1.8 MB/s | 3.7 MB 00:02 2024-09-15T03:08:46.528 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:08:46.537 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:08:46.537 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:08:46.574 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382. 1/1 2024-09-15T03:08:46.574 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:46.574 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:08:46.574 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-immutable-object-cache-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:08:46.574 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:46.574 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:46.634 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:08:46.634 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:08:46.783 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-mgr 2024-09-15T03:08:46.938 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:08:47.007 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jwt-2.4.0-1.el9.noarch 1/7 2024-09-15T03:08:47.041 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jwt+crypto-2.4.0-1.el9.noarch 2/7 2024-09-15T03:08:47.087 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/7 2024-09-15T03:08:47.120 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/7 2024-09-15T03:08:47.149 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.n 5/7 2024-09-15T03:08:47.359 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:01 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:47.451 INFO:teuthology.orchestra.run.smithi187.stdout:Package ceph-mgr-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:08:47.494 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:47.495 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:08:47.495 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:47.561 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-mgr-dashboard 2024-09-15T03:08:48.125 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:02 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:48.145 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9. 6/7 2024-09-15T03:08:48.186 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 7/7 2024-09-15T03:08:48.257 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-dashboard noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 3.4 M 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:08:48.258 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-grafana-dashboards noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 24 k 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-prometheus-alerts noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 15 k 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jwt noarch 2.4.0-1.el9 epel 41 k 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout:Installing weak dependencies: 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jwt+crypto noarch 2.4.0-1.el9 epel 9.0 k 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout:Install 7 Packages 2024-09-15T03:08:48.259 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:48.260 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 3.7 M 2024-09-15T03:08:48.260 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 80 M 2024-09-15T03:08:48.260 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:08:48.716 INFO:teuthology.orchestra.run.smithi187.stdout:(1/7): ceph-grafana-dashboards-17.2.7-1643.gd75 61 kB/s | 24 kB 00:00 2024-09-15T03:08:48.741 INFO:teuthology.orchestra.run.smithi187.stdout:(2/7): ceph-prometheus-alerts-17.2.7-1643.gd75f 34 kB/s | 15 kB 00:00 2024-09-15T03:08:48.783 INFO:teuthology.orchestra.run.smithi187.stdout:(3/7): python3-jwt+crypto-2.4.0-1.el9.noarch.rp 135 kB/s | 9.0 kB 00:00 2024-09-15T03:08:48.809 INFO:teuthology.orchestra.run.smithi187.stdout:(4/7): python3-repoze-lru-0.7-16.el9.noarch.rpm 1.3 MB/s | 31 kB 00:00 2024-09-15T03:08:48.834 INFO:teuthology.orchestra.run.smithi187.stdout:(5/7): python3-jwt-2.4.0-1.el9.noarch.rpm 443 kB/s | 41 kB 00:00 2024-09-15T03:08:48.868 INFO:teuthology.orchestra.run.smithi187.stdout:(6/7): python3-routes-2.5.1-5.el9.noarch.rpm 3.1 MB/s | 188 kB 00:00 2024-09-15T03:08:49.250 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 7/7 2024-09-15T03:08:49.250 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9. 1/7 2024-09-15T03:08:49.250 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 2/7 2024-09-15T03:08:49.250 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.n 3/7 2024-09-15T03:08:49.250 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jwt+crypto-2.4.0-1.el9.noarch 4/7 2024-09-15T03:08:49.250 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jwt-2.4.0-1.el9.noarch 5/7 2024-09-15T03:08:49.251 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 6/7 2024-09-15T03:08:49.534 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 7/7 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jwt-2.4.0-1.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jwt+crypto-2.4.0-1.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:49.535 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:08:49.768 INFO:teuthology.orchestra.run.smithi187.stdout:(7/7): ceph-mgr-dashboard-17.2.7-1643.gd75f2382 2.3 MB/s | 3.4 MB 00:01 2024-09-15T03:08:49.769 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-15T03:08:49.772 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:49.772 INFO:teuthology.orchestra.run.smithi187.stdout:Total 2.4 MB/s | 3.7 MB 00:01 2024-09-15T03:08:49.773 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:08:49.782 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:08:49.782 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:08:49.871 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:08:49.871 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:08:50.181 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:08:50.236 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jwt-2.4.0-1.el9.noarch 1/7 2024-09-15T03:08:50.270 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jwt+crypto-2.4.0-1.el9.noarch 2/7 2024-09-15T03:08:50.315 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/7 2024-09-15T03:08:50.332 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:02 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:08:50.348 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/7 2024-09-15T03:08:50.385 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.n 5/7 2024-09-15T03:08:50.469 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:08:50.470 INFO:teuthology.orchestra.run.smithi096.stdout:======================================================================================= 2024-09-15T03:08:50.470 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:08:50.470 INFO:teuthology.orchestra.run.smithi096.stdout:======================================================================================= 2024-09-15T03:08:50.470 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-diskprediction-local noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 7.4 M 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-15T03:08:50.471 INFO:teuthology.orchestra.run.smithi096.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout:======================================================================================= 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout:Install 12 Packages 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 38 M 2024-09-15T03:08:50.472 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 212 M 2024-09-15T03:08:50.473 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:08:50.706 INFO:teuthology.orchestra.run.smithi096.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.0 MB/s | 191 kB 00:00 2024-09-15T03:08:50.787 INFO:teuthology.orchestra.run.smithi032.stdout:(1/7): ceph-prometheus-alerts-17.2.7-1643.gd75f 105 kB/s | 15 kB 00:00 2024-09-15T03:08:50.813 INFO:teuthology.orchestra.run.smithi032.stdout:(2/7): ceph-grafana-dashboards-17.2.7-1643.gd75 148 kB/s | 24 kB 00:00 2024-09-15T03:08:50.814 INFO:teuthology.orchestra.run.smithi096.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 302 kB/s | 33 kB 00:00 2024-09-15T03:08:50.848 INFO:teuthology.orchestra.run.smithi096.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.4 MB/s | 801 kB 00:00 2024-09-15T03:08:50.854 INFO:teuthology.orchestra.run.smithi032.stdout:(3/7): python3-jwt+crypto-2.4.0-1.el9.noarch.rp 135 kB/s | 9.0 kB 00:00 2024-09-15T03:08:50.880 INFO:teuthology.orchestra.run.smithi032.stdout:(4/7): python3-repoze-lru-0.7-16.el9.noarch.rpm 1.3 MB/s | 31 kB 00:00 2024-09-15T03:08:50.905 INFO:teuthology.orchestra.run.smithi032.stdout:(5/7): python3-jwt-2.4.0-1.el9.noarch.rpm 444 kB/s | 41 kB 00:00 2024-09-15T03:08:50.930 INFO:teuthology.orchestra.run.smithi032.stdout:(6/7): python3-routes-2.5.1-5.el9.noarch.rpm 3.7 MB/s | 188 kB 00:00 2024-09-15T03:08:50.999 INFO:teuthology.orchestra.run.smithi096.stdout:(4/12): ceph-mgr-diskprediction-local-17.2.7-16 16 MB/s | 7.4 MB 00:00 2024-09-15T03:08:51.024 INFO:teuthology.orchestra.run.smithi096.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 104 kB/s | 18 kB 00:00 2024-09-15T03:08:51.047 INFO:teuthology.orchestra.run.smithi032.stdout:(7/7): ceph-mgr-dashboard-17.2.7-1643.gd75f2382 8.4 MB/s | 3.4 MB 00:00 2024-09-15T03:08:51.051 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:51.052 INFO:teuthology.orchestra.run.smithi032.stdout:Total 443 kB/s | 3.7 MB 00:08 2024-09-15T03:08:51.052 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:08:51.063 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:08:51.063 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:08:51.124 INFO:teuthology.orchestra.run.smithi096.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 307 kB/s | 38 kB 00:00 2024-09-15T03:08:51.164 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:08:51.164 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:08:51.216 INFO:teuthology.orchestra.run.smithi096.stdout:(7/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 26 MB/s | 4.9 MB 00:00 2024-09-15T03:08:51.266 INFO:teuthology.orchestra.run.smithi096.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.7 MB/s | 245 kB 00:00 2024-09-15T03:08:51.325 INFO:teuthology.orchestra.run.smithi096.stdout:(9/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 5.9 MB/s | 3.0 MB 00:00 2024-09-15T03:08:51.376 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9. 6/7 2024-09-15T03:08:51.401 INFO:teuthology.orchestra.run.smithi096.stdout:(10/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 28 MB/s | 5.1 MB 00:00 2024-09-15T03:08:51.422 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 7/7 2024-09-15T03:08:51.426 INFO:teuthology.orchestra.run.smithi096.stdout:(11/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 1.5 MB/s | 250 kB 00:00 2024-09-15T03:08:51.507 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:08:51.565 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jwt-2.4.0-1.el9.noarch 1/7 2024-09-15T03:08:51.600 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jwt+crypto-2.4.0-1.el9.noarch 2/7 2024-09-15T03:08:51.649 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/7 2024-09-15T03:08:51.680 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/7 2024-09-15T03:08:51.709 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.n 5/7 2024-09-15T03:08:51.959 INFO:teuthology.orchestra.run.smithi096.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 26 MB/s | 16 MB 00:00 2024-09-15T03:08:51.960 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:51.960 INFO:teuthology.orchestra.run.smithi096.stdout:Total 26 MB/s | 38 MB 00:01 2024-09-15T03:08:52.313 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:08:52.339 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:08:52.340 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:08:52.444 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 7/7 2024-09-15T03:08:52.444 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9. 1/7 2024-09-15T03:08:52.444 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 2/7 2024-09-15T03:08:52.444 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.n 3/7 2024-09-15T03:08:52.444 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jwt+crypto-2.4.0-1.el9.noarch 4/7 2024-09-15T03:08:52.445 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jwt-2.4.0-1.el9.noarch 5/7 2024-09-15T03:08:52.445 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 6/7 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 7/7 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:52.722 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jwt-2.4.0-1.el9.noarch 2024-09-15T03:08:52.723 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jwt+crypto-2.4.0-1.el9.noarch 2024-09-15T03:08:52.723 INFO:teuthology.orchestra.run.smithi187.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-15T03:08:52.723 INFO:teuthology.orchestra.run.smithi187.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-15T03:08:52.723 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:52.723 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:08:52.761 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9. 6/7 2024-09-15T03:08:52.804 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 7/7 2024-09-15T03:08:52.842 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:08:52.842 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:08:52.931 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-15T03:08:53.492 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:07 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:08:53.604 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:08:53.625 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:08:53.626 INFO:teuthology.orchestra.run.smithi187.stdout:======================================================================================= 2024-09-15T03:08:53.626 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:08:53.626 INFO:teuthology.orchestra.run.smithi187.stdout:======================================================================================= 2024-09-15T03:08:53.626 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-diskprediction-local noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 7.4 M 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-15T03:08:53.627 INFO:teuthology.orchestra.run.smithi187.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-15T03:08:53.628 INFO:teuthology.orchestra.run.smithi187.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-15T03:08:53.628 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:53.628 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:08:53.628 INFO:teuthology.orchestra.run.smithi187.stdout:======================================================================================= 2024-09-15T03:08:53.628 INFO:teuthology.orchestra.run.smithi187.stdout:Install 12 Packages 2024-09-15T03:08:53.628 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:08:53.629 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 38 M 2024-09-15T03:08:53.629 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 212 M 2024-09-15T03:08:53.629 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:08:53.665 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-15T03:08:53.726 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-15T03:08:53.811 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 7/7 2024-09-15T03:08:53.812 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9. 1/7 2024-09-15T03:08:53.812 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarc 2/7 2024-09-15T03:08:53.812 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.n 3/7 2024-09-15T03:08:53.812 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jwt+crypto-2.4.0-1.el9.noarch 4/7 2024-09-15T03:08:53.812 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jwt-2.4.0-1.el9.noarch 5/7 2024-09-15T03:08:53.812 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 6/7 2024-09-15T03:08:53.822 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-15T03:08:53.858 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-15T03:08:54.059 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-15T03:08:54.076 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 7/7 2024-09-15T03:08:54.076 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:54.076 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-grafana-dashboards-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-dashboard-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-prometheus-alerts-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jwt-2.4.0-1.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jwt+crypto-2.4.0-1.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:54.077 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:08:54.091 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-15T03:08:54.168 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-15T03:08:54.272 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-15T03:08:54.811 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-15T03:08:54.860 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:09 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:08:54.928 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-15T03:08:54.999 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:08:55.000 INFO:teuthology.orchestra.run.smithi032.stdout:======================================================================================= 2024-09-15T03:08:55.000 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:08:55.000 INFO:teuthology.orchestra.run.smithi032.stdout:======================================================================================= 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-diskprediction-local noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 7.4 M 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-15T03:08:55.001 INFO:teuthology.orchestra.run.smithi032.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout:======================================================================================= 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout:Install 12 Packages 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:08:55.002 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 38 M 2024-09-15T03:08:55.003 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 212 M 2024-09-15T03:08:55.003 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:08:56.171 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-15T03:08:56.582 INFO:teuthology.orchestra.run.smithi032.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.6 MB/s | 191 kB 00:00 2024-09-15T03:08:56.640 INFO:teuthology.orchestra.run.smithi032.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 4.5 MB/s | 801 kB 00:00 2024-09-15T03:08:56.666 INFO:teuthology.orchestra.run.smithi032.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 393 kB/s | 33 kB 00:00 2024-09-15T03:08:56.708 INFO:teuthology.orchestra.run.smithi032.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 438 kB/s | 18 kB 00:00 2024-09-15T03:08:56.741 INFO:teuthology.orchestra.run.smithi032.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 1.1 MB/s | 38 kB 00:00 2024-09-15T03:08:56.883 INFO:teuthology.orchestra.run.smithi032.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 12 MB/s | 3.0 MB 00:00 2024-09-15T03:08:56.992 INFO:teuthology.orchestra.run.smithi032.stdout:(7/12): ceph-mgr-diskprediction-local-17.2.7-16 14 MB/s | 7.4 MB 00:00 2024-09-15T03:08:57.017 INFO:teuthology.orchestra.run.smithi032.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.8 MB/s | 245 kB 00:00 2024-09-15T03:08:57.093 INFO:teuthology.orchestra.run.smithi032.stdout:(9/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 14 MB/s | 4.9 MB 00:00 2024-09-15T03:08:57.126 INFO:teuthology.orchestra.run.smithi032.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 2.3 MB/s | 250 kB 00:00 2024-09-15T03:08:57.201 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-15T03:08:57.225 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 12/12 2024-09-15T03:08:57.393 INFO:teuthology.orchestra.run.smithi187.stdout:(1/12): ceph-mgr-diskprediction-local-17.2.7-16 16 MB/s | 7.4 MB 00:00 2024-09-15T03:08:57.434 INFO:teuthology.orchestra.run.smithi032.stdout:(11/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 48 MB/s | 16 MB 00:00 2024-09-15T03:08:57.460 INFO:teuthology.orchestra.run.smithi187.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 493 kB/s | 33 kB 00:00 2024-09-15T03:08:57.536 INFO:teuthology.orchestra.run.smithi187.stdout:(3/12): libquadmath-11.5.0-2.el9.x86_64.rpm 321 kB/s | 191 kB 00:00 2024-09-15T03:08:57.543 INFO:teuthology.orchestra.run.smithi032.stdout:(12/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 9.3 MB/s | 5.1 MB 00:00 2024-09-15T03:08:57.544 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:57.544 INFO:teuthology.orchestra.run.smithi032.stdout:Total 15 MB/s | 38 MB 00:02 2024-09-15T03:08:57.602 INFO:teuthology.orchestra.run.smithi187.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 274 kB/s | 18 kB 00:00 2024-09-15T03:08:57.661 INFO:teuthology.orchestra.run.smithi187.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 660 kB/s | 38 kB 00:00 2024-09-15T03:08:57.728 INFO:teuthology.orchestra.run.smithi187.stdout:(6/12): libgfortran-11.5.0-2.el9.x86_64.rpm 1.0 MB/s | 801 kB 00:00 2024-09-15T03:08:57.886 INFO:teuthology.orchestra.run.smithi187.stdout:(7/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 22 MB/s | 4.9 MB 00:00 2024-09-15T03:08:57.910 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:08:57.928 INFO:teuthology.orchestra.run.smithi187.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.2 MB/s | 245 kB 00:00 2024-09-15T03:08:57.937 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:08:57.937 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:08:58.004 INFO:teuthology.orchestra.run.smithi187.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 3.3 MB/s | 250 kB 00:00 2024-09-15T03:08:58.079 INFO:teuthology.orchestra.run.smithi187.stdout:(10/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 27 MB/s | 5.1 MB 00:00 2024-09-15T03:08:58.138 INFO:teuthology.orchestra.run.smithi187.stdout:(11/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rp 4.4 MB/s | 3.0 MB 00:00 2024-09-15T03:08:58.471 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:08:58.471 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:08:58.679 INFO:teuthology.orchestra.run.smithi187.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 24 MB/s | 16 MB 00:00 2024-09-15T03:08:58.680 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:08:58.680 INFO:teuthology.orchestra.run.smithi187.stdout:Total 7.6 MB/s | 38 MB 00:05 2024-09-15T03:08:59.032 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:08:59.058 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:08:59.058 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:08:59.266 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:08:59.347 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-15T03:08:59.394 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-15T03:08:59.495 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-15T03:08:59.542 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-15T03:08:59.567 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:08:59.567 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:08:59.733 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-15T03:08:59.766 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-15T03:08:59.825 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 12/12 2024-09-15T03:08:59.825 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 1/12 2024-09-15T03:08:59.825 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-15T03:08:59.825 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-15T03:08:59.825 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-15T03:08:59.826 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-15T03:08:59.845 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-15T03:09:00.209 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-15T03:09:00.209 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:00.209 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:00.209 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:00.209 INFO:teuthology.orchestra.run.smithi096.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:00.210 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:00.324 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:00.387 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-15T03:09:00.431 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-15T03:09:00.526 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-15T03:09:00.547 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-15T03:09:00.562 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-15T03:09:00.617 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-mgr-rook 2024-09-15T03:09:00.666 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-15T03:09:00.745 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-15T03:09:00.777 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-15T03:09:00.854 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-15T03:09:01.190 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:13 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:01.322 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:01.323 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:01.323 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:09:01.323 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:01.323 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-rook noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 47 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-15T03:09:01.324 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout:Install 13 Packages 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:01.325 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 2.2 M 2024-09-15T03:09:01.326 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 26 M 2024-09-15T03:09:01.326 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:01.485 INFO:teuthology.orchestra.run.smithi096.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 319 kB/s | 26 kB 00:00 2024-09-15T03:09:01.492 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-15T03:09:01.510 INFO:teuthology.orchestra.run.smithi096.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 181 kB/s | 19 kB 00:00 2024-09-15T03:09:01.552 INFO:teuthology.orchestra.run.smithi096.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 3.3 MB/s | 222 kB 00:00 2024-09-15T03:09:01.594 INFO:teuthology.orchestra.run.smithi096.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.9 MB/s | 159 kB 00:00 2024-09-15T03:09:01.611 INFO:teuthology.orchestra.run.smithi096.stdout:(5/13): ceph-mgr-rook-17.2.7-1643.gd75f2382.el9 230 kB/s | 47 kB 00:00 2024-09-15T03:09:01.614 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-15T03:09:01.661 INFO:teuthology.orchestra.run.smithi096.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 2.5 MB/s | 279 kB 00:00 2024-09-15T03:09:01.686 INFO:teuthology.orchestra.run.smithi096.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 580 kB/s | 54 kB 00:00 2024-09-15T03:09:01.737 INFO:teuthology.orchestra.run.smithi096.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 428 kB/s | 32 kB 00:00 2024-09-15T03:09:01.762 INFO:teuthology.orchestra.run.smithi096.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 140 kB/s | 14 kB 00:00 2024-09-15T03:09:01.787 INFO:teuthology.orchestra.run.smithi096.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.3 MB/s | 59 kB 00:00 2024-09-15T03:09:01.821 INFO:teuthology.orchestra.run.smithi096.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 1.6 MB/s | 220 kB 00:00 2024-09-15T03:09:01.846 INFO:teuthology.orchestra.run.smithi096.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.5 MB/s | 90 kB 00:00 2024-09-15T03:09:01.880 INFO:teuthology.orchestra.run.smithi096.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.2 MB/s | 1.0 MB 00:00 2024-09-15T03:09:01.883 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:01.883 INFO:teuthology.orchestra.run.smithi096.stdout:Total 4.0 MB/s | 2.2 MB 00:00 2024-09-15T03:09:01.947 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:01.962 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:01.962 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:01.985 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-15T03:09:02.049 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:02.051 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:02.554 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:02.730 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-15T03:09:02.781 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-15T03:09:02.846 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-15T03:09:02.858 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-15T03:09:02.882 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-15T03:09:02.923 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-15T03:09:03.027 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-15T03:09:03.069 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-15T03:09:03.098 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 12/12 2024-09-15T03:09:03.137 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-15T03:09:03.193 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-15T03:09:03.881 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-15T03:09:03.910 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 12/12 2024-09-15T03:09:03.931 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-15T03:09:03.998 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-15T03:09:04.031 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-15T03:09:04.077 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-15T03:09:04.101 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 13/13 2024-09-15T03:09:04.954 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 13/13 2024-09-15T03:09:04.954 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 1/13 2024-09-15T03:09:04.954 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-15T03:09:04.954 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-15T03:09:04.955 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-15T03:09:05.334 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-15T03:09:05.335 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-15T03:09:05.336 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-15T03:09:05.336 INFO:teuthology.orchestra.run.smithi096.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-15T03:09:05.336 INFO:teuthology.orchestra.run.smithi096.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-15T03:09:05.336 INFO:teuthology.orchestra.run.smithi096.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-15T03:09:05.336 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:05.336 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:05.597 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 12/12 2024-09-15T03:09:05.597 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 1/12 2024-09-15T03:09:05.597 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-15T03:09:05.597 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-15T03:09:05.597 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-15T03:09:05.598 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-15T03:09:05.601 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-mgr-cephadm 2024-09-15T03:09:06.017 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-15T03:09:06.018 INFO:teuthology.orchestra.run.smithi032.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-15T03:09:06.019 INFO:teuthology.orchestra.run.smithi032.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-15T03:09:06.019 INFO:teuthology.orchestra.run.smithi032.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-15T03:09:06.019 INFO:teuthology.orchestra.run.smithi032.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-15T03:09:06.019 INFO:teuthology.orchestra.run.smithi032.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-15T03:09:06.019 INFO:teuthology.orchestra.run.smithi032.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-15T03:09:06.020 INFO:teuthology.orchestra.run.smithi032.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-15T03:09:06.020 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:06.020 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:06.164 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:18 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:06.296 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-cephadm noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 124 k 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:09:06.297 INFO:teuthology.orchestra.run.smithi096.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout:Install 6 Packages 2024-09-15T03:09:06.298 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:06.299 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 7.0 M 2024-09-15T03:09:06.299 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 33 M 2024-09-15T03:09:06.299 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 12/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2 1/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-15T03:09:06.400 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-15T03:09:06.401 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-15T03:09:06.401 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-15T03:09:06.434 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-mgr-rook 2024-09-15T03:09:06.766 INFO:teuthology.orchestra.run.smithi096.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.3 MB/s | 248 kB 00:00 2024-09-15T03:09:06.805 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-15T03:09:06.805 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:06.805 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:06.805 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-diskprediction-local-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:06.805 INFO:teuthology.orchestra.run.smithi187.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-15T03:09:06.805 INFO:teuthology.orchestra.run.smithi187.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:06.806 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:06.808 INFO:teuthology.orchestra.run.smithi096.stdout:(2/6): ceph-mgr-cephadm-17.2.7-1643.gd75f2382.e 558 kB/s | 124 kB 00:00 2024-09-15T03:09:06.858 INFO:teuthology.orchestra.run.smithi096.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 5.8 MB/s | 548 kB 00:00 2024-09-15T03:09:06.884 INFO:teuthology.orchestra.run.smithi096.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 767 kB/s | 58 kB 00:00 2024-09-15T03:09:06.909 INFO:teuthology.orchestra.run.smithi096.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.5 MB/s | 74 kB 00:00 2024-09-15T03:09:07.029 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:22 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:07.051 INFO:teuthology.orchestra.run.smithi096.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 13 MB/s | 6.0 MB 00:00 2024-09-15T03:09:07.053 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:07.054 INFO:teuthology.orchestra.run.smithi096.stdout:Total 9.2 MB/s | 7.0 MB 00:00 2024-09-15T03:09:07.126 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:07.137 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:07.138 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:07.171 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:07.172 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:07.172 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:09:07.172 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:07.172 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:07.172 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-rook noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 47 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-15T03:09:07.173 INFO:teuthology.orchestra.run.smithi032.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout:Install 13 Packages 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 2.2 M 2024-09-15T03:09:07.174 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 26 M 2024-09-15T03:09:07.175 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:07.184 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-mgr-rook 2024-09-15T03:09:07.236 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:07.237 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:07.481 INFO:teuthology.orchestra.run.smithi032.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 211 kB/s | 26 kB 00:00 2024-09-15T03:09:07.506 INFO:teuthology.orchestra.run.smithi032.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 131 kB/s | 19 kB 00:00 2024-09-15T03:09:07.532 INFO:teuthology.orchestra.run.smithi032.stdout:(3/13): ceph-mgr-rook-17.2.7-1643.gd75f2382.el9 276 kB/s | 47 kB 00:00 2024-09-15T03:09:07.548 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:07.640 INFO:teuthology.orchestra.run.smithi032.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2024-09-15T03:09:07.674 INFO:teuthology.orchestra.run.smithi032.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.3 MB/s | 222 kB 00:00 2024-09-15T03:09:07.699 INFO:teuthology.orchestra.run.smithi032.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 913 kB/s | 54 kB 00:00 2024-09-15T03:09:07.708 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-15T03:09:07.741 INFO:teuthology.orchestra.run.smithi032.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.3 MB/s | 279 kB 00:00 2024-09-15T03:09:07.753 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:21 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:07.761 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-15T03:09:07.766 INFO:teuthology.orchestra.run.smithi032.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 349 kB/s | 32 kB 00:00 2024-09-15T03:09:07.808 INFO:teuthology.orchestra.run.smithi032.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 129 kB/s | 14 kB 00:00 2024-09-15T03:09:07.842 INFO:teuthology.orchestra.run.smithi032.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.8 MB/s | 59 kB 00:00 2024-09-15T03:09:07.867 INFO:teuthology.orchestra.run.smithi032.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.5 MB/s | 90 kB 00:00 2024-09-15T03:09:07.885 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-rook noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 47 k 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:09:07.887 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-15T03:09:07.888 INFO:teuthology.orchestra.run.smithi187.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout:Install 13 Packages 2024-09-15T03:09:07.889 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:07.890 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 2.2 M 2024-09-15T03:09:07.890 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 26 M 2024-09-15T03:09:07.890 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:07.892 INFO:teuthology.orchestra.run.smithi032.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.4 MB/s | 220 kB 00:00 2024-09-15T03:09:07.926 INFO:teuthology.orchestra.run.smithi032.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.8 MB/s | 1.0 MB 00:00 2024-09-15T03:09:07.928 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:07.928 INFO:teuthology.orchestra.run.smithi032.stdout:Total 2.9 MB/s | 2.2 MB 00:00 2024-09-15T03:09:07.993 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:08.009 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:08.009 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:08.103 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:08.104 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:08.283 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-15T03:09:08.372 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-15T03:09:08.410 INFO:teuthology.orchestra.run.smithi187.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 326 kB/s | 26 kB 00:00 2024-09-15T03:09:08.435 INFO:teuthology.orchestra.run.smithi187.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 185 kB/s | 19 kB 00:00 2024-09-15T03:09:08.437 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-15T03:09:08.465 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 6/6 2024-09-15T03:09:08.485 INFO:teuthology.orchestra.run.smithi187.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.9 MB/s | 222 kB 00:00 2024-09-15T03:09:08.519 INFO:teuthology.orchestra.run.smithi187.stdout:(4/13): ceph-mgr-rook-17.2.7-1643.gd75f2382.el9 253 kB/s | 47 kB 00:00 2024-09-15T03:09:08.544 INFO:teuthology.orchestra.run.smithi187.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-09-15T03:09:08.569 INFO:teuthology.orchestra.run.smithi187.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.3 MB/s | 279 kB 00:00 2024-09-15T03:09:08.612 INFO:teuthology.orchestra.run.smithi187.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 481 kB/s | 32 kB 00:00 2024-09-15T03:09:08.627 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:08.636 INFO:teuthology.orchestra.run.smithi187.stdout:(8/13): python3-requests-oauthlib-1.3.0-12.el9. 456 kB/s | 54 kB 00:00 2024-09-15T03:09:08.662 INFO:teuthology.orchestra.run.smithi187.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 165 kB/s | 14 kB 00:00 2024-09-15T03:09:08.695 INFO:teuthology.orchestra.run.smithi187.stdout:(10/13): python3-google-auth-2.34.0-1.el9.noarc 2.6 MB/s | 220 kB 00:00 2024-09-15T03:09:08.720 INFO:teuthology.orchestra.run.smithi187.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 1.1 MB/s | 59 kB 00:00 2024-09-15T03:09:08.737 INFO:teuthology.orchestra.run.smithi187.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 2.2 MB/s | 90 kB 00:00 2024-09-15T03:09:08.779 INFO:teuthology.orchestra.run.smithi187.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.2 MB/s | 1.0 MB 00:00 2024-09-15T03:09:08.782 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:08.782 INFO:teuthology.orchestra.run.smithi187.stdout:Total 2.5 MB/s | 2.2 MB 00:00 2024-09-15T03:09:08.806 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-15T03:09:08.843 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:08.858 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:08.858 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:08.862 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-15T03:09:08.918 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-15T03:09:08.947 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:08.947 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:08.953 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-15T03:09:08.996 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-15T03:09:09.110 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-15T03:09:09.221 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-15T03:09:09.264 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 6/6 2024-09-15T03:09:09.265 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/6 2024-09-15T03:09:09.265 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-15T03:09:09.265 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-15T03:09:09.265 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-15T03:09:09.265 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-15T03:09:09.272 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-15T03:09:09.463 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:09.548 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-15T03:09:09.548 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:09.548 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:09.549 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:09.636 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-15T03:09:09.688 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-15T03:09:09.744 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-15T03:09:09.781 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-15T03:09:09.782 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-fuse 2024-09-15T03:09:09.822 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-15T03:09:10.036 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-15T03:09:10.049 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-15T03:09:10.085 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-15T03:09:10.119 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-15T03:09:10.151 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-15T03:09:10.165 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-15T03:09:10.199 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-15T03:09:10.213 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 13/13 2024-09-15T03:09:10.342 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:22 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:10.474 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:10.474 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:10.474 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-fuse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 813 k 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout:Install 2 Packages 2024-09-15T03:09:10.475 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:10.476 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 893 k 2024-09-15T03:09:10.476 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 2.6 M 2024-09-15T03:09:10.476 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:10.880 INFO:teuthology.orchestra.run.smithi096.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 532 kB/s | 80 kB 00:00 2024-09-15T03:09:10.917 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-15T03:09:10.971 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-15T03:09:10.996 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 13/13 2024-09-15T03:09:10.996 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 1/13 2024-09-15T03:09:10.996 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-15T03:09:10.997 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-15T03:09:11.020 INFO:teuthology.orchestra.run.smithi096.stdout:(2/2): ceph-fuse-17.2.7-1643.gd75f2382.el9.x86_ 2.7 MB/s | 813 kB 00:00 2024-09-15T03:09:11.021 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:11.021 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-15T03:09:11.022 INFO:teuthology.orchestra.run.smithi096.stdout:Total 1.6 MB/s | 893 kB 00:00 2024-09-15T03:09:11.033 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:11.054 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:11.054 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:11.067 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-15T03:09:11.091 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 13/13 2024-09-15T03:09:11.131 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:11.132 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:11.315 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:11.324 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-15T03:09:11.324 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-15T03:09:11.325 INFO:teuthology.orchestra.run.smithi032.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-15T03:09:11.326 INFO:teuthology.orchestra.run.smithi032.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-15T03:09:11.326 INFO:teuthology.orchestra.run.smithi032.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-15T03:09:11.326 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:11.326 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:11.463 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-15T03:09:11.527 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2/2 2024-09-15T03:09:11.591 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-mgr-cephadm 2024-09-15T03:09:11.774 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 13/13 2024-09-15T03:09:11.774 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 1/13 2024-09-15T03:09:11.774 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-15T03:09:11.774 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-15T03:09:11.774 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-15T03:09:11.775 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-rook-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-15T03:09:12.094 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:12.095 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:12.185 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:27 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:12.235 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2/2 2024-09-15T03:09:12.236 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/2 2024-09-15T03:09:12.323 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-cephadm noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 124 k 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-15T03:09:12.324 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout:Install 6 Packages 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 7.0 M 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 33 M 2024-09-15T03:09:12.325 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:12.333 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-mgr-cephadm 2024-09-15T03:09:12.513 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-15T03:09:12.513 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:12.513 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:12.513 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-15T03:09:12.513 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:12.513 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:12.594 INFO:teuthology.orchestra.run.smithi032.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.1 MB/s | 248 kB 00:00 2024-09-15T03:09:12.619 INFO:teuthology.orchestra.run.smithi032.stdout:(2/6): ceph-mgr-cephadm-17.2.7-1643.gd75f2382.e 513 kB/s | 124 kB 00:00 2024-09-15T03:09:12.669 INFO:teuthology.orchestra.run.smithi032.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-15T03:09:12.686 INFO:teuthology.orchestra.run.smithi032.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 864 kB/s | 58 kB 00:00 2024-09-15T03:09:12.711 INFO:teuthology.orchestra.run.smithi032.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.7 MB/s | 74 kB 00:00 2024-09-15T03:09:12.799 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install ceph-volume 2024-09-15T03:09:12.902 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:26 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:13.035 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-cephadm noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 124 k 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-15T03:09:13.036 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:13.037 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:13.037 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:13.037 INFO:teuthology.orchestra.run.smithi187.stdout:Install 6 Packages 2024-09-15T03:09:13.037 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:13.037 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 7.0 M 2024-09-15T03:09:13.037 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 33 M 2024-09-15T03:09:13.038 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:13.245 INFO:teuthology.orchestra.run.smithi032.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 6.9 MB/s | 6.0 MB 00:00 2024-09-15T03:09:13.247 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:13.248 INFO:teuthology.orchestra.run.smithi032.stdout:Total 7.6 MB/s | 7.0 MB 00:00 2024-09-15T03:09:13.321 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:13.333 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:13.333 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:13.366 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:25 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:13.438 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:13.439 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:13.503 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-volume noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 270 k 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:09:13.504 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:13.505 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 270 k 2024-09-15T03:09:13.505 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 1.3 M 2024-09-15T03:09:13.505 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:13.655 INFO:teuthology.orchestra.run.smithi187.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.5 MB/s | 248 kB 00:00 2024-09-15T03:09:13.697 INFO:teuthology.orchestra.run.smithi187.stdout:(2/6): ceph-mgr-cephadm-17.2.7-1643.gd75f2382.e 611 kB/s | 124 kB 00:00 2024-09-15T03:09:13.718 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-volume-17.2.7-1643.gd75f2382.el9.noarch.rp 1.2 MB/s | 270 kB 00:00 2024-09-15T03:09:13.718 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:13.719 INFO:teuthology.orchestra.run.smithi096.stdout:Total 1.2 MB/s | 270 kB 00:00 2024-09-15T03:09:13.719 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:13.727 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:13.727 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:13.731 INFO:teuthology.orchestra.run.smithi187.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-15T03:09:13.752 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:13.753 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:13.754 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:13.756 INFO:teuthology.orchestra.run.smithi187.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 3.1 MB/s | 74 kB 00:00 2024-09-15T03:09:13.798 INFO:teuthology.orchestra.run.smithi187.stdout:(5/6): python3-natsort-7.1.1-5.el9.noarch.rpm 574 kB/s | 58 kB 00:00 2024-09-15T03:09:13.881 INFO:teuthology.orchestra.run.smithi187.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 15 MB/s | 6.0 MB 00:00 2024-09-15T03:09:13.884 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:13.884 INFO:teuthology.orchestra.run.smithi187.stdout:Total 8.2 MB/s | 7.0 MB 00:00 2024-09-15T03:09:13.926 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-15T03:09:13.955 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:13.965 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:13.966 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:13.969 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:13.973 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-15T03:09:14.054 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:14.066 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:14.066 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:14.069 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:14.069 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:09:14.069 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-15T03:09:14.069 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:14.368 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:14.527 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-15T03:09:14.541 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-15T03:09:14.574 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-15T03:09:14.635 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-15T03:09:14.708 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-15T03:09:14.734 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 6/6 2024-09-15T03:09:15.063 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:15.063 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:15.063 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:15.063 INFO:teuthology.orchestra.run.smithi096.stdout: ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:15.063 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:15.063 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:15.107 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-15T03:09:15.196 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-15T03:09:15.249 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-15T03:09:15.279 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 6/6 2024-09-15T03:09:15.363 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install librados-devel 2024-09-15T03:09:15.475 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 6/6 2024-09-15T03:09:15.475 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/6 2024-09-15T03:09:15.475 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-15T03:09:15.475 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-15T03:09:15.476 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-15T03:09:15.476 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-15T03:09:15.748 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-15T03:09:15.748 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:15.748 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:15.748 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:15.749 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:15.946 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:27 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:16.010 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-fuse 2024-09-15T03:09:16.023 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 6/6 2024-09-15T03:09:16.023 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 1/6 2024-09-15T03:09:16.024 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-15T03:09:16.024 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-15T03:09:16.024 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-15T03:09:16.024 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-15T03:09:16.080 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:16.081 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:16.081 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repo Size 2024-09-15T03:09:16.081 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:16.081 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout: librados-devel x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 126 k 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 126 k 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 448 k 2024-09-15T03:09:16.082 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:16.266 INFO:teuthology.orchestra.run.smithi096.stdout:librados-devel-17.2.7-1643.gd75f2382.el9.x86_64 688 kB/s | 126 kB 00:00 2024-09-15T03:09:16.266 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:16.267 INFO:teuthology.orchestra.run.smithi096.stdout:Total 682 kB/s | 126 kB 00:00 2024-09-15T03:09:16.267 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:16.272 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:16.272 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:16.282 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-cephadm-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-15T03:09:16.283 INFO:teuthology.orchestra.run.smithi187.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-15T03:09:16.284 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:16.284 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:16.336 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:16.336 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:16.479 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:16.519 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-fuse 2024-09-15T03:09:16.596 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:16.608 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:31 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:16.748 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:16.748 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:16.748 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:09:16.748 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:16.748 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:16.748 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-fuse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 813 k 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout:Installing dependencies: 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout:Install 2 Packages 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:16.749 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 893 k 2024-09-15T03:09:16.750 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 2.6 M 2024-09-15T03:09:16.750 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:16.913 INFO:teuthology.orchestra.run.smithi032.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 713 kB/s | 80 kB 00:00 2024-09-15T03:09:17.022 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:17.071 INFO:teuthology.orchestra.run.smithi032.stdout:(2/2): ceph-fuse-17.2.7-1643.gd75f2382.el9.x86_ 2.9 MB/s | 813 kB 00:00 2024-09-15T03:09:17.072 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:17.072 INFO:teuthology.orchestra.run.smithi032.stdout:Total 2.7 MB/s | 893 kB 00:00 2024-09-15T03:09:17.081 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:31 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:17.084 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:17.108 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:17.108 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:17.192 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:17.193 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:17.213 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-fuse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 813 k 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout:Installing dependencies: 2024-09-15T03:09:17.214 INFO:teuthology.orchestra.run.smithi187.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout:Install 2 Packages 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 893 k 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 2.6 M 2024-09-15T03:09:17.215 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:17.307 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:17.307 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:17.307 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:17.308 INFO:teuthology.orchestra.run.smithi096.stdout: librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:17.308 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:17.308 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:17.385 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:17.525 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install libcephfs2 2024-09-15T03:09:17.532 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-15T03:09:17.606 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2/2 2024-09-15T03:09:17.616 INFO:teuthology.orchestra.run.smithi187.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 546 kB/s | 80 kB 00:00 2024-09-15T03:09:17.758 INFO:teuthology.orchestra.run.smithi187.stdout:(2/2): ceph-fuse-17.2.7-1643.gd75f2382.el9.x86_ 2.8 MB/s | 813 kB 00:00 2024-09-15T03:09:17.759 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:17.759 INFO:teuthology.orchestra.run.smithi187.stdout:Total 1.6 MB/s | 893 kB 00:00 2024-09-15T03:09:17.771 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:17.793 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:17.793 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:17.872 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:17.872 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:18.068 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:18.087 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:30 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:18.176 INFO:teuthology.orchestra.run.smithi096.stdout:Package libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:18.211 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-15T03:09:18.218 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:18.219 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:18.219 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:18.249 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2/2 2024-09-15T03:09:18.249 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/2 2024-09-15T03:09:18.277 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2/2 2024-09-15T03:09:18.306 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install libcephfs-devel 2024-09-15T03:09:18.531 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-15T03:09:18.531 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:18.531 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:18.531 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-15T03:09:18.531 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:18.531 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:18.815 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install ceph-volume 2024-09-15T03:09:18.883 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:30 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:18.938 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2/2 2024-09-15T03:09:18.938 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/2 2024-09-15T03:09:19.013 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:19.013 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repo Size 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout: libcephfs-devel x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 25 k 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:09:19.014 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:19.015 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 25 k 2024-09-15T03:09:19.015 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 110 k 2024-09-15T03:09:19.015 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:19.170 INFO:teuthology.orchestra.run.smithi096.stdout:libcephfs-devel-17.2.7-1643.gd75f2382.el9.x86_6 161 kB/s | 25 kB 00:00 2024-09-15T03:09:19.170 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:19.170 INFO:teuthology.orchestra.run.smithi096.stdout:Total 160 kB/s | 25 kB 00:00 2024-09-15T03:09:19.171 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:19.174 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:19.174 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:19.175 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:19.176 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:19.200 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-15T03:09:19.200 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:19.201 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:19.201 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-15T03:09:19.201 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:19.201 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:19.259 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:19.391 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:19.413 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:34 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:19.477 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install ceph-volume 2024-09-15T03:09:19.552 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:19.553 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:19.553 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repository Size 2024-09-15T03:09:19.553 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:19.553 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:19.553 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-volume noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 270 k 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 270 k 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 1.3 M 2024-09-15T03:09:19.554 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:19.756 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:19.785 INFO:teuthology.orchestra.run.smithi032.stdout:ceph-volume-17.2.7-1643.gd75f2382.el9.noarch.rp 1.1 MB/s | 270 kB 00:00 2024-09-15T03:09:19.785 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:19.785 INFO:teuthology.orchestra.run.smithi032.stdout:Total 1.1 MB/s | 270 kB 00:00 2024-09-15T03:09:19.785 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:19.794 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:19.794 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:19.824 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:19.824 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:20.003 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:20.003 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:20.003 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:20.003 INFO:teuthology.orchestra.run.smithi096.stdout: libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:20.003 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:20.004 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:20.049 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:34 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:20.050 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:20.119 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:20.136 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:20.136 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:09:20.136 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-15T03:09:20.136 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:20.182 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install librados2 2024-09-15T03:09:20.185 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:20.185 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:20.185 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repository Size 2024-09-15T03:09:20.185 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:20.185 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-volume noarch 2:17.2.7-1643.gd75f2382.el9 ceph-noarch 270 k 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 270 k 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 1.3 M 2024-09-15T03:09:20.186 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:20.412 INFO:teuthology.orchestra.run.smithi187.stdout:ceph-volume-17.2.7-1643.gd75f2382.el9.noarch.rp 1.2 MB/s | 270 kB 00:00 2024-09-15T03:09:20.413 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:20.413 INFO:teuthology.orchestra.run.smithi187.stdout:Total 1.2 MB/s | 270 kB 00:00 2024-09-15T03:09:20.413 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:20.421 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:20.422 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:20.452 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:20.452 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:20.658 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:20.731 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:20.745 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:32 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:20.747 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:20.747 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:09:20.747 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-15T03:09:20.747 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:20.834 INFO:teuthology.orchestra.run.smithi096.stdout:Package librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:20.877 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:20.878 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:20.878 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:20.946 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install librbd1 2024-09-15T03:09:21.130 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:21.130 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:21.130 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:21.131 INFO:teuthology.orchestra.run.smithi032.stdout: ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:21.131 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:21.131 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:21.422 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install librados-devel 2024-09-15T03:09:21.508 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:33 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:21.597 INFO:teuthology.orchestra.run.smithi096.stdout:Package librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:21.640 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:21.641 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:21.641 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:21.719 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install python3-rados 2024-09-15T03:09:21.731 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 1/1 2024-09-15T03:09:21.731 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:21.731 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:21.731 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-volume-2:17.2.7-1643.gd75f2382.el9.noarch 2024-09-15T03:09:21.731 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:21.731 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:22.015 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:37 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:22.043 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install librados-devel 2024-09-15T03:09:22.153 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repo Size 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout: librados-devel x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 126 k 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:22.154 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 126 k 2024-09-15T03:09:22.155 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 448 k 2024-09-15T03:09:22.155 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:22.273 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:34 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:22.362 INFO:teuthology.orchestra.run.smithi096.stdout:Package python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:22.371 INFO:teuthology.orchestra.run.smithi032.stdout:librados-devel-17.2.7-1643.gd75f2382.el9.x86_64 584 kB/s | 126 kB 00:00 2024-09-15T03:09:22.371 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:22.372 INFO:teuthology.orchestra.run.smithi032.stdout:Total 580 kB/s | 126 kB 00:00 2024-09-15T03:09:22.372 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:22.380 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:22.381 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:22.404 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:22.405 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:22.405 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:22.445 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:22.445 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:22.475 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install python3-rgw 2024-09-15T03:09:22.599 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:22.622 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:36 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:22.696 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:22.757 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repo Size 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout: librados-devel x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 126 k 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:22.758 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:22.759 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:09:22.759 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:22.759 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 126 k 2024-09-15T03:09:22.759 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 448 k 2024-09-15T03:09:22.759 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:22.950 INFO:teuthology.orchestra.run.smithi187.stdout:librados-devel-17.2.7-1643.gd75f2382.el9.x86_64 659 kB/s | 126 kB 00:00 2024-09-15T03:09:22.951 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:22.951 INFO:teuthology.orchestra.run.smithi187.stdout:Total 654 kB/s | 126 kB 00:00 2024-09-15T03:09:22.951 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:22.957 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:22.957 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:23.019 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:23.020 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:23.035 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:35 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:23.104 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:23.125 INFO:teuthology.orchestra.run.smithi096.stdout:Package python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:23.167 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:23.168 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:23.168 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:23.175 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:23.239 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install python3-cephfs 2024-09-15T03:09:23.272 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:23.355 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:23.356 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:23.356 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:23.356 INFO:teuthology.orchestra.run.smithi032.stdout: librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:23.356 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:23.356 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:23.624 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install libcephfs2 2024-09-15T03:09:23.684 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:23.802 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:35 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:23.893 INFO:teuthology.orchestra.run.smithi096.stdout:Package python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:23.935 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:23.935 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:23.935 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:23.935 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:23.936 INFO:teuthology.orchestra.run.smithi187.stdout: librados-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:23.936 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:23.936 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:23.936 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:23.936 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:24.014 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install python3-rbd 2024-09-15T03:09:24.186 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install libcephfs2 2024-09-15T03:09:24.211 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:39 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:24.306 INFO:teuthology.orchestra.run.smithi032.stdout:Package libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:24.351 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:24.352 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:24.352 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:24.418 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install libcephfs-devel 2024-09-15T03:09:24.571 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:36 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:24.660 INFO:teuthology.orchestra.run.smithi096.stdout:Package python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:24.702 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:24.703 INFO:teuthology.orchestra.run.smithi096.stdout:Nothing to do. 2024-09-15T03:09:24.703 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:24.763 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:38 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:24.778 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install rbd-fuse 2024-09-15T03:09:24.855 INFO:teuthology.orchestra.run.smithi187.stdout:Package libcephfs2-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:24.900 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:24.901 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:24.901 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:24.975 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install libcephfs-devel 2024-09-15T03:09:25.009 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:40 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:25.147 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:25.148 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:25.148 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repo Size 2024-09-15T03:09:25.148 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout: libcephfs-devel x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 25 k 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 25 k 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 110 k 2024-09-15T03:09:25.149 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:25.320 INFO:teuthology.orchestra.run.smithi032.stdout:libcephfs-devel-17.2.7-1643.gd75f2382.el9.x86_6 145 kB/s | 25 kB 00:00 2024-09-15T03:09:25.321 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:25.321 INFO:teuthology.orchestra.run.smithi032.stdout:Total 144 kB/s | 25 kB 00:00 2024-09-15T03:09:25.321 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:25.325 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:25.325 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:25.326 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:25.327 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:25.341 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:37 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:25.416 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:25.474 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:25.475 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:25.475 INFO:teuthology.orchestra.run.smithi096.stdout: Package Architecture Version Repository Size 2024-09-15T03:09:25.475 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:25.475 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:25.475 INFO:teuthology.orchestra.run.smithi096.stdout: rbd-fuse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 82 k 2024-09-15T03:09:25.475 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 82 k 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 222 k 2024-09-15T03:09:25.476 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:25.523 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:25.538 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:39 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:25.671 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:25.672 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:25.672 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repo Size 2024-09-15T03:09:25.672 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:25.672 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:25.672 INFO:teuthology.orchestra.run.smithi187.stdout: libcephfs-devel x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 25 k 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 25 k 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 110 k 2024-09-15T03:09:25.673 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:25.674 INFO:teuthology.orchestra.run.smithi096.stdout:rbd-fuse-17.2.7-1643.gd75f2382.el9.x86_64.rpm 416 kB/s | 82 kB 00:00 2024-09-15T03:09:25.674 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:25.674 INFO:teuthology.orchestra.run.smithi096.stdout:Total 413 kB/s | 82 kB 00:00 2024-09-15T03:09:25.674 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:25.681 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:25.681 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:25.744 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:25.744 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:25.820 INFO:teuthology.orchestra.run.smithi187.stdout:libcephfs-devel-17.2.7-1643.gd75f2382.el9.x86_6 169 kB/s | 25 kB 00:00 2024-09-15T03:09:25.821 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:25.821 INFO:teuthology.orchestra.run.smithi187.stdout:Total 167 kB/s | 25 kB 00:00 2024-09-15T03:09:25.821 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:25.825 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:25.825 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:25.826 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:25.826 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:25.884 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:25.895 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:25.911 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:26.025 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.033 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.103 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.103 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:26.103 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:26.104 INFO:teuthology.orchestra.run.smithi032.stdout: libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:26.104 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:26.104 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:26.281 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install librados2 2024-09-15T03:09:26.373 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.435 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.599 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.599 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:26.599 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:26.600 INFO:teuthology.orchestra.run.smithi187.stdout: libcephfs-devel-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:26.600 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:26.600 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:26.711 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:26.711 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:26.711 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:26.711 INFO:teuthology.orchestra.run.smithi096.stdout: rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:26.712 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:26.712 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:26.792 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install librados2 2024-09-15T03:09:26.872 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:41 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:26.965 INFO:teuthology.orchestra.run.smithi032.stdout:Package librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:26.966 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install rbd-mirror 2024-09-15T03:09:27.011 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:27.012 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:27.012 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:27.086 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install librbd1 2024-09-15T03:09:27.361 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:41 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:27.454 INFO:teuthology.orchestra.run.smithi187.stdout:Package librados2-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:27.497 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:27.498 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:27.498 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:27.531 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:39 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:27.562 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install librbd1 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repo Size 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout: rbd-mirror x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.9 M 2024-09-15T03:09:27.666 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 2.9 M 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 12 M 2024-09-15T03:09:27.667 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:27.674 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:42 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:27.768 INFO:teuthology.orchestra.run.smithi032.stdout:Package librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:27.813 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:27.814 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:27.814 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:27.886 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install python3-rados 2024-09-15T03:09:28.130 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:42 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:28.220 INFO:teuthology.orchestra.run.smithi187.stdout:Package librbd1-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:28.262 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:28.263 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:28.263 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:28.327 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install python3-rados 2024-09-15T03:09:28.478 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:43 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:28.570 INFO:teuthology.orchestra.run.smithi032.stdout:Package python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:28.615 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:28.616 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:28.616 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:28.682 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install python3-rgw 2024-09-15T03:09:28.889 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:42 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:28.979 INFO:teuthology.orchestra.run.smithi187.stdout:Package python3-rados-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:29.022 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:29.023 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:29.023 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:29.086 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install python3-rgw 2024-09-15T03:09:29.270 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:44 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:29.363 INFO:teuthology.orchestra.run.smithi032.stdout:Package python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:29.410 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:29.411 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:29.411 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:29.460 INFO:teuthology.orchestra.run.smithi096.stdout:rbd-mirror-17.2.7-1643.gd75f2382.el9.x86_64.rpm 1.6 MB/s | 2.9 MB 00:01 2024-09-15T03:09:29.461 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:29.461 INFO:teuthology.orchestra.run.smithi096.stdout:Total 1.6 MB/s | 2.9 MB 00:01 2024-09-15T03:09:29.461 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:29.471 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:29.471 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:29.482 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install python3-cephfs 2024-09-15T03:09:29.551 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:29.551 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:29.647 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:43 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:29.736 INFO:teuthology.orchestra.run.smithi187.stdout:Package python3-rgw-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:29.778 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:29.779 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:29.779 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:29.842 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install python3-cephfs 2024-09-15T03:09:29.965 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:30.036 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:30.060 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:30.060 INFO:teuthology.orchestra.run.smithi096.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:09:30.060 INFO:teuthology.orchestra.run.smithi096.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-15T03:09:30.060 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-15T03:09:30.060 INFO:teuthology.orchestra.run.smithi096.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-15T03:09:30.060 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:30.069 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:45 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:30.162 INFO:teuthology.orchestra.run.smithi032.stdout:Package python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:30.208 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:30.209 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:30.209 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:30.284 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install python3-rbd 2024-09-15T03:09:30.407 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:44 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:30.497 INFO:teuthology.orchestra.run.smithi187.stdout:Package python3-cephfs-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:30.539 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:30.540 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:30.540 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:30.602 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install python3-rbd 2024-09-15T03:09:30.871 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:45 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:30.963 INFO:teuthology.orchestra.run.smithi032.stdout:Package python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:31.008 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:31.009 INFO:teuthology.orchestra.run.smithi032.stdout:Nothing to do. 2024-09-15T03:09:31.010 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:31.072 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install rbd-fuse 2024-09-15T03:09:31.166 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:45 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:31.235 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:31.235 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:31.235 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:31.235 INFO:teuthology.orchestra.run.smithi096.stdout: rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:31.235 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:31.235 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:31.255 INFO:teuthology.orchestra.run.smithi187.stdout:Package python3-rbd-2:17.2.7-1643.gd75f2382.el9.x86_64 is already installed. 2024-09-15T03:09:31.298 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:31.299 INFO:teuthology.orchestra.run.smithi187.stdout:Nothing to do. 2024-09-15T03:09:31.299 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:31.362 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install rbd-fuse 2024-09-15T03:09:31.505 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum -y install rbd-nbd 2024-09-15T03:09:31.661 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:46 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:31.800 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout: Package Architecture Version Repository Size 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout: rbd-fuse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 82 k 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:09:31.801 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:31.802 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 82 k 2024-09-15T03:09:31.802 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 222 k 2024-09-15T03:09:31.802 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:31.924 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:45 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:32.057 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:32.057 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout: Package Architecture Version Repository Size 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout: rbd-fuse x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 82 k 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 82 k 2024-09-15T03:09:32.058 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 222 k 2024-09-15T03:09:32.059 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:32.083 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:44 ago on Sun 15 Sep 2024 03:07:48 AM UTC. 2024-09-15T03:09:32.217 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout: Package Architecture Version Repository Size 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout: rbd-nbd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 165 k 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:Install 1 Package 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:32.218 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 165 k 2024-09-15T03:09:32.219 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 477 k 2024-09-15T03:09:32.219 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-09-15T03:09:32.360 INFO:teuthology.orchestra.run.smithi032.stdout:rbd-fuse-17.2.7-1643.gd75f2382.el9.x86_64.rpm 147 kB/s | 82 kB 00:00 2024-09-15T03:09:32.361 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:32.361 INFO:teuthology.orchestra.run.smithi032.stdout:Total 146 kB/s | 82 kB 00:00 2024-09-15T03:09:32.361 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:32.370 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:32.370 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:32.440 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:32.441 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:32.594 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:32.648 INFO:teuthology.orchestra.run.smithi187.stdout:rbd-fuse-17.2.7-1643.gd75f2382.el9.x86_64.rpm 139 kB/s | 82 kB 00:00 2024-09-15T03:09:32.649 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:32.649 INFO:teuthology.orchestra.run.smithi187.stdout:Total 138 kB/s | 82 kB 00:00 2024-09-15T03:09:32.649 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:32.656 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:32.656 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:32.702 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:32.717 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:32.718 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:32.789 INFO:teuthology.orchestra.run.smithi096.stdout:rbd-nbd-17.2.7-1643.gd75f2382.el9.x86_64.rpm 290 kB/s | 165 kB 00:00 2024-09-15T03:09:32.789 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:32.790 INFO:teuthology.orchestra.run.smithi096.stdout:Total 289 kB/s | 165 kB 00:00 2024-09-15T03:09:32.790 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-09-15T03:09:32.797 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-09-15T03:09:32.797 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-09-15T03:09:32.859 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:32.861 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-09-15T03:09:32.861 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-09-15T03:09:32.954 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.039 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-09-15T03:09:33.107 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.152 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.326 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.372 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.372 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:33.372 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:33.372 INFO:teuthology.orchestra.run.smithi032.stdout: rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:33.372 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:33.372 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:33.566 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.566 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:33.566 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:33.566 INFO:teuthology.orchestra.run.smithi187.stdout: rbd-fuse-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:33.566 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:33.566 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:33.592 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.640 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install rbd-mirror 2024-09-15T03:09:33.800 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install rbd-mirror 2024-09-15T03:09:33.875 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:33.875 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:33.875 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-09-15T03:09:33.875 INFO:teuthology.orchestra.run.smithi096.stdout: rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:33.875 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-09-15T03:09:33.875 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-09-15T03:09:34.151 DEBUG:teuthology.parallel:result is None 2024-09-15T03:09:34.235 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:49 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:34.374 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:34.374 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout: Package Arch Version Repo Size 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout: rbd-mirror x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.9 M 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 2.9 M 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 12 M 2024-09-15T03:09:34.375 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:34.377 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:48 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:34.514 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:34.515 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:34.515 INFO:teuthology.orchestra.run.smithi187.stdout: Package Arch Version Repo Size 2024-09-15T03:09:34.515 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:34.515 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout: rbd-mirror x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 2.9 M 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 2.9 M 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 12 M 2024-09-15T03:09:34.516 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:34.822 INFO:teuthology.orchestra.run.smithi032.stdout:rbd-mirror-17.2.7-1643.gd75f2382.el9.x86_64.rpm 6.6 MB/s | 2.9 MB 00:00 2024-09-15T03:09:34.823 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:34.823 INFO:teuthology.orchestra.run.smithi032.stdout:Total 6.6 MB/s | 2.9 MB 00:00 2024-09-15T03:09:34.823 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:34.833 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:34.833 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:34.844 INFO:teuthology.orchestra.run.smithi187.stdout:rbd-mirror-17.2.7-1643.gd75f2382.el9.x86_64.rpm 9.0 MB/s | 2.9 MB 00:00 2024-09-15T03:09:34.844 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:34.845 INFO:teuthology.orchestra.run.smithi187.stdout:Total 8.9 MB/s | 2.9 MB 00:00 2024-09-15T03:09:34.845 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:34.854 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:34.854 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:34.917 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:34.917 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:34.943 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:34.943 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:35.352 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:35.376 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:35.431 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:35.444 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:35.458 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:35.458 INFO:teuthology.orchestra.run.smithi032.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:09:35.458 INFO:teuthology.orchestra.run.smithi032.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-15T03:09:35.458 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-15T03:09:35.458 INFO:teuthology.orchestra.run.smithi032.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-15T03:09:35.458 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:35.471 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:35.471 INFO:teuthology.orchestra.run.smithi187.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-15T03:09:35.471 INFO:teuthology.orchestra.run.smithi187.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-15T03:09:35.471 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-15T03:09:35.471 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-15T03:09:35.471 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:36.532 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:36.532 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:36.532 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:36.532 INFO:teuthology.orchestra.run.smithi187.stdout: rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:36.532 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:36.532 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:36.661 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:36.661 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:36.662 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:36.662 INFO:teuthology.orchestra.run.smithi032.stdout: rbd-mirror-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:36.662 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:36.662 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:36.779 DEBUG:teuthology.orchestra.run.smithi187:> sudo yum -y install rbd-nbd 2024-09-15T03:09:36.925 DEBUG:teuthology.orchestra.run.smithi032:> sudo yum -y install rbd-nbd 2024-09-15T03:09:37.359 INFO:teuthology.orchestra.run.smithi187.stdout:Last metadata expiration check: 0:01:51 ago on Sun 15 Sep 2024 03:07:46 AM UTC. 2024-09-15T03:09:37.495 INFO:teuthology.orchestra.run.smithi187.stdout:Dependencies resolved. 2024-09-15T03:09:37.496 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:37.496 INFO:teuthology.orchestra.run.smithi187.stdout: Package Architecture Version Repository Size 2024-09-15T03:09:37.496 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:37.496 INFO:teuthology.orchestra.run.smithi187.stdout:Installing: 2024-09-15T03:09:37.496 INFO:teuthology.orchestra.run.smithi187.stdout: rbd-nbd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 165 k 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction Summary 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout:================================================================================ 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout:Install 1 Package 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout:Total download size: 165 k 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout:Installed size: 477 k 2024-09-15T03:09:37.497 INFO:teuthology.orchestra.run.smithi187.stdout:Downloading Packages: 2024-09-15T03:09:37.527 INFO:teuthology.orchestra.run.smithi032.stdout:Last metadata expiration check: 0:01:52 ago on Sun 15 Sep 2024 03:07:45 AM UTC. 2024-09-15T03:09:37.668 INFO:teuthology.orchestra.run.smithi032.stdout:Dependencies resolved. 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout: Package Architecture Version Repository Size 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:Installing: 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout: rbd-nbd x86_64 2:17.2.7-1643.gd75f2382.el9 ceph 165 k 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction Summary 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:================================================================================ 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:Install 1 Package 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:Total download size: 165 k 2024-09-15T03:09:37.669 INFO:teuthology.orchestra.run.smithi032.stdout:Installed size: 477 k 2024-09-15T03:09:37.670 INFO:teuthology.orchestra.run.smithi032.stdout:Downloading Packages: 2024-09-15T03:09:37.714 INFO:teuthology.orchestra.run.smithi187.stdout:rbd-nbd-17.2.7-1643.gd75f2382.el9.x86_64.rpm 763 kB/s | 165 kB 00:00 2024-09-15T03:09:37.714 INFO:teuthology.orchestra.run.smithi187.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:37.715 INFO:teuthology.orchestra.run.smithi187.stdout:Total 758 kB/s | 165 kB 00:00 2024-09-15T03:09:37.715 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction check 2024-09-15T03:09:37.722 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction check succeeded. 2024-09-15T03:09:37.722 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction test 2024-09-15T03:09:37.785 INFO:teuthology.orchestra.run.smithi187.stdout:Transaction test succeeded. 2024-09-15T03:09:37.786 INFO:teuthology.orchestra.run.smithi187.stdout:Running transaction 2024-09-15T03:09:37.867 INFO:teuthology.orchestra.run.smithi032.stdout:rbd-nbd-17.2.7-1643.gd75f2382.el9.x86_64.rpm 838 kB/s | 165 kB 00:00 2024-09-15T03:09:37.867 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:09:37.867 INFO:teuthology.orchestra.run.smithi032.stdout:Total 832 kB/s | 165 kB 00:00 2024-09-15T03:09:37.867 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction check 2024-09-15T03:09:37.876 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction check succeeded. 2024-09-15T03:09:37.876 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction test 2024-09-15T03:09:37.942 INFO:teuthology.orchestra.run.smithi187.stdout: Preparing : 1/1 2024-09-15T03:09:37.944 INFO:teuthology.orchestra.run.smithi032.stdout:Transaction test succeeded. 2024-09-15T03:09:37.944 INFO:teuthology.orchestra.run.smithi032.stdout:Running transaction 2024-09-15T03:09:38.044 INFO:teuthology.orchestra.run.smithi187.stdout: Installing : rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:38.211 INFO:teuthology.orchestra.run.smithi032.stdout: Preparing : 1/1 2024-09-15T03:09:38.317 INFO:teuthology.orchestra.run.smithi032.stdout: Installing : rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:38.456 INFO:teuthology.orchestra.run.smithi187.stdout: Running scriptlet: rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:38.707 INFO:teuthology.orchestra.run.smithi187.stdout: Verifying : rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:38.707 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:38.707 INFO:teuthology.orchestra.run.smithi187.stdout:Installed: 2024-09-15T03:09:38.707 INFO:teuthology.orchestra.run.smithi187.stdout: rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:38.707 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:09:38.707 INFO:teuthology.orchestra.run.smithi187.stdout:Complete! 2024-09-15T03:09:38.718 INFO:teuthology.orchestra.run.smithi032.stdout: Running scriptlet: rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:38.974 DEBUG:teuthology.parallel:result is None 2024-09-15T03:09:38.979 INFO:teuthology.orchestra.run.smithi032.stdout: Verifying : rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 1/1 2024-09-15T03:09:38.979 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:38.979 INFO:teuthology.orchestra.run.smithi032.stdout:Installed: 2024-09-15T03:09:38.980 INFO:teuthology.orchestra.run.smithi032.stdout: rbd-nbd-2:17.2.7-1643.gd75f2382.el9.x86_64 2024-09-15T03:09:38.980 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:09:38.980 INFO:teuthology.orchestra.run.smithi032.stdout:Complete! 2024-09-15T03:09:39.272 DEBUG:teuthology.parallel:result is None 2024-09-15T03:09:39.273 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:09:39.422 DEBUG:teuthology.orchestra.run.smithi032:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-15T03:09:39.445 INFO:teuthology.orchestra.run.smithi032.stdout:17.2.7-1643.gd75f2382.el9 2024-09-15T03:09:39.446 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1643.gd75f2382.el9 2024-09-15T03:09:39.446 INFO:teuthology.task.install:The correct ceph version 17.2.7-1643.gd75f2382 is installed. 2024-09-15T03:09:39.447 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:09:39.601 DEBUG:teuthology.orchestra.run.smithi096:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-15T03:09:39.628 INFO:teuthology.orchestra.run.smithi096.stdout:17.2.7-1643.gd75f2382.el9 2024-09-15T03:09:39.628 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1643.gd75f2382.el9 2024-09-15T03:09:39.628 INFO:teuthology.task.install:The correct ceph version 17.2.7-1643.gd75f2382 is installed. 2024-09-15T03:09:39.630 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:09:39.776 DEBUG:teuthology.orchestra.run.smithi187:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-15T03:09:39.801 INFO:teuthology.orchestra.run.smithi187.stdout:17.2.7-1643.gd75f2382.el9 2024-09-15T03:09:39.802 INFO:teuthology.packaging:The installed version of ceph is 17.2.7-1643.gd75f2382.el9 2024-09-15T03:09:39.802 INFO:teuthology.task.install:The correct ceph version 17.2.7-1643.gd75f2382 is installed. 2024-09-15T03:09:39.803 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-15T03:09:39.804 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:09:39.804 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-15T03:09:39.835 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:09:39.835 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-15T03:09:39.867 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:09:39.867 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-15T03:09:39.897 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-15T03:09:39.897 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:09:39.897 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/usr/bin/daemon-helper 2024-09-15T03:09:39.960 DEBUG:teuthology.orchestra.run.smithi032:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-15T03:09:40.027 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:09:40.028 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/usr/bin/daemon-helper 2024-09-15T03:09:40.057 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-15T03:09:40.128 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:09:40.128 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/usr/bin/daemon-helper 2024-09-15T03:09:40.158 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-15T03:09:40.227 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-15T03:09:40.227 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:09:40.227 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-15T03:09:40.257 DEBUG:teuthology.orchestra.run.smithi032:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-15T03:09:40.326 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:09:40.326 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-15T03:09:40.355 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-15T03:09:40.424 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:09:40.424 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-15T03:09:40.454 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-15T03:09:40.522 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-15T03:09:40.522 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:09:40.522 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/usr/bin/stdin-killer 2024-09-15T03:09:40.553 DEBUG:teuthology.orchestra.run.smithi032:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-15T03:09:40.626 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:09:40.626 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/usr/bin/stdin-killer 2024-09-15T03:09:40.654 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-15T03:09:40.721 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:09:40.721 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/usr/bin/stdin-killer 2024-09-15T03:09:40.751 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-15T03:09:40.819 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-15T03:09:40.911 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum'], 'sha1': 'd75f23820806da622f561ee5ee7551015285993f'} 2024-09-15T03:09:40.911 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:09:40.911 INFO:tasks.cephadm:Cluster fsid is f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:09:40.912 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-15T03:09:40.912 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.32', 'mon.b': '172.21.15.96', 'mon.c': '172.21.15.187'} 2024-09-15T03:09:40.912 INFO:tasks.cephadm:First mon is mon.a on smithi032 2024-09-15T03:09:40.912 INFO:tasks.cephadm:First mgr is a 2024-09-15T03:09:40.912 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-15T03:09:40.912 DEBUG:teuthology.orchestra.run.smithi032:> sudo hostname $(hostname -s) 2024-09-15T03:09:40.944 DEBUG:teuthology.orchestra.run.smithi096:> sudo hostname $(hostname -s) 2024-09-15T03:09:40.974 DEBUG:teuthology.orchestra.run.smithi187:> sudo hostname $(hostname -s) 2024-09-15T03:09:41.004 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref d75f23820806da622f561ee5ee7551015285993f)... 2024-09-15T03:09:41.004 DEBUG:teuthology.orchestra.run.smithi032:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/d75f23820806da622f561ee5ee7551015285993f/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.146 INFO:teuthology.orchestra.run.smithi032.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 15 03:09 /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.147 DEBUG:teuthology.orchestra.run.smithi096:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/d75f23820806da622f561ee5ee7551015285993f/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.291 INFO:teuthology.orchestra.run.smithi096.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 15 03:09 /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.291 DEBUG:teuthology.orchestra.run.smithi187:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/d75f23820806da622f561ee5ee7551015285993f/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.443 INFO:teuthology.orchestra.run.smithi187.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 15 03:09 /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.443 DEBUG:teuthology.orchestra.run.smithi032:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.464 DEBUG:teuthology.orchestra.run.smithi096:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.483 DEBUG:teuthology.orchestra.run.smithi187:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-15T03:09:41.513 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f on all hosts... 2024-09-15T03:09:41.513 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f pull 2024-09-15T03:09:41.516 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f pull 2024-09-15T03:09:41.526 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f pull 2024-09-15T03:09:43.096 INFO:teuthology.orchestra.run.smithi032.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f... 2024-09-15T03:09:43.126 INFO:teuthology.orchestra.run.smithi187.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f... 2024-09-15T03:09:43.218 INFO:teuthology.orchestra.run.smithi096.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f... 2024-09-15T03:10:27.054 INFO:teuthology.orchestra.run.smithi187.stdout:{ 2024-09-15T03:10:27.054 INFO:teuthology.orchestra.run.smithi187.stdout: "ceph_version": "ceph version 17.2.7-1643-gd75f2382 (d75f23820806da622f561ee5ee7551015285993f) quincy (stable)", 2024-09-15T03:10:27.055 INFO:teuthology.orchestra.run.smithi187.stdout: "image_id": "5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0", 2024-09-15T03:10:27.055 INFO:teuthology.orchestra.run.smithi187.stdout: "repo_digests": [ 2024-09-15T03:10:27.055 INFO:teuthology.orchestra.run.smithi187.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac" 2024-09-15T03:10:27.055 INFO:teuthology.orchestra.run.smithi187.stdout: ] 2024-09-15T03:10:27.055 INFO:teuthology.orchestra.run.smithi187.stdout:} 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout:{ 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout: "ceph_version": "ceph version 17.2.7-1643-gd75f2382 (d75f23820806da622f561ee5ee7551015285993f) quincy (stable)", 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout: "image_id": "5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0", 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout: "repo_digests": [ 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac" 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout: ] 2024-09-15T03:10:30.671 INFO:teuthology.orchestra.run.smithi032.stdout:} 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout:{ 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout: "ceph_version": "ceph version 17.2.7-1643-gd75f2382 (d75f23820806da622f561ee5ee7551015285993f) quincy (stable)", 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout: "image_id": "5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0", 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout: "repo_digests": [ 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac" 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout: ] 2024-09-15T03:10:31.743 INFO:teuthology.orchestra.run.smithi096.stdout:} 2024-09-15T03:10:31.764 DEBUG:teuthology.orchestra.run.smithi032:> sudo mkdir -p /etc/ceph 2024-09-15T03:10:31.798 DEBUG:teuthology.orchestra.run.smithi096:> sudo mkdir -p /etc/ceph 2024-09-15T03:10:31.826 DEBUG:teuthology.orchestra.run.smithi187:> sudo mkdir -p /etc/ceph 2024-09-15T03:10:31.859 DEBUG:teuthology.orchestra.run.smithi032:> sudo chmod 777 /etc/ceph 2024-09-15T03:10:31.888 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 777 /etc/ceph 2024-09-15T03:10:31.913 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod 777 /etc/ceph 2024-09-15T03:10:31.941 INFO:tasks.cephadm:Writing seed config... 2024-09-15T03:10:31.942 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-15T03:10:31.943 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-15T03:10:31.944 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:10:31.944 DEBUG:teuthology.orchestra.run.smithi032:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-15T03:10:31.962 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 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=jerasure 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 = f2ed5114-730f-11ef-bceb-c7b262605968 mon election default strategy = 3 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops 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 2024-09-15T03:10:31.962 DEBUG:teuthology.orchestra.run.smithi032:mon.a> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a.service 2024-09-15T03:10:32.005 DEBUG:teuthology.orchestra.run.smithi032:mgr.a> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service 2024-09-15T03:10:32.049 INFO:tasks.cephadm:Bootstrapping... 2024-09-15T03:10:32.049 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f -v bootstrap --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --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 172.21.15.32 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:10:32.262 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------------------------------------------------------------------- 2024-09-15T03:10:32.262 INFO:teuthology.orchestra.run.smithi032.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f', '-v', 'bootstrap', '--fsid', 'f2ed5114-730f-11ef-bceb-c7b262605968', '--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', '172.21.15.32', '--skip-admin-label'] 2024-09-15T03:10:32.287 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stdout 5.2.2 2024-09-15T03:10:32.287 INFO:teuthology.orchestra.run.smithi032.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-15T03:10:32.288 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying podman|docker is present... 2024-09-15T03:10:32.311 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stdout 5.2.2 2024-09-15T03:10:32.311 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying lvm2 is present... 2024-09-15T03:10:32.311 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying time synchronization is in place... 2024-09-15T03:10:32.319 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-15T03:10:32.319 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-15T03:10:32.326 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-15T03:10:32.326 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout inactive 2024-09-15T03:10:32.333 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout enabled 2024-09-15T03:10:32.340 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout active 2024-09-15T03:10:32.340 INFO:teuthology.orchestra.run.smithi032.stdout:Unit chronyd.service is enabled and running 2024-09-15T03:10:32.340 INFO:teuthology.orchestra.run.smithi032.stdout:Repeating the final host check... 2024-09-15T03:10:32.363 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stdout 5.2.2 2024-09-15T03:10:32.363 INFO:teuthology.orchestra.run.smithi032.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-15T03:10:32.363 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl is present 2024-09-15T03:10:32.363 INFO:teuthology.orchestra.run.smithi032.stdout:lvcreate is present 2024-09-15T03:10:32.370 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-15T03:10:32.370 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-15T03:10:32.377 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-15T03:10:32.377 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout inactive 2024-09-15T03:10:32.384 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout enabled 2024-09-15T03:10:32.391 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout active 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Unit chronyd.service is enabled and running 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Host looks OK 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Cluster fsid: f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Acquiring lock 140568071512992 on /run/cephadm/f2ed5114-730f-11ef-bceb-c7b262605968.lock 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Lock 140568071512992 acquired on /run/cephadm/f2ed5114-730f-11ef-bceb-c7b262605968.lock 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying IP 172.21.15.32 port 3300 ... 2024-09-15T03:10:32.392 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying IP 172.21.15.32 port 6789 ... 2024-09-15T03:10:32.393 INFO:teuthology.orchestra.run.smithi032.stdout:Base mon IP(s) is [172.21.15.32:3300, 172.21.15.32:6789], mon addrv is [v2:172.21.15.32:3300,v1:172.21.15.32:6789] 2024-09-15T03:10:32.396 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.32 metric 100 2024-09-15T03:10:32.396 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.32 metric 100 2024-09-15T03:10:32.399 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-15T03:10:32.399 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-15T03:10:32.399 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1798sec hoplimit 64 pref medium 2024-09-15T03:10:32.402 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-15T03:10:32.402 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-15T03:10:32.402 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-15T03:10:32.402 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-15T03:10:32.402 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout inet6 fe80::ae1f:6bff:fef8:2602/64 scope link 2024-09-15T03:10:32.402 INFO:teuthology.orchestra.run.smithi032.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-15T03:10:32.403 INFO:teuthology.orchestra.run.smithi032.stdout:Mon IP `172.21.15.32` is in CIDR network `172.21.0.0/20` 2024-09-15T03:10:32.403 INFO:teuthology.orchestra.run.smithi032.stdout:Mon IP `172.21.15.32` is in CIDR network `172.21.0.0/20` 2024-09-15T03:10:32.403 INFO:teuthology.orchestra.run.smithi032.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-15T03:10:32.403 INFO:teuthology.orchestra.run.smithi032.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-15T03:10:32.404 INFO:teuthology.orchestra.run.smithi032.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f... 2024-09-15T03:10:32.870 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stdout 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 2024-09-15T03:10:32.871 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f... 2024-09-15T03:10:32.871 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stderr Getting image source signatures 2024-09-15T03:10:32.871 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stderr Copying blob sha256:5b25572a0d00925017e22daaadd65e8f04ef1c38bd4cc72a745b10531143581c 2024-09-15T03:10:32.871 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-15T03:10:32.871 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stderr Copying config sha256:5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 2024-09-15T03:10:32.871 INFO:teuthology.orchestra.run.smithi032.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-15T03:10:33.742 INFO:teuthology.orchestra.run.smithi032.stdout:ceph: stdout ceph version 17.2.7-1643-gd75f2382 (d75f23820806da622f561ee5ee7551015285993f) quincy (stable) 2024-09-15T03:10:33.742 INFO:teuthology.orchestra.run.smithi032.stdout:Ceph version: ceph version 17.2.7-1643-gd75f2382 (d75f23820806da622f561ee5ee7551015285993f) quincy (stable) 2024-09-15T03:10:33.742 INFO:teuthology.orchestra.run.smithi032.stdout:Extracting ceph user uid/gid from container image... 2024-09-15T03:10:34.623 INFO:teuthology.orchestra.run.smithi032.stdout:stat: stdout 167 167 2024-09-15T03:10:34.623 INFO:teuthology.orchestra.run.smithi032.stdout:Creating initial keys... 2024-09-15T03:10:38.268 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph-authtool: stdout AQAqUOZmRzbaORAAWc+CJvBA5QijefFzwt1HBQ== 2024-09-15T03:10:48.020 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph-authtool: stdout AQAxUOZmzuC0FBAA4/+dMpAT+Qg7lvQzeO/HIA== 2024-09-15T03:10:49.242 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph-authtool: stdout AQA4UOZmP4hVJRAASmlA6UI47qHfLoGpDpZncw== 2024-09-15T03:10:49.243 INFO:teuthology.orchestra.run.smithi032.stdout:Creating initial monmap... 2024-09-15T03:10:50.173 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-15T03:10:50.173 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = octopus 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:monmaptool for a [v2:172.21.15.32:3300,v1:172.21.15.32:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:setting min_mon_release = octopus 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/monmaptool: set fsid to f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:10:50.174 INFO:teuthology.orchestra.run.smithi032.stdout:Creating mon... 2024-09-15T03:10:51.104 INFO:teuthology.orchestra.run.smithi032.stdout:create mon.a on 2024-09-15T03:10:51.376 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-15T03:10:51.524 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-15T03:10:51.687 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-f2ed5114-730f-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-f2ed5114-730f-11ef-bceb-c7b262605968.target. 2024-09-15T03:10:51.687 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-f2ed5114-730f-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-f2ed5114-730f-11ef-bceb-c7b262605968.target. 2024-09-15T03:10:51.863 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a 2024-09-15T03:10:51.863 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Failed to reset failed state of unit ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-15T03:10:52.032 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-f2ed5114-730f-11ef-bceb-c7b262605968.target.wants/ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a.service → /etc/systemd/system/ceph-f2ed5114-730f-11ef-bceb-c7b262605968@.service. 2024-09-15T03:10:52.594 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-15T03:10:52.594 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout disabled 2024-09-15T03:10:52.601 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-15T03:10:52.601 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout inactive 2024-09-15T03:10:52.601 INFO:teuthology.orchestra.run.smithi032.stdout:firewalld.service is not enabled 2024-09-15T03:10:52.602 INFO:teuthology.orchestra.run.smithi032.stdout:Not possible to enable service . firewalld.service is not available 2024-09-15T03:10:52.602 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for mon to start... 2024-09-15T03:10:52.602 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for mon... 2024-09-15T03:10:52.714 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:52 smithi032 systemd[1]: Started Ceph mon.a for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:10:53.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:53 smithi032 ceph-mon[27436]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-15T03:10:53.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:53 smithi032 ceph-mon[27436]: monmap e1: 1 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:10:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:53 smithi032 ceph-mon[27436]: fsmap 2024-09-15T03:10:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:53 smithi032 ceph-mon[27436]: osdmap e1: 0 total, 0 up, 0 in 2024-09-15T03:10:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:53 smithi032 ceph-mon[27436]: mgrmap e1: no daemons active 2024-09-15T03:10:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:53 smithi032 ceph-mon[27436]: from='client.? 172.21.15.32:0/3833638979' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-15T03:10:54.344 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout cluster: 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout id: f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout services: 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.553628s) 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-15T03:10:54.346 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout data: 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout pgs: 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:mon is available 2024-09-15T03:10:54.347 INFO:teuthology.orchestra.run.smithi032.stdout:Assimilating anything we can from ceph.conf... 2024-09-15T03:10:55.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:54 smithi032 ceph-mon[27436]: from='client.? 172.21.15.32:0/3080283542' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-15T03:10:55.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:54 smithi032 ceph-mon[27436]: from='client.? 172.21.15.32:0/3080283542' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-15T03:10:55.385 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:10:55.385 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout [global] 2024-09-15T03:10:55.385 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout fsid = f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.32:3300,v1:172.21.15.32:6789] 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout [osd] 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-15T03:10:55.386 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-15T03:10:55.387 INFO:teuthology.orchestra.run.smithi032.stdout:Generating new minimal ceph.conf... 2024-09-15T03:10:56.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:55 smithi032 ceph-mon[27436]: from='client.? 172.21.15.32:0/2515223410' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:10:56.423 INFO:teuthology.orchestra.run.smithi032.stdout:Restarting the monitor... 2024-09-15T03:10:56.691 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:56 smithi032 systemd[1]: Stopping Ceph mon.a for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:10:57.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:56 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a[27432]: 2024-09-15T03:10:56.688+0000 7f1595240640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:10:57.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:56 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a[27432]: 2024-09-15T03:10:56.688+0000 7f1595240640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-15T03:10:57.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:56 smithi032 podman[27679]: 2024-09-15 03:10:56.873894788 +0000 UTC m=+0.276780140 container died 48fbc411a7ad6492e218ed34068aa439aa1905447c3b6954ac2ddbcf38bc6bd8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238) 2024-09-15T03:10:57.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 podman[27679]: 2024-09-15 03:10:57.197426648 +0000 UTC m=+0.600311999 container cleanup 48fbc411a7ad6492e218ed34068aa439aa1905447c3b6954ac2ddbcf38bc6bd8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:10:57.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 bash[27679]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a 2024-09-15T03:10:57.824 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 podman[27691]: 2024-09-15 03:10:57.398276536 +0000 UTC m=+0.521673522 container remove 48fbc411a7ad6492e218ed34068aa439aa1905447c3b6954ac2ddbcf38bc6bd8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux ) 2024-09-15T03:10:57.825 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-15T03:10:57.825 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 systemd[1]: Stopped Ceph mon.a for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:10:57.825 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 systemd[1]: Starting Ceph mon.a for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:10:58.102 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 podman[27781]: 2024-09-15 03:10:57.824180777 +0000 UTC m=+0.111404768 container create 29016d5b1e351ec8663112191904602112e3e8f2581a79a10b260a898057f12a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, org.label-schema.build-date=20240731, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS) 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:57 smithi032 podman[27781]: 2024-09-15 03:10:57.730117747 +0000 UTC m=+0.017341708 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 podman[27781]: 2024-09-15 03:10:58.026685128 +0000 UTC m=+0.313909077 container init 29016d5b1e351ec8663112191904602112e3e8f2581a79a10b260a898057f12a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 podman[27781]: 2024-09-15 03:10:58.029816812 +0000 UTC m=+0.317040768 container start 29016d5b1e351ec8663112191904602112e3e8f2581a79a10b260a898057f12a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731) 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: set uid:gid to 167:167 (ceph:ceph) 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: ceph version 17.2.7-1643-gd75f2382 (d75f23820806da622f561ee5ee7551015285993f) quincy (stable), process ceph-mon, pid 2 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: pidfile_write: ignore empty --pid-file 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: load: jerasure load: lrc 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: RocksDB version: 6.15.5 2024-09-15T03:10:58.103 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Compile date Sep 14 2024 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: DB SUMMARY 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: DB Session ID: Y9BHBQHEQIW86QO3ST70 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: CURRENT file: CURRENT 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: IDENTITY file: IDENTITY 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: MANIFEST file: MANIFEST-000009 size: 131 Bytes 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000010.log size: 82860 ; 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.error_if_exists: 0 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.create_if_missing: 0 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.paranoid_checks: 1 2024-09-15T03:10:58.104 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.env: 0x55bf6dee9440 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.fs: Posix File System 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.info_log: 0x55bf70372ec0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_file_opening_threads: 16 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.statistics: (nil) 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.use_fsync: 0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_log_file_size: 0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.keep_log_file_num: 1000 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.recycle_log_file_num: 0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.allow_fallocate: 1 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.allow_mmap_reads: 0 2024-09-15T03:10:58.105 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.allow_mmap_writes: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.use_direct_reads: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.create_missing_column_families: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.db_log_dir: 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-a/store.db 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.advise_random_on_open: 1 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.db_write_buffer_size: 0 2024-09-15T03:10:58.106 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.write_buffer_manager: 0x55bf704307e0 2024-09-15T03:10:58.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-15T03:10:58.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-15T03:10:58.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-15T03:10:58.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-15T03:10:58.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.rate_limiter: (nil) 2024-09-15T03:10:58.107 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-15T03:10:58.108 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.wal_recovery_mode: 2 2024-09-15T03:10:58.108 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.enable_thread_tracking: 0 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.enable_pipelined_write: 0 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.unordered_write: 0 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.row_cache: None 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.wal_filter: None 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.allow_ingest_behind: 0 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.preserve_deletes: 0 2024-09-15T03:10:58.109 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.two_write_queues: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.manual_wal_flush: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.atomic_flush: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.log_readahead_size: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.best_efforts_recovery: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.allow_data_in_errors: 0 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.db_host_id: __hostname__ 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_background_jobs: 2 2024-09-15T03:10:58.110 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_background_compactions: -1 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_subcompactions: 1 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_total_wal_size: 0 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_open_files: -1 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bytes_per_sync: 0 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-15T03:10:58.111 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_readahead_size: 0 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_background_flushes: -1 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Compression algorithms supported: 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kZSTD supported: 0 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kXpressCompression supported: 0 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kBZip2Compression supported: 0 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kLZ4Compression supported: 1 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kZlibCompression supported: 1 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kLZ4HCCompression supported: 1 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: kSnappyCompression supported: 1 2024-09-15T03:10:58.112 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000009 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.merge_operator: 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_filter: None 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_filter_factory: None 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.sst_partitioner_factory: None 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55bf70319a38) 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout: cache_index_and_filter_blocks: 1 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-15T03:10:58.113 INFO:journalctl@ceph.mon.a.smithi032.stdout: pin_top_level_index_and_filter: 1 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: index_type: 0 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: data_block_index_type: 0 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: index_shortening: 1 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: hash_index_allow_collision: 1 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: checksum: 1 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: no_block_cache: 0 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_cache: 0x55bf7034f1f0 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_cache_name: BinnedLRUCache 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_cache_options: 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: capacity : 536870912 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: num_shard_bits : 4 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: strict_capacity_limit : 0 2024-09-15T03:10:58.114 INFO:journalctl@ceph.mon.a.smithi032.stdout: high_pri_pool_ratio: 0.000 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_cache_compressed: (nil) 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: persistent_cache: (nil) 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_size: 4096 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_size_deviation: 10 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_restart_interval: 16 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: index_block_restart_interval: 1 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: metadata_block_size: 4096 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: partition_filters: 0 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: use_delta_encoding: 1 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: whole_key_filtering: 1 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: verify_compression: 0 2024-09-15T03:10:58.115 INFO:journalctl@ceph.mon.a.smithi032.stdout: read_amp_bytes_per_bit: 0 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout: format_version: 4 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout: enable_index_compression: 1 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout: block_align: 0 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.write_buffer_size: 33554432 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_write_buffer_number: 2 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression: NoCompression 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression: Disabled 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.prefix_extractor: nullptr 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.num_levels: 7 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-15T03:10:58.116 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.level: 32767 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.strategy: 0 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-15T03:10:58.117 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compression_opts.enabled: false 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.target_file_size_base: 67108864 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-15T03:10:58.118 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.arena_block_size: 4194304 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.disable_auto_compactions: 0 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-15T03:10:58.119 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.inplace_update_support: 0 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.bloom_locality: 0 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.max_successive_merges: 0 2024-09-15T03:10:58.120 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.paranoid_file_checks: 0 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.force_consistency_checks: 1 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.report_bg_io_stats: 0 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.ttl: 2592000 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.enable_blob_files: false 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.min_blob_size: 0 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.blob_file_size: 268435456 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-15T03:10:58.121 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000009 succeeded,manifest_file_number is 9, next_file_number is 11, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 5 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/version_set.cc:4082] Creating manifest 13 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726369858053237, "job": 1, "event": "recovery_started", "wal_files": [10]} 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #10 mode 2 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726369858054045, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 14, "file_size": 79590, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 77822, "index_size": 230, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 9759, "raw_average_key_size": 47, "raw_value_size": 72229, "raw_average_value_size": 348, "num_data_blocks": 10, "num_entries": 207, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "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; ", "creation_time": 1726369858, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "fc5ab6f2-3db0-4d91-8352-a99e51b82dae", "db_session_id": "Y9BHBQHEQIW86QO3ST70"}} 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/version_set.cc:4082] Creating manifest 15 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726369858054401, "job": 1, "event": "recovery_finished"} 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [file/delete_scheduler.cc:69] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000010.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x55bf70382700 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: DB pointer 0x55bf70352000 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-15T03:10:58.122 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** DB Stats ** 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** Compaction Stats [default] ** 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.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 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-15T03:10:58.123 INFO:journalctl@ceph.mon.a.smithi032.stdout: L0 2/0 79.51 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: Sum 2/0 79.51 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.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 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** Compaction Stats [default] ** 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.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 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.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 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-15T03:10:58.124 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: Cumulative compaction: 0.00 GB write, 24.02 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: Interval compaction: 0.00 GB write, 24.02 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.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 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** Compaction Stats [default] ** 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.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 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: L0 2/0 79.51 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: Sum 2/0 79.51 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-15T03:10:58.125 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** Compaction Stats [default] ** 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.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 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.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 142.9 0.00 0.00 1 0.001 0 0 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: Cumulative compaction: 0.00 GB write, 23.79 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.stdout: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-15T03:10:58.126 INFO:journalctl@ceph.mon.a.smithi032.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 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: starting mon.a rank 0 at public addrs [v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0] at bind addrs [v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???) e1 preinit fsid f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).mds e1 new map 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).mds e1 print_map 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: e1 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.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} 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: legacy client fscid: -1 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: 2024-09-15T03:10:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout: No filesystems configured 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 bash[27781]: 29016d5b1e351ec8663112191904602112e3e8f2581a79a10b260a898057f12a 2024-09-15T03:10:58.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 systemd[1]: Started Ceph mon.a for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:10:58.128 INFO:teuthology.orchestra.run.smithi032.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-15T03:10:58.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-15T03:10:58.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: monmap e1: 1 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:10:58.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: fsmap 2024-09-15T03:10:58.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: osdmap e1: 0 total, 0 up, 0 in 2024-09-15T03:10:58.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:58 smithi032 ceph-mon[27800]: mgrmap e1: no daemons active 2024-09-15T03:10:59.111 INFO:teuthology.orchestra.run.smithi032.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-15T03:10:59.111 INFO:teuthology.orchestra.run.smithi032.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:10:59.111 INFO:teuthology.orchestra.run.smithi032.stdout:Creating mgr... 2024-09-15T03:10:59.112 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-15T03:10:59.113 INFO:teuthology.orchestra.run.smithi032.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-15T03:10:59.293 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a 2024-09-15T03:10:59.293 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Failed to reset failed state of unit ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-15T03:10:59.452 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-f2ed5114-730f-11ef-bceb-c7b262605968.target.wants/ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-f2ed5114-730f-11ef-bceb-c7b262605968@.service. 2024-09-15T03:10:59.595 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 systemd[1]: Starting Ceph mgr.a for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:10:59.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:10:59 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2562713141' entity='client.admin' 2024-09-15T03:10:59.878 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 podman[28013]: 2024-09-15 03:10:59.683810556 +0000 UTC m=+0.113620746 container create 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a, org.label-schema.build-date=20240731, ceph=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_BRANCH=HEAD) 2024-09-15T03:10:59.878 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 podman[28013]: 2024-09-15 03:10:59.586515435 +0000 UTC m=+0.016325641 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f 2024-09-15T03:11:00.002 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-15T03:11:00.002 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout disabled 2024-09-15T03:11:00.010 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-15T03:11:00.010 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout inactive 2024-09-15T03:11:00.010 INFO:teuthology.orchestra.run.smithi032.stdout:firewalld.service is not enabled 2024-09-15T03:11:00.010 INFO:teuthology.orchestra.run.smithi032.stdout:Not possible to enable service . firewalld.service is not available 2024-09-15T03:11:00.019 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-15T03:11:00.020 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout disabled 2024-09-15T03:11:00.028 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-15T03:11:00.028 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout inactive 2024-09-15T03:11:00.028 INFO:teuthology.orchestra.run.smithi032.stdout:firewalld.service is not enabled 2024-09-15T03:11:00.028 INFO:teuthology.orchestra.run.smithi032.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-15T03:11:00.028 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for mgr to start... 2024-09-15T03:11:00.028 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for mgr... 2024-09-15T03:11:00.138 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 podman[28013]: 2024-09-15 03:10:59.886215594 +0000 UTC m=+0.316025793 container init 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238) 2024-09-15T03:11:00.138 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 podman[28013]: 2024-09-15 03:10:59.889177472 +0000 UTC m=+0.318987662 container start 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:11:00.138 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 bash[28013]: 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec 2024-09-15T03:11:00.138 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:10:59 smithi032 systemd[1]: Started Ceph mgr.a for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:11:00.138 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.006+0000 7fc11d35cec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-15T03:11:00.139 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.069+0000 7fc11d35cec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-15T03:11:00.139 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.136+0000 7fc11d35cec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-15T03:11:00.414 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.268+0000 7fc11d35cec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:11:00.414 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.412+0000 7fc11d35cec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-15T03:11:00.692 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3296183939' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-15T03:11:01.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.689+0000 7fc11d35cec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-15T03:11:01.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.758+0000 7fc11d35cec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-15T03:11:01.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:00 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:00.929+0000 7fc11d35cec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-15T03:11:01.134 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:11:01.134 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:01.134 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "fsid": "f2ed5114-730f-11ef-bceb-c7b262605968", 2024-09-15T03:11:01.134 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "health": { 2024-09-15T03:11:01.134 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 0 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "a" 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-15T03:11:01.135 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.136 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.137 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "restful" 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "modified": "2024-09-15T03:10:52.498932+0000", 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:01.138 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-15T03:11:01.139 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:01.139 INFO:teuthology.orchestra.run.smithi032.stdout:mgr not available, waiting (1/15)... 2024-09-15T03:11:02.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:01 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:01.821+0000 7fc11d35cec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-15T03:11:02.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:01 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:01.888+0000 7fc11d35cec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-15T03:11:02.943 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:02 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:02.639+0000 7fc11d35cec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-15T03:11:02.943 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:02 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:02.755+0000 7fc11d35cec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-15T03:11:02.943 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:02 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:02.880+0000 7fc11d35cec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:11:02.944 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:02 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:02.941+0000 7fc11d35cec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-15T03:11:03.207 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.072+0000 7fc11d35cec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-15T03:11:03.208 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.142+0000 7fc11d35cec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-15T03:11:03.208 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.205+0000 7fc11d35cec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-15T03:11:03.489 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.351+0000 7fc11d35cec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-15T03:11:03.489 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.418+0000 7fc11d35cec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-15T03:11:03.489 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.487+0000 7fc11d35cec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-15T03:11:03.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/4179916973' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-15T03:11:03.878 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.573+0000 7fc11d35cec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-15T03:11:03.878 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.643+0000 7fc11d35cec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-15T03:11:03.878 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:03 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:03.703+0000 7fc11d35cec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-15T03:11:04.221 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:11:04.221 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "fsid": "f2ed5114-730f-11ef-bceb-c7b262605968", 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "health": { 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 0 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "a" 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:04.222 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-15T03:11:04.223 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.227 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "restful" 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:04.228 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "modified": "2024-09-15T03:10:52.498932+0000", 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:04.229 INFO:teuthology.orchestra.run.smithi032.stdout:mgr not available, waiting (2/15)... 2024-09-15T03:11:04.877 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:04.487+0000 7fc11d35cec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: Activating manager daemon a 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: mgrmap e2: a(active, starting, since 0.00281323s) 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-15T03:11:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: Manager daemon a is now available 2024-09-15T03:11:04.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-15T03:11:04.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-15T03:11:04.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' 2024-09-15T03:11:04.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' 2024-09-15T03:11:04.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:04 smithi032 ceph-mon[27800]: from='mgr.14100 172.21.15.32:0/1874658046' entity='mgr.a' 2024-09-15T03:11:06.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:06 smithi032 ceph-mon[27800]: mgrmap e3: a(active, since 1.00685s) 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "fsid": "f2ed5114-730f-11ef-bceb-c7b262605968", 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "health": { 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-15T03:11:07.461 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 0 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "a" 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-15T03:11:07.462 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-15T03:11:07.463 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-15T03:11:07.467 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-15T03:11:07.468 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "restful" 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ], 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "modified": "2024-09-15T03:10:52.498932+0000", 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout }, 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:07.469 INFO:teuthology.orchestra.run.smithi032.stdout:mgr is available 2024-09-15T03:11:07.800 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:07 smithi032 ceph-mon[27800]: mgrmap e4: a(active, since 2s) 2024-09-15T03:11:07.800 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:07 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/1138917249' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-15T03:11:08.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:08 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3471231562' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-15T03:11:08.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:08 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3471231562' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout [global] 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout fsid = f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-15T03:11:08.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-15T03:11:08.634 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 2024-09-15T03:11:08.634 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout [osd] 2024-09-15T03:11:08.634 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-15T03:11:08.634 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-15T03:11:08.634 INFO:teuthology.orchestra.run.smithi032.stdout:Enabling cephadm module... 2024-09-15T03:11:09.763 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3102193869' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-15T03:11:09.763 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ignoring --setuser ceph since I am not root 2024-09-15T03:11:09.763 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ignoring --setgroup ceph since I am not root 2024-09-15T03:11:09.763 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:09.635+0000 7f5a24a7fec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-15T03:11:09.763 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:09.692+0000 7f5a24a7fec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-15T03:11:09.763 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:09.761+0000 7f5a24a7fec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-15T03:11:10.038 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:09.892+0000 7f5a24a7fec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:11:10.294 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:10 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:10.036+0000 7f5a24a7fec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-15T03:11:10.561 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:10 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3102193869' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-15T03:11:10.561 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:10 smithi032 ceph-mon[27800]: mgrmap e5: a(active, since 5s) 2024-09-15T03:11:10.561 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:10 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:10.318+0000 7f5a24a7fec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-15T03:11:10.561 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:10 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:10.386+0000 7f5a24a7fec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-15T03:11:10.877 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:10 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:10.559+0000 7f5a24a7fec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for the mgr to restart... 2024-09-15T03:11:11.312 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for mgr epoch 5... 2024-09-15T03:11:11.761 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:11 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2007631990' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-15T03:11:11.761 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:11 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:11.464+0000 7f5a24a7fec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-15T03:11:11.761 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:11 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:11.533+0000 7f5a24a7fec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-15T03:11:12.602 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.293+0000 7f5a24a7fec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-15T03:11:12.602 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.411+0000 7f5a24a7fec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-15T03:11:12.602 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.537+0000 7f5a24a7fec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:11:12.602 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.600+0000 7f5a24a7fec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-15T03:11:12.865 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.732+0000 7f5a24a7fec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-15T03:11:12.865 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.802+0000 7f5a24a7fec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-15T03:11:12.865 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:12 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:12.863+0000 7f5a24a7fec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-15T03:11:13.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:13 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:13.005+0000 7f5a24a7fec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-15T03:11:13.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:13 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:13.071+0000 7f5a24a7fec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-15T03:11:13.627 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:13 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:13.140+0000 7f5a24a7fec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-15T03:11:13.628 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:13 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:13.226+0000 7f5a24a7fec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-15T03:11:13.628 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:13 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:13.286+0000 7f5a24a7fec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-15T03:11:13.628 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:13 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:13.346+0000 7f5a24a7fec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-15T03:11:14.628 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:14.133+0000 7f5a24a7fec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-15T03:11:14.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: Active manager daemon a restarted 2024-09-15T03:11:14.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: Activating manager daemon a 2024-09-15T03:11:14.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: osdmap e2: 0 total, 0 up, 0 in 2024-09-15T03:11:14.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: mgrmap e6: a(active, starting, since 0.00296257s) 2024-09-15T03:11:14.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:11:14.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-15T03:11:14.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-15T03:11:14.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-15T03:11:14.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-15T03:11:14.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: Manager daemon a is now available 2024-09-15T03:11:14.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:14.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:14.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:14.631 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:14.631 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-15T03:11:14.631 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:14 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-15T03:11:15.447 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:15 smithi032 ceph-mon[27800]: Found migration_current of "None". Setting to last migration. 2024-09-15T03:11:15.447 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:15 smithi032 ceph-mon[27800]: mgrmap e7: a(active, since 1.00519s) 2024-09-15T03:11:15.725 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:15.725 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-15T03:11:15.725 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-15T03:11:15.725 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:15.725 INFO:teuthology.orchestra.run.smithi032.stdout:mgr epoch 5 is available 2024-09-15T03:11:15.725 INFO:teuthology.orchestra.run.smithi032.stdout:Setting orchestrator backend to cephadm... 2024-09-15T03:11:16.284 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:16 smithi032 ceph-mon[27800]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-15T03:11:16.285 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:16 smithi032 ceph-mon[27800]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:17.032+0000 7f59d6e2d640 -1 log_channel(cephadm) log [ERR] : [15/Sep/2024:03:11:17] ENGINE Error in HTTPServer.serve 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: Traceback (most recent call last): 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self._connections.run(self.expiration_interval) 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self._run(expiration_interval) 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-15T03:11:17.190 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: new_conn = self._from_server_socket(self.server.socket) 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: s = self.context.wrap_socket( 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: return self.sslsocket_class._create( 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self.do_handshake() 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self._sslobj.do_handshake() 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-15T03:11:17.191 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:17.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-mon[27800]: mgrmap e8: a(active, since 2s) 2024-09-15T03:11:17.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-mon[27800]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:17.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:17.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:17.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:17.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:17 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:18.021 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-15T03:11:18.021 INFO:teuthology.orchestra.run.smithi032.stdout:Generating ssh key... 2024-09-15T03:11:18.290 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:16] ENGINE Bus STARTING 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:17] ENGINE Serving on https://172.21.15.32:7150 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:17] ENGINE Bus STARTED 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:17] ENGINE Error in HTTPServer.serve 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: Traceback (most recent call last): 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: self._connections.run(self.expiration_interval) 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: self._run(expiration_interval) 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-15T03:11:18.291 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: s = self.context.wrap_socket( 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: return self.sslsocket_class._create( 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: self.do_handshake() 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: self._sslobj.do_handshake() 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-15T03:11:18.292 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-mon[27800]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:19.283 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: Generating public/private rsa key pair. 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: Your identification has been saved in /tmp/tmp2uef24ve/key 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: Your public key has been saved in /tmp/tmp2uef24ve/key.pub 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: The key fingerprint is: 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: SHA256:pe/j+Hfsrcv3eFq4CoekYfncqXZEOp1/7/GJQhySZcU ceph-f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: The key's randomart image is: 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: +---[RSA 3072]----+ 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | o. | 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | o E | 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | = | 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | * .. | 2024-09-15T03:11:19.284 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | S ++.. | 2024-09-15T03:11:19.285 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | . Bo=+. . | 2024-09-15T03:11:19.285 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | . Bo+o...| 2024-09-15T03:11:19.285 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | oo=o.==B| 2024-09-15T03:11:19.285 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: | .+=+o=OXO| 2024-09-15T03:11:19.285 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:18 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: +----[SHA256]-----+ 2024-09-15T03:11:20.131 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:19 smithi032 ceph-mon[27800]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:20.131 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:19 smithi032 ceph-mon[27800]: Generating ssh key... 2024-09-15T03:11:20.131 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:19 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:20.131 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:19 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:20.683 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:11:20.684 INFO:teuthology.orchestra.run.smithi032.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-15T03:11:20.684 INFO:teuthology.orchestra.run.smithi032.stdout:Adding key to root@localhost authorized_keys... 2024-09-15T03:11:20.695 INFO:teuthology.orchestra.run.smithi032.stdout:Adding host smithi032... 2024-09-15T03:11:21.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:20 smithi032 ceph-mon[27800]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:22.341 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:21 smithi032 ceph-mon[27800]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi032", "addr": "172.21.15.32", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:23.267 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:22 smithi032 ceph-mon[27800]: Deploying cephadm binary to smithi032 2024-09-15T03:11:25.492 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout Added host 'smithi032' with addr '172.21.15.32' 2024-09-15T03:11:25.492 INFO:teuthology.orchestra.run.smithi032.stdout:Deploying unmanaged mon service... 2024-09-15T03:11:26.021 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:25 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:26.022 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:25 smithi032 ceph-mon[27800]: Added host smithi032 2024-09-15T03:11:26.022 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:25 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:26.746 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-15T03:11:26.746 INFO:teuthology.orchestra.run.smithi032.stdout:Deploying unmanaged mgr service... 2024-09-15T03:11:27.598 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:27 smithi032 ceph-mon[27800]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:27.598 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:27 smithi032 ceph-mon[27800]: Saving service mon spec with placement count:5 2024-09-15T03:11:27.598 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:27 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:28.590 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-15T03:11:28.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:28 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:28.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:28 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:28.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:28 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:29.771 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:29 smithi032 ceph-mon[27800]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:29.771 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:29 smithi032 ceph-mon[27800]: Saving service mgr spec with placement count:2 2024-09-15T03:11:29.771 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:29 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2024406390' entity='client.admin' 2024-09-15T03:11:31.374 INFO:teuthology.orchestra.run.smithi032.stdout:Enabling the dashboard module... 2024-09-15T03:11:31.942 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:31 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:31.942 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:31 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2339447666' entity='client.admin' 2024-09-15T03:11:31.942 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:31 smithi032 ceph-mon[27800]: from='mgr.14118 172.21.15.32:0/1916653005' entity='mgr.a' 2024-09-15T03:11:32.933 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:32 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/1156318240' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-15T03:11:32.933 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:32 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ignoring --setuser ceph since I am not root 2024-09-15T03:11:32.934 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:32 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ignoring --setgroup ceph since I am not root 2024-09-15T03:11:32.934 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:32 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:32.808+0000 7f6b76c83ec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-15T03:11:32.934 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:32 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:32.865+0000 7f6b76c83ec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-15T03:11:32.934 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:32 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:32.932+0000 7f6b76c83ec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-15T03:11:33.209 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:33.065+0000 7f6b76c83ec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:11:33.209 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:33.208+0000 7f6b76c83ec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-15T03:11:33.747 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/1156318240' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-15T03:11:33.747 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-mon[27800]: mgrmap e9: a(active, since 18s) 2024-09-15T03:11:33.747 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:33.484+0000 7f6b76c83ec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-15T03:11:33.747 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:33.546+0000 7f6b76c83ec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-15T03:11:33.747 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:33.720+0000 7f6b76c83ec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-15T03:11:34.627 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:34 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:34.610+0000 7f6b76c83ec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for the mgr to restart... 2024-09-15T03:11:34.671 INFO:teuthology.orchestra.run.smithi032.stdout:Waiting for mgr epoch 9... 2024-09-15T03:11:34.970 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:34 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3803523620' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-15T03:11:34.971 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:34 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:34.679+0000 7f6b76c83ec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-15T03:11:35.734 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.430+0000 7f6b76c83ec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-15T03:11:35.734 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.546+0000 7f6b76c83ec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-15T03:11:35.734 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.672+0000 7f6b76c83ec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:11:35.734 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.733+0000 7f6b76c83ec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-15T03:11:35.994 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.863+0000 7f6b76c83ec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-15T03:11:35.994 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.933+0000 7f6b76c83ec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-15T03:11:35.994 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:35 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:35.993+0000 7f6b76c83ec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-15T03:11:36.267 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:36 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:36.133+0000 7f6b76c83ec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-15T03:11:36.267 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:36 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:36.199+0000 7f6b76c83ec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-15T03:11:36.267 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:36 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:36.266+0000 7f6b76c83ec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-15T03:11:36.627 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:36 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:36.350+0000 7f6b76c83ec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-15T03:11:36.627 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:36 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:36.409+0000 7f6b76c83ec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-15T03:11:36.628 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:36 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:36.468+0000 7f6b76c83ec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:37.244+0000 7f6b76c83ec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: Active manager daemon a restarted 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: Activating manager daemon a 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: osdmap e3: 0 total, 0 up, 0 in 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: mgrmap e10: a(active, starting, since 0.0032376s) 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-15T03:11:37.500 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-15T03:11:37.501 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-15T03:11:37.501 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-15T03:11:37.501 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: Manager daemon a is now available 2024-09-15T03:11:37.501 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:37.501 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-15T03:11:37.501 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-15T03:11:39.155 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout { 2024-09-15T03:11:39.155 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-15T03:11:39.155 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-15T03:11:39.156 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout } 2024-09-15T03:11:39.156 INFO:teuthology.orchestra.run.smithi032.stdout:mgr epoch 9 is available 2024-09-15T03:11:39.156 INFO:teuthology.orchestra.run.smithi032.stdout:Generating a dashboard self-signed certificate... 2024-09-15T03:11:39.522 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-mon[27800]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-15T03:11:39.522 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-mon[27800]: mgrmap e11: a(active, since 1.00602s) 2024-09-15T03:11:39.523 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-mon[27800]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-15T03:11:39.523 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:39.925+0000 7f6b276e0640 -1 log_channel(cephadm) log [ERR] : [15/Sep/2024:03:11:39] ENGINE Error in HTTPServer.serve 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: Traceback (most recent call last): 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self._connections.run(self.expiration_interval) 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self._run(expiration_interval) 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-15T03:11:40.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: new_conn = self._from_server_socket(self.server.socket) 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: s = self.context.wrap_socket( 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: return self.sslsocket_class._create( 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self.do_handshake() 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: self._sslobj.do_handshake() 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-15T03:11:40.129 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:11:39 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:11:40.370 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-15T03:11:40.370 INFO:teuthology.orchestra.run.smithi032.stdout:Creating initial admin user... 2024-09-15T03:11:40.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:40 smithi032 ceph-mon[27800]: mgrmap e12: a(active, since 2s) 2024-09-15T03:11:40.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:40.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:40.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:41.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:41 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:39] ENGINE Bus STARTING 2024-09-15T03:11:41.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:41 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:39] ENGINE Serving on https://172.21.15.32:7150 2024-09-15T03:11:41.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:41 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:39] ENGINE Bus STARTED 2024-09-15T03:11:41.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:41 smithi032 ceph-mon[27800]: [15/Sep/2024:03:11:39] ENGINE Error in HTTPServer.serve 2024-09-15T03:11:41.878 INFO:journalctl@ceph.mon.a.smithi032.stdout: Traceback (most recent call last): 2024-09-15T03:11:41.878 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-15T03:11:41.878 INFO:journalctl@ceph.mon.a.smithi032.stdout: self._connections.run(self.expiration_interval) 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: self._run(expiration_interval) 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-15T03:11:41.879 INFO:journalctl@ceph.mon.a.smithi032.stdout: s = self.context.wrap_socket( 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: return self.sslsocket_class._create( 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: self.do_handshake() 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: self._sslobj.do_handshake() 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-15T03:11:41.880 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:41 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:42.459 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$EISW8IWjrLz5xY7xalvv2OH4cWTYg9B/dPpPZWK1soNqTQ6aZUmnW", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726369901, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-15T03:11:42.459 INFO:teuthology.orchestra.run.smithi032.stdout:Fetching dashboard port number... 2024-09-15T03:11:42.711 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:42 smithi032 ceph-mon[27800]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:43.633 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stdout 8443 2024-09-15T03:11:43.644 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-15T03:11:43.644 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout disabled 2024-09-15T03:11:43.652 INFO:teuthology.orchestra.run.smithi032.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-15T03:11:43.652 INFO:teuthology.orchestra.run.smithi032.stdout:systemctl: stdout inactive 2024-09-15T03:11:43.652 INFO:teuthology.orchestra.run.smithi032.stdout:firewalld.service is not enabled 2024-09-15T03:11:43.652 INFO:teuthology.orchestra.run.smithi032.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-15T03:11:43.654 INFO:teuthology.orchestra.run.smithi032.stdout:Ceph Dashboard is now available at: 2024-09-15T03:11:43.654 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:43.654 INFO:teuthology.orchestra.run.smithi032.stdout: URL: https://smithi032.front.sepia.ceph.com:8443/ 2024-09-15T03:11:43.654 INFO:teuthology.orchestra.run.smithi032.stdout: User: admin 2024-09-15T03:11:43.654 INFO:teuthology.orchestra.run.smithi032.stdout: Password: x6xvctwhwx 2024-09-15T03:11:43.654 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:43.655 INFO:teuthology.orchestra.run.smithi032.stdout:Saving cluster configuration to /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config directory 2024-09-15T03:11:43.655 INFO:teuthology.orchestra.run.smithi032.stdout:Enabling autotune for osd_memory_target 2024-09-15T03:11:43.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:43 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2445221588' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-15T03:11:44.788 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:44 smithi032 ceph-mon[27800]: mgrmap e13: a(active, since 6s) 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout:Or, if you are only running a single cluster on this host: 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-15T03:11:46.004 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout: ceph telemetry on 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout:For more information see: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout: https://docs.ceph.com/docs/master/mgr/telemetry/ 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:11:46.005 INFO:teuthology.orchestra.run.smithi032.stdout:Bootstrap complete. 2024-09-15T03:11:46.043 INFO:tasks.cephadm:Fetching config... 2024-09-15T03:11:46.044 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:11:46.044 DEBUG:teuthology.orchestra.run.smithi032:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-15T03:11:46.061 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-15T03:11:46.061 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:11:46.062 DEBUG:teuthology.orchestra.run.smithi032:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-15T03:11:46.118 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-15T03:11:46.118 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:11:46.118 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd if=/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-15T03:11:46.187 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-15T03:11:46.187 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:11:46.187 DEBUG:teuthology.orchestra.run.smithi032:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-15T03:11:46.243 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-15T03:11:46.244 DEBUG:teuthology.orchestra.run.smithi032:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-15T03:11:46.322 INFO:teuthology.orchestra.run.smithi032.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:11:46.334 DEBUG:teuthology.orchestra.run.smithi096:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-15T03:11:46.380 INFO:teuthology.orchestra.run.smithi096.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:11:46.393 DEBUG:teuthology.orchestra.run.smithi187:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-15T03:11:46.465 INFO:teuthology.orchestra.run.smithi187.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCK5NDn7jEXqxODvp53zcxEvPaJFUq5rZqTD/Ed+Oelrkq5KfdEeb7/JoDhSmBB7+m8wmcOfMXbEg7Dk1LXqYPDc+7+9fYYc4WSMaifJL9kRTvyWbzzSt00K6dvHHcouhj3nIcVmpFgm0rFYCIbonLuuz4qo9OLsYc4zIL+vO14qmnh6X/zRPr+9B+ih2W1scPFf3myI9HBaLuAjHLHDkeMiENvqUOrO9FZT5x+6H+Q12r52JTagpmDvkr/P6pHCHnqE1NEKEuYFjQw1ie1U0LpUveG/xRHBpO32Otye2ufBVz8/psJRZt+jHqG0hXTe0NLnkM6YwiQphKiEr1QnJzM93MeN/k+IpcMWmpwc4G+6w3l0f/89sPCcw5SS7zwHNSk3f0qcZ3mKNbCHyycz+vnD4R5HQlrqdXFRTgu6KnUUfNKKKAEgaj1nHUQVa82WG4p8GxKp8RF2RQf7yOxwQNwUAJX6CN+k/dcCCPyoOog/kEE50NywZbcYekDp/xwWhs= ceph-f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:11:46.478 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-15T03:11:46.539 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:46 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2885486357' entity='client.admin' 2024-09-15T03:11:46.739 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:11:49.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:48 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:49.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:48 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:49.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:48 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi032", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:11:49.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:48 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:49.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:48 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:49.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:48 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:49.735 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-15T03:11:49.735 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-15T03:11:50.371 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:50 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3137365759' entity='client.admin' 2024-09-15T03:11:50.372 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:50 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:50.372 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:50 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:50.433 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:11:52.948 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi096 2024-09-15T03:11:52.948 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:11:52.948 DEBUG:teuthology.orchestra.run.smithi096:> dd of=/etc/ceph/ceph.conf 2024-09-15T03:11:52.968 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:11:52.968 DEBUG:teuthology.orchestra.run.smithi096:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:11:53.026 INFO:tasks.cephadm:Adding host smithi096 to orchestrator... 2024-09-15T03:11:53.027 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch host add smithi096 2024-09-15T03:11:53.275 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: Updating smithi032:/etc/ceph/ceph.conf 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: Updating smithi032:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:11:53.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:53.379 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:53.379 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:54.369 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:54 smithi032 ceph-mon[27800]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:11:56.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:55 smithi032 ceph-mon[27800]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi096", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:11:57.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:56 smithi032 ceph-mon[27800]: Deploying cephadm binary to smithi096 2024-09-15T03:11:58.180 INFO:teuthology.orchestra.run.smithi032.stdout:Added host 'smithi096' with addr '172.21.15.96' 2024-09-15T03:11:58.492 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:58 smithi032 ceph-mon[27800]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:11:58.492 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:58.492 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:11:58.773 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-15T03:11:59.024 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:11:59.824 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:59 smithi032 ceph-mon[27800]: Added host smithi096 2024-09-15T03:11:59.825 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:11:59.825 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:11:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:00.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:00 smithi032 ceph-mon[27800]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:00.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:00.719 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:12:00.719 INFO:teuthology.orchestra.run.smithi032.stdout:[{"addr": "172.21.15.32", "hostname": "smithi032", "labels": [], "status": ""}, {"addr": "172.21.15.96", "hostname": "smithi096", "labels": [], "status": ""}] 2024-09-15T03:12:01.368 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi187 2024-09-15T03:12:01.368 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:12:01.368 DEBUG:teuthology.orchestra.run.smithi187:> dd of=/etc/ceph/ceph.conf 2024-09-15T03:12:01.388 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:12:01.389 DEBUG:teuthology.orchestra.run.smithi187:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:01.447 INFO:tasks.cephadm:Adding host smithi187 to orchestrator... 2024-09-15T03:12:01.448 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch host add smithi187 2024-09-15T03:12:01.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:01 smithi032 ceph-mon[27800]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:12:01.704 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:12:02.797 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:02.798 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:03.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:03 smithi032 ceph-mon[27800]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:12:03.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:03 smithi032 ceph-mon[27800]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:03.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:03.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:03.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:04.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:04 smithi032 ceph-mon[27800]: Updating smithi096:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:04.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:04 smithi032 ceph-mon[27800]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:12:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:04 smithi032 ceph-mon[27800]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:04.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:04 smithi032 ceph-mon[27800]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:05.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:05 smithi032 ceph-mon[27800]: Deploying cephadm binary to smithi187 2024-09-15T03:12:06.840 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:06 smithi032 ceph-mon[27800]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:06.841 INFO:teuthology.orchestra.run.smithi032.stdout:Added host 'smithi187' with addr '172.21.15.187' 2024-09-15T03:12:07.471 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-15T03:12:07.721 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:12:08.090 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:07 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:08.090 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:07 smithi032 ceph-mon[27800]: Added host smithi187 2024-09-15T03:12:08.090 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:07 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:08.090 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:07 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:08.090 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:07 smithi032 ceph-mon[27800]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:08.090 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:07 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:09.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:09 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:09.419 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:12:09.419 INFO:teuthology.orchestra.run.smithi032.stdout:[{"addr": "172.21.15.32", "hostname": "smithi032", "labels": [], "status": ""}, {"addr": "172.21.15.96", "hostname": "smithi096", "labels": [], "status": ""}, {"addr": "172.21.15.187", "hostname": "smithi187", "labels": [], "status": ""}] 2024-09-15T03:12:10.005 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-15T03:12:10.006 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-15T03:12:10.259 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:12:10.368 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:10 smithi032 ceph-mon[27800]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:10.368 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:10 smithi032 ceph-mon[27800]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:12:12.057 INFO:teuthology.orchestra.run.smithi032.stderr:adjusted tunables profile to default 2024-09-15T03:12:12.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi187", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: Updating smithi187:/etc/ceph/ceph.conf 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: Updating smithi187:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:12.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/275849060' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-15T03:12:12.379 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.379 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.379 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:12.668 INFO:tasks.cephadm:Adding mon.a on smithi032 2024-09-15T03:12:12.668 INFO:tasks.cephadm:Adding mon.b on smithi096 2024-09-15T03:12:12.668 INFO:tasks.cephadm:Adding mon.c on smithi187 2024-09-15T03:12:12.669 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi032:172.21.15.32=a;smithi096:172.21.15.96=b;smithi187:172.21.15.187=c' 2024-09-15T03:12:12.919 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:13.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:13 smithi032 ceph-mon[27800]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:12:13.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:13 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/275849060' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-15T03:12:13.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:13 smithi032 ceph-mon[27800]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:14.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:14 smithi032 ceph-mon[27800]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:14.567 INFO:teuthology.orchestra.run.smithi187.stdout:Scheduled mon update... 2024-09-15T03:12:15.152 DEBUG:teuthology.orchestra.run.smithi096:mon.b> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.b.service 2024-09-15T03:12:15.155 DEBUG:teuthology.orchestra.run.smithi187:mon.c> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.c.service 2024-09-15T03:12:15.157 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-15T03:12:15.157 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-15T03:12:15.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi032:172.21.15.32=a;smithi096:172.21.15.96=b;smithi187:172.21.15.187=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: Saving service mon spec with placement smithi032:172.21.15.32=a;smithi096:172.21.15.96=b;smithi187:172.21.15.187=c;count:3 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:15.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:15 smithi032 ceph-mon[27800]: Deploying daemon mon.c on smithi187 2024-09-15T03:12:15.909 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:16.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:16 smithi032 ceph-mon[27800]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:17.459 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:12:17.459 INFO:teuthology.orchestra.run.smithi187.stdout:{"epoch":1,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","modified":"2024-09-15T03:10:49.562346Z","created":"2024-09-15T03:10:49.562346Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:3300","nonce":0},{"type":"v1","addr":"172.21.15.32:6789","nonce":0}]},"addr":"172.21.15.32:6789/0","public_addr":"172.21.15.32:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-15T03:12:17.459 INFO:teuthology.orchestra.run.smithi187.stderr:dumped monmap epoch 1 2024-09-15T03:12:17.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:17 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/3893362673' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:18.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:18 smithi032 ceph-mon[27800]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:19.130 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-15T03:12:19.130 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-15T03:12:19.388 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:12:20.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:20 smithi032 ceph-mon[27800]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:21.517 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:21 smithi187 ceph-mon[31764]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-15T03:12:21.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:21 smithi187 bash[31722]: c89f8ec6c90574b6f5a2916c39c7636db4094f105e9c7815fbe866e608820519 2024-09-15T03:12:21.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:21 smithi187 systemd[1]: Started Ceph mon.c for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:12:26.519 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:12:26.520 INFO:teuthology.orchestra.run.smithi187.stdout:{"epoch":2,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","modified":"2024-09-15T03:12:21.506012Z","created":"2024-09-15T03:10:49.562346Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:3300","nonce":0},{"type":"v1","addr":"172.21.15.32:6789","nonce":0}]},"addr":"172.21.15.32:6789/0","public_addr":"172.21.15.32:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:3300","nonce":0},{"type":"v1","addr":"172.21.15.187:6789","nonce":0}]},"addr":"172.21.15.187:6789/0","public_addr":"172.21.15.187:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-15T03:12:26.520 INFO:teuthology.orchestra.run.smithi187.stderr:dumped monmap epoch 2 2024-09-15T03:12:26.827 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:26.827 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:12:26.827 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: mon.a calling monitor election 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='client.? 172.21.15.187:0/3006836073' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: mon.c calling monitor election 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-15T03:12:26.828 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: monmap e2: 2 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],c=[v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: fsmap 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: mgrmap e13: a(active, since 49s) 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: overall HEALTH_OK 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:26.829 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:26 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: mon.a calling monitor election 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/3006836073' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: mon.c calling monitor election 2024-09-15T03:12:26.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: monmap e2: 2 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],c=[v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: fsmap 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: mgrmap e13: a(active, since 49s) 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: overall HEALTH_OK 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:26.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:27.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:27 smithi032 ceph-mon[27800]: Deploying daemon mon.b on smithi096 2024-09-15T03:12:27.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:27.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:27 smithi187 ceph-mon[31764]: Deploying daemon mon.b on smithi096 2024-09-15T03:12:27.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:27 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:28.063 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-15T03:12:28.063 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-15T03:12:28.327 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:12:28.763 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:28 smithi187 ceph-mon[31764]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:28.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:28 smithi032 ceph-mon[27800]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:28.878 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:12:28 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:12:28.505+0000 7f6b5b215640 -1 mgr.server handle_report got status from non-daemon mon.c 2024-09-15T03:12:30.115 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:12:30.115 INFO:teuthology.orchestra.run.smithi187.stdout:{"epoch":2,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","modified":"2024-09-15T03:12:21.506012Z","created":"2024-09-15T03:10:49.562346Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:3300","nonce":0},{"type":"v1","addr":"172.21.15.32:6789","nonce":0}]},"addr":"172.21.15.32:6789/0","public_addr":"172.21.15.32:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:3300","nonce":0},{"type":"v1","addr":"172.21.15.187:6789","nonce":0}]},"addr":"172.21.15.187:6789/0","public_addr":"172.21.15.187:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-15T03:12:30.115 INFO:teuthology.orchestra.run.smithi187.stderr:dumped monmap epoch 2 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:30.359 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi096:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Deploying cephadm binary to smithi187 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.360 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Added host smithi187 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.361 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi187", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi187:/etc/ceph/ceph.conf 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi187:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/275849060' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:12:30.362 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/275849060' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-15T03:12:30.363 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:30.363 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.363 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi032:172.21.15.32=a;smithi096:172.21.15.96=b;smithi187:172.21.15.187=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:30.363 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Saving service mon spec with placement smithi032:172.21.15.32=a;smithi096:172.21.15.96=b;smithi187:172.21.15.187=c;count:3 2024-09-15T03:12:30.363 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.363 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Deploying daemon mon.c on smithi187 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/3893362673' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.364 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mon.a calling monitor election 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/3006836073' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mon.c calling monitor election 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.365 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.366 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.366 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-15T03:12:30.366 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: monmap e2: 2 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],c=[v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:12:30.366 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: fsmap 2024-09-15T03:12:30.368 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:30.368 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mgrmap e13: a(active, since 49s) 2024-09-15T03:12:30.368 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: overall HEALTH_OK 2024-09-15T03:12:30.368 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.368 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.368 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:30.369 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:30.369 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:30.369 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: Deploying daemon mon.b on smithi096 2024-09-15T03:12:30.369 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:30.369 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:30.369 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 ceph-mon[31365]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-15T03:12:30.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 bash[31346]: df8a673523c8a1f7b55f1248cd4e562986ce9cf51121334d4f5fa91bebdedc5a 2024-09-15T03:12:30.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:30 smithi096 systemd[1]: Started Ceph mon.b for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:12:31.707 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-15T03:12:31.707 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-15T03:12:31.962 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: mon.a calling monitor election 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: mon.c calling monitor election 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: mon.b calling monitor election 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: monmap e3: 3 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],b=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0],c=[v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: fsmap 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: mgrmap e13: a(active, since 58s) 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: overall HEALTH_OK 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: mon.a calling monitor election 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: mon.c calling monitor election 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: mon.b calling monitor election 2024-09-15T03:12:35.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: monmap e3: 3 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],b=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0],c=[v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: fsmap 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: mgrmap e13: a(active, since 58s) 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: overall HEALTH_OK 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: mon.a calling monitor election 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: mon.c calling monitor election 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: mon.b calling monitor election 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: monmap e3: 3 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],b=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0],c=[v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: fsmap 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: osdmap e4: 0 total, 0 up, 0 in 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: mgrmap e13: a(active, since 58s) 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: overall HEALTH_OK 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:35.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:36.503 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-09-15T03:12:36.504 INFO:teuthology.orchestra.run.smithi187.stdout:{"epoch":3,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","modified":"2024-09-15T03:12:30.361956Z","created":"2024-09-15T03:10:49.562346Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:3300","nonce":0},{"type":"v1","addr":"172.21.15.32:6789","nonce":0}]},"addr":"172.21.15.32:6789/0","public_addr":"172.21.15.32:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:3300","nonce":0},{"type":"v1","addr":"172.21.15.187:6789","nonce":0}]},"addr":"172.21.15.187:6789/0","public_addr":"172.21.15.187:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-15T03:12:36.504 INFO:teuthology.orchestra.run.smithi187.stderr:dumped monmap epoch 3 2024-09-15T03:12:36.841 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:36 smithi187 ceph-mon[31764]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:36.841 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:36.841 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:36.841 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:36.841 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:36.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:36 smithi032 ceph-mon[27800]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:36.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:36.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:36.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:36.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:36.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:36 smithi096 ceph-mon[31365]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:36.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:36.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:12:36.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:36.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.173 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-15T03:12:37.173 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: Updating smithi032:/etc/ceph/ceph.conf 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: Updating smithi187:/etc/ceph/ceph.conf 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/2428714450' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.716 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:37.717 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: Updating smithi032:/etc/ceph/ceph.conf 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: Updating smithi187:/etc/ceph/ceph.conf 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='client.? 172.21.15.187:0/2428714450' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:37.909 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.910 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.910 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: Updating smithi032:/etc/ceph/ceph.conf 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: Updating smithi187:/etc/ceph/ceph.conf 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/2428714450' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.911 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:37.912 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:37.912 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:37.912 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:37.912 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:38.622 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:12:38.745 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:38 smithi032 ceph-mon[27800]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.745 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:38 smithi032 ceph-mon[27800]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.746 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:38 smithi032 ceph-mon[27800]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.746 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:38 smithi032 ceph-mon[27800]: Reconfiguring mon.a (unknown last config time)... 2024-09-15T03:12:38.746 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:38 smithi032 ceph-mon[27800]: Reconfiguring daemon mon.a on smithi032 2024-09-15T03:12:38.746 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:38 smithi032 ceph-mon[27800]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:38.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:38 smithi187 ceph-mon[31764]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:38 smithi187 ceph-mon[31764]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:38 smithi187 ceph-mon[31764]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:38 smithi187 ceph-mon[31764]: Reconfiguring mon.a (unknown last config time)... 2024-09-15T03:12:38.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:38 smithi187 ceph-mon[31764]: Reconfiguring daemon mon.a on smithi032 2024-09-15T03:12:38.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:38 smithi187 ceph-mon[31764]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:38.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:38 smithi096 ceph-mon[31365]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:38 smithi096 ceph-mon[31365]: Updating smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:38 smithi096 ceph-mon[31365]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:12:38.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:38 smithi096 ceph-mon[31365]: Reconfiguring mon.a (unknown last config time)... 2024-09-15T03:12:38.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:38 smithi096 ceph-mon[31365]: Reconfiguring daemon mon.a on smithi032 2024-09-15T03:12:38.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:38 smithi096 ceph-mon[31365]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:39.783 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:39.783 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:39.784 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: Reconfiguring mon.b (monmap changed)... 2024-09-15T03:12:39.784 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:39.784 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:39.784 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:39.784 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:39 smithi032 ceph-mon[27800]: Reconfiguring daemon mon.b on smithi096 2024-09-15T03:12:39.868 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:39.869 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:39.869 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: Reconfiguring mon.b (monmap changed)... 2024-09-15T03:12:39.869 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:39.869 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:39.869 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:39.869 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:39 smithi096 ceph-mon[31365]: Reconfiguring daemon mon.b on smithi096 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: Reconfiguring mon.b (monmap changed)... 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:39 smithi187 ceph-mon[31764]: Reconfiguring daemon mon.b on smithi096 2024-09-15T03:12:40.285 INFO:teuthology.orchestra.run.smithi032.stdout:# minimal ceph.conf for f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:12:40.285 INFO:teuthology.orchestra.run.smithi032.stdout:[global] 2024-09-15T03:12:40.285 INFO:teuthology.orchestra.run.smithi032.stdout: fsid = f2ed5114-730f-11ef-bceb-c7b262605968 2024-09-15T03:12:40.285 INFO:teuthology.orchestra.run.smithi032.stdout: mon_host = [v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0] [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:40.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:40 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/829295290' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:40.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:40.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:40.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:40.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:40.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:40.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:40.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:40 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/829295290' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:40.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:40.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:40.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:40.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:12:40.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:12:40.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:40.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:40 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/829295290' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:40.943 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-15T03:12:40.943 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:12:40.943 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/etc/ceph/ceph.conf 2024-09-15T03:12:40.971 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:12:40.971 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:41.037 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:12:41.037 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.conf 2024-09-15T03:12:41.070 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:12:41.070 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:41.137 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:12:41.138 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/ceph/ceph.conf 2024-09-15T03:12:41.168 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:12:41.168 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:12:41.235 INFO:tasks.cephadm:Adding mgr.a on smithi032 2024-09-15T03:12:41.235 INFO:tasks.cephadm:Adding mgr.b on smithi096 2024-09-15T03:12:41.235 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi032=a;smithi096=b' 2024-09-15T03:12:41.509 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:12:41.900 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:41 smithi187 ceph-mon[31764]: Reconfiguring mon.c (monmap changed)... 2024-09-15T03:12:41.900 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:41 smithi187 ceph-mon[31764]: Reconfiguring daemon mon.c on smithi187 2024-09-15T03:12:41.900 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:41 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:41.900 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:41 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:41.900 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:41 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:41.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:41 smithi096 ceph-mon[31365]: Reconfiguring mon.c (monmap changed)... 2024-09-15T03:12:41.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:41 smithi096 ceph-mon[31365]: Reconfiguring daemon mon.c on smithi187 2024-09-15T03:12:41.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:41 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:41.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:41 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:41.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:41 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:42.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:41 smithi032 ceph-mon[27800]: Reconfiguring mon.c (monmap changed)... 2024-09-15T03:12:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:41 smithi032 ceph-mon[27800]: Reconfiguring daemon mon.c on smithi187 2024-09-15T03:12:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:41 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:41 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:41 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:42.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:42 smithi187 ceph-mon[31764]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:42.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:42.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:42.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:42.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:42 smithi096 ceph-mon[31365]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:42.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:42.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:42.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:42.970 INFO:teuthology.orchestra.run.smithi187.stdout:Scheduled mgr update... 2024-09-15T03:12:43.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:42 smithi032 ceph-mon[27800]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:43.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:43.558 DEBUG:teuthology.orchestra.run.smithi096:mgr.b> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.b.service 2024-09-15T03:12:43.560 INFO:tasks.cephadm:Deploying OSDs... 2024-09-15T03:12:43.560 DEBUG:teuthology.orchestra.run.smithi032:> set -ex 2024-09-15T03:12:43.560 DEBUG:teuthology.orchestra.run.smithi032:> dd if=/scratch_devs of=/dev/stdout 2024-09-15T03:12:43.582 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-15T03:12:43.582 DEBUG:teuthology.orchestra.run.smithi032:> stat /dev/vg_nvme/lv_1 2024-09-15T03:12:43.642 INFO:teuthology.orchestra.run.smithi032.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-15T03:12:43.642 INFO:teuthology.orchestra.run.smithi032.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:43.643 INFO:teuthology.orchestra.run.smithi032.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-09-15T03:12:43.643 INFO:teuthology.orchestra.run.smithi032.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:43.643 INFO:teuthology.orchestra.run.smithi032.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:43.643 INFO:teuthology.orchestra.run.smithi032.stdout:Access: 2024-09-15 03:11:49.451747004 +0000 2024-09-15T03:12:43.643 INFO:teuthology.orchestra.run.smithi032.stdout:Modify: 2024-09-15 03:07:02.761987434 +0000 2024-09-15T03:12:43.643 INFO:teuthology.orchestra.run.smithi032.stdout:Change: 2024-09-15 03:07:02.761987434 +0000 2024-09-15T03:12:43.644 INFO:teuthology.orchestra.run.smithi032.stdout: Birth: 2024-09-15 03:07:02.761987434 +0000 2024-09-15T03:12:43.644 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-15T03:12:43.711 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records in 2024-09-15T03:12:43.711 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records out 2024-09-15T03:12:43.712 INFO:teuthology.orchestra.run.smithi032.stderr:512 bytes copied, 0.000112755 s, 4.5 MB/s 2024-09-15T03:12:43.713 DEBUG:teuthology.orchestra.run.smithi032:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-15T03:12:43.773 DEBUG:teuthology.orchestra.run.smithi032:> stat /dev/vg_nvme/lv_2 2024-09-15T03:12:43.830 INFO:teuthology.orchestra.run.smithi032.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout:Access: 2024-09-15 03:11:49.479746406 +0000 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout:Modify: 2024-09-15 03:07:03.084980475 +0000 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout:Change: 2024-09-15 03:07:03.084980475 +0000 2024-09-15T03:12:43.831 INFO:teuthology.orchestra.run.smithi032.stdout: Birth: 2024-09-15 03:07:03.084980475 +0000 2024-09-15T03:12:43.831 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-15T03:12:43.898 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records in 2024-09-15T03:12:43.898 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records out 2024-09-15T03:12:43.898 INFO:teuthology.orchestra.run.smithi032.stderr:512 bytes copied, 0.00013554 s, 3.8 MB/s 2024-09-15T03:12:43.900 DEBUG:teuthology.orchestra.run.smithi032:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-15T03:12:43.959 DEBUG:teuthology.orchestra.run.smithi032:> stat /dev/vg_nvme/lv_3 2024-09-15T03:12:44.017 INFO:teuthology.orchestra.run.smithi032.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-15T03:12:44.017 INFO:teuthology.orchestra.run.smithi032.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:44.017 INFO:teuthology.orchestra.run.smithi032.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-09-15T03:12:44.018 INFO:teuthology.orchestra.run.smithi032.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:44.018 INFO:teuthology.orchestra.run.smithi032.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:44.018 INFO:teuthology.orchestra.run.smithi032.stdout:Access: 2024-09-15 03:11:49.505745851 +0000 2024-09-15T03:12:44.018 INFO:teuthology.orchestra.run.smithi032.stdout:Modify: 2024-09-15 03:07:03.411973430 +0000 2024-09-15T03:12:44.018 INFO:teuthology.orchestra.run.smithi032.stdout:Change: 2024-09-15 03:07:03.411973430 +0000 2024-09-15T03:12:44.018 INFO:teuthology.orchestra.run.smithi032.stdout: Birth: 2024-09-15 03:07:03.411973430 +0000 2024-09-15T03:12:44.019 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-15T03:12:44.083 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records in 2024-09-15T03:12:44.083 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records out 2024-09-15T03:12:44.083 INFO:teuthology.orchestra.run.smithi032.stderr:512 bytes copied, 0.000111826 s, 4.6 MB/s 2024-09-15T03:12:44.085 DEBUG:teuthology.orchestra.run.smithi032:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-15T03:12:44.142 DEBUG:teuthology.orchestra.run.smithi032:> stat /dev/vg_nvme/lv_4 2024-09-15T03:12:44.199 INFO:teuthology.orchestra.run.smithi032.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-15T03:12:44.199 INFO:teuthology.orchestra.run.smithi032.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:44.199 INFO:teuthology.orchestra.run.smithi032.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-09-15T03:12:44.199 INFO:teuthology.orchestra.run.smithi032.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:44.199 INFO:teuthology.orchestra.run.smithi032.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:44.200 INFO:teuthology.orchestra.run.smithi032.stdout:Access: 2024-09-15 03:11:49.531745296 +0000 2024-09-15T03:12:44.200 INFO:teuthology.orchestra.run.smithi032.stdout:Modify: 2024-09-15 03:07:03.736966428 +0000 2024-09-15T03:12:44.200 INFO:teuthology.orchestra.run.smithi032.stdout:Change: 2024-09-15 03:07:03.736966428 +0000 2024-09-15T03:12:44.200 INFO:teuthology.orchestra.run.smithi032.stdout: Birth: 2024-09-15 03:07:03.736966428 +0000 2024-09-15T03:12:44.200 DEBUG:teuthology.orchestra.run.smithi032:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-15T03:12:44.263 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi032=a;smithi096=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:44.263 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: Saving service mgr spec with placement smithi032=a;smithi096=b;count:2 2024-09-15T03:12:44.263 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:44.263 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:44.264 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:44.264 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:44.264 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:44.264 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:12:44.264 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-15T03:12:44.264 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:12:44.265 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:44.265 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: Deploying daemon mgr.b on smithi096 2024-09-15T03:12:44.265 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:43 smithi032 ceph-mon[27800]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:44.265 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records in 2024-09-15T03:12:44.265 INFO:teuthology.orchestra.run.smithi032.stderr:1+0 records out 2024-09-15T03:12:44.266 INFO:teuthology.orchestra.run.smithi032.stderr:512 bytes copied, 9.5986e-05 s, 5.3 MB/s 2024-09-15T03:12:44.267 DEBUG:teuthology.orchestra.run.smithi032:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-15T03:12:44.325 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-09-15T03:12:44.325 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/scratch_devs of=/dev/stdout 2024-09-15T03:12:44.342 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-15T03:12:44.342 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_1 2024-09-15T03:12:44.398 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-15 03:12:29.823552816 +0000 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-15 03:07:00.017021369 +0000 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-15 03:07:00.017021369 +0000 2024-09-15T03:12:44.399 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: 2024-09-15 03:07:00.017021369 +0000 2024-09-15T03:12:44.400 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-15T03:12:44.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi032=a;smithi096=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:44.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: Saving service mgr spec with placement smithi032=a;smithi096=b;count:2 2024-09-15T03:12:44.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: Deploying daemon mgr.b on smithi096 2024-09-15T03:12:44.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:43 smithi187 ceph-mon[31764]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi032=a;smithi096=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: Saving service mgr spec with placement smithi032=a;smithi096=b;count:2 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-15T03:12:44.422 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:12:44.423 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:44.423 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: Deploying daemon mgr.b on smithi096 2024-09-15T03:12:44.423 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:43 smithi096 ceph-mon[31365]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:44.446 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-15T03:12:44.446 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-15T03:12:44.446 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000219488 s, 2.3 MB/s 2024-09-15T03:12:44.447 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-15T03:12:44.506 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_2 2024-09-15T03:12:44.561 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 687 Links: 1 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-15 03:12:29.824552795 +0000 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-15 03:07:00.335014719 +0000 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-15 03:07:00.335014719 +0000 2024-09-15T03:12:44.562 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: 2024-09-15 03:07:00.335014719 +0000 2024-09-15T03:12:44.563 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-15T03:12:44.628 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-15T03:12:44.628 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-15T03:12:44.628 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000202998 s, 2.5 MB/s 2024-09-15T03:12:44.629 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-15T03:12:44.690 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_3 2024-09-15T03:12:44.745 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-15 03:12:44.561241182 +0000 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-15 03:07:00.654008048 +0000 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-15 03:07:00.654008048 +0000 2024-09-15T03:12:44.746 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: 2024-09-15 03:07:00.654008048 +0000 2024-09-15T03:12:44.746 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-15T03:12:44.819 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-15T03:12:44.819 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-15T03:12:44.819 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000252129 s, 2.0 MB/s 2024-09-15T03:12:44.820 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-15T03:12:44.878 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_4 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 5h/5d Inode: 725 Links: 1 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-09-15 03:12:44.754237102 +0000 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-09-15 03:07:00.979001252 +0000 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-09-15 03:07:00.979001252 +0000 2024-09-15T03:12:44.935 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: 2024-09-15 03:07:00.979001252 +0000 2024-09-15T03:12:44.936 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-15T03:12:44.999 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-09-15T03:12:44.999 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-09-15T03:12:44.999 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000192415 s, 2.7 MB/s 2024-09-15T03:12:45.000 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-15T03:12:45.057 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-09-15T03:12:45.057 DEBUG:teuthology.orchestra.run.smithi187:> dd if=/scratch_devs of=/dev/stdout 2024-09-15T03:12:45.077 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-15T03:12:45.078 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_1 2024-09-15T03:12:45.137 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-15T03:12:45.137 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:45.137 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-09-15T03:12:45.138 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:45.138 INFO:teuthology.orchestra.run.smithi187.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:45.138 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-09-15 03:12:20.211918279 +0000 2024-09-15T03:12:45.138 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-09-15 03:07:08.419093317 +0000 2024-09-15T03:12:45.138 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-09-15 03:07:08.419093317 +0000 2024-09-15T03:12:45.138 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: 2024-09-15 03:07:08.419093317 +0000 2024-09-15T03:12:45.139 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-15T03:12:45.207 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-09-15T03:12:45.207 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-09-15T03:12:45.207 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000294422 s, 1.7 MB/s 2024-09-15T03:12:45.209 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-15T03:12:45.268 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_2 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-09-15 03:12:20.211918279 +0000 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-09-15 03:07:08.731088349 +0000 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-09-15 03:07:08.731088349 +0000 2024-09-15T03:12:45.326 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: 2024-09-15 03:07:08.731088349 +0000 2024-09-15T03:12:45.327 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-15T03:12:45.391 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-09-15T03:12:45.392 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-09-15T03:12:45.392 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000238707 s, 2.1 MB/s 2024-09-15T03:12:45.393 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-15T03:12:45.429 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:45 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:45.405+0000 7f20db7c8ec0 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-15T03:12:45.450 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_3 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-09-15 03:12:20.212918264 +0000 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-09-15 03:07:09.068082981 +0000 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-09-15 03:07:09.068082981 +0000 2024-09-15T03:12:45.508 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: 2024-09-15 03:07:09.068082981 +0000 2024-09-15T03:12:45.509 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-15T03:12:45.573 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-09-15T03:12:45.573 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-09-15T03:12:45.573 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000218902 s, 2.3 MB/s 2024-09-15T03:12:45.575 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-15T03:12:45.631 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_4 2024-09-15T03:12:45.686 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout:Context: system_u:object_r:device_t:s0 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-09-15 03:12:20.212918264 +0000 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-09-15 03:07:09.377078059 +0000 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-09-15 03:07:09.377078059 +0000 2024-09-15T03:12:45.687 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: 2024-09-15 03:07:09.377078059 +0000 2024-09-15T03:12:45.687 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-15T03:12:45.750 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-09-15T03:12:45.750 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-09-15T03:12:45.750 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000174301 s, 2.9 MB/s 2024-09-15T03:12:45.751 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-15T03:12:45.805 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:45 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:45.462+0000 7f20db7c8ec0 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-15T03:12:45.805 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:45 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:45.529+0000 7f20db7c8ec0 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-15T03:12:45.805 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:45 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:45.658+0000 7f20db7c8ec0 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:12:45.805 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:45 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:45.803+0000 7f20db7c8ec0 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-15T03:12:45.807 INFO:tasks.cephadm:Deploying osd.0 on smithi032 with /dev/vg_nvme/lv_4... 2024-09-15T03:12:45.807 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-15T03:12:46.067 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:12:46.428 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:46.077+0000 7f20db7c8ec0 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-15T03:12:46.428 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:46.142+0000 7f20db7c8ec0 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-15T03:12:46.429 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:46.310+0000 7f20db7c8ec0 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-15T03:12:46.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:46 smithi187 ceph-mon[31764]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:46.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.810 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:46.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:46 smithi032 ceph-mon[27800]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:46.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:46.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-mon[31365]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:46.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:46.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:47.428 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:47.163+0000 7f20db7c8ec0 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-15T03:12:47.429 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:47.227+0000 7f20db7c8ec0 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: Reconfiguring mgr.a (unknown last config time)... 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:12:47.772 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:12:47.773 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:47.773 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: Reconfiguring daemon mgr.a on smithi032 2024-09-15T03:12:47.773 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:47 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.788 INFO:teuthology.orchestra.run.smithi032.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-15T03:12:47.874 INFO:teuthology.orchestra.run.smithi032.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-15T03:12:47.884 INFO:teuthology.orchestra.run.smithi032.stderr: stderr: 10+0 records in 2024-09-15T03:12:47.884 INFO:teuthology.orchestra.run.smithi032.stderr:10+0 records out 2024-09-15T03:12:47.884 INFO:teuthology.orchestra.run.smithi032.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.00869938 s, 1.2 GB/s 2024-09-15T03:12:47.885 INFO:teuthology.orchestra.run.smithi032.stderr:--> Zapping successful for: 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: Reconfiguring mgr.a (unknown last config time)... 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: Reconfiguring daemon mgr.a on smithi032 2024-09-15T03:12:47.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:47 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:47.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:47.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:47.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: Reconfiguring mgr.a (unknown last config time)... 2024-09-15T03:12:47.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:12:47.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:12:47.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:47.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: Reconfiguring daemon mgr.a on smithi032 2024-09-15T03:12:47.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:48.226 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:47 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:47.937+0000 7f20db7c8ec0 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-15T03:12:48.226 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.047+0000 7f20db7c8ec0 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-15T03:12:48.226 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.166+0000 7f20db7c8ec0 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-15T03:12:48.226 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.224+0000 7f20db7c8ec0 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-15T03:12:48.477 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.350+0000 7f20db7c8ec0 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-15T03:12:48.477 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.418+0000 7f20db7c8ec0 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-15T03:12:48.477 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.476+0000 7f20db7c8ec0 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-15T03:12:48.741 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-mon[31365]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:48.741 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.610+0000 7f20db7c8ec0 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-15T03:12:48.741 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.674+0000 7f20db7c8ec0 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-15T03:12:48.741 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.739+0000 7f20db7c8ec0 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-15T03:12:48.837 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:48 smithi032 ceph-mon[27800]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:48.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:48 smithi187 ceph-mon[31764]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:49.178 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.820+0000 7f20db7c8ec0 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-15T03:12:49.178 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.877+0000 7f20db7c8ec0 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-15T03:12:49.179 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:48 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:48.935+0000 7f20db7c8ec0 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-15T03:12:49.267 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi032:vg_nvme/lv_4 2024-09-15T03:12:49.519 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:12:50.178 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b[32763]: 2024-09-15T03:12:49.677+0000 7f20db7c8ec0 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: Standby manager daemon b started 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-15T03:12:50.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:49 smithi096 ceph-mon[31365]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: Standby manager daemon b started 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-15T03:12:50.339 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-15T03:12:50.340 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-15T03:12:50.340 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:49 smithi032 ceph-mon[27800]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: Standby manager daemon b started 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-15T03:12:50.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-15T03:12:50.409 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:49 smithi187 ceph-mon[31764]: from='mgr.? 172.21.15.96:0/264921453' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-15T03:12:51.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:50 smithi032 ceph-mon[27800]: mgrmap e14: a(active, since 72s), standbys: b 2024-09-15T03:12:51.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:50 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-15T03:12:51.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:50 smithi187 ceph-mon[31764]: mgrmap e14: a(active, since 72s), standbys: b 2024-09-15T03:12:51.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:50 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-15T03:12:51.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:50 smithi096 ceph-mon[31365]: mgrmap e14: a(active, since 72s), standbys: b 2024-09-15T03:12:51.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:50 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-15T03:12:52.358 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:51 smithi032 ceph-mon[27800]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:52.358 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:51 smithi032 ceph-mon[27800]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi032:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:52.358 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:51 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:12:52.358 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:51 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:12:52.358 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:51 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:52.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:51 smithi187 ceph-mon[31764]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:52.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:51 smithi187 ceph-mon[31764]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi032:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:52.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:51 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:12:52.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:51 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:12:52.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:51 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:52.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:51 smithi096 ceph-mon[31365]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:52.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:51 smithi096 ceph-mon[31365]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi032:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:12:52.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:51 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:12:52.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:51 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:12:52.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:51 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:12:54.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:54 smithi032 ceph-mon[27800]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:54.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:54 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3990230169' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "087d5e2d-895d-47aa-82a3-e72c17c9608e"}]: dispatch 2024-09-15T03:12:54.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:54 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3990230169' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "087d5e2d-895d-47aa-82a3-e72c17c9608e"}]': finished 2024-09-15T03:12:54.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:54 smithi032 ceph-mon[27800]: osdmap e5: 1 total, 0 up, 1 in 2024-09-15T03:12:54.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:12:54.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:54 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2059602438' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:12:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:54 smithi187 ceph-mon[31764]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:54 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3990230169' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "087d5e2d-895d-47aa-82a3-e72c17c9608e"}]: dispatch 2024-09-15T03:12:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:54 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3990230169' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "087d5e2d-895d-47aa-82a3-e72c17c9608e"}]': finished 2024-09-15T03:12:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:54 smithi187 ceph-mon[31764]: osdmap e5: 1 total, 0 up, 1 in 2024-09-15T03:12:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:12:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:54 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/2059602438' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:12:54.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:54 smithi096 ceph-mon[31365]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:54.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:54 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3990230169' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "087d5e2d-895d-47aa-82a3-e72c17c9608e"}]: dispatch 2024-09-15T03:12:54.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:54 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3990230169' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "087d5e2d-895d-47aa-82a3-e72c17c9608e"}]': finished 2024-09-15T03:12:54.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:54 smithi096 ceph-mon[31365]: osdmap e5: 1 total, 0 up, 1 in 2024-09-15T03:12:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:12:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:54 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2059602438' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:12:56.624 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:56 smithi032 ceph-mon[27800]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:56.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:56 smithi187 ceph-mon[31764]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:56.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:56 smithi096 ceph-mon[31365]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:58.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:12:58 smithi187 ceph-mon[31764]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:58.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:12:58 smithi032 ceph-mon[27800]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:12:58.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:12:58 smithi096 ceph-mon[31365]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:00 smithi032 ceph-mon[27800]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-15T03:13:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:00 smithi032 ceph-mon[27800]: Deploying daemon osd.0 on smithi032 2024-09-15T03:13:00.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:00 smithi187 ceph-mon[31764]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:00.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-15T03:13:00.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:00.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:00 smithi187 ceph-mon[31764]: Deploying daemon osd.0 on smithi032 2024-09-15T03:13:00.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:00 smithi096 ceph-mon[31365]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:00.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-15T03:13:00.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:00.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:00 smithi096 ceph-mon[31365]: Deploying daemon osd.0 on smithi032 2024-09-15T03:13:02.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:02 smithi032 ceph-mon[27800]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:02.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:02 smithi187 ceph-mon[31764]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:02.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:02 smithi096 ceph-mon[31365]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:04.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:04 smithi032 ceph-mon[27800]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:04.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:04 smithi187 ceph-mon[31764]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:04.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:04 smithi096 ceph-mon[31365]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:05.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:05 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:05.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:05 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:05.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:05 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:05.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:05 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:05.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:05 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:05.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:05 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:05.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:05 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:05.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:05 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:05.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:05 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.605 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:06 smithi032 ceph-mon[27800]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:06.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:06 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:06 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:06 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:06.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:06 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:06.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:06 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:06 smithi096 ceph-mon[31365]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:06.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:06 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:06 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:06 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:06.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:06 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:06.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:06 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:06 smithi187 ceph-mon[31764]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:06.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:06 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:06 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:06.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:06 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:06.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:06 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:06.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:06 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:07.741 INFO:teuthology.orchestra.run.smithi032.stdout:Created osd(s) 0 on host 'smithi032' 2024-09-15T03:13:08.379 DEBUG:teuthology.orchestra.run.smithi032:osd.0> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.0.service 2024-09-15T03:13:08.382 INFO:tasks.cephadm:Deploying osd.1 on smithi032 with /dev/vg_nvme/lv_3... 2024-09-15T03:13:08.382 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-15T03:13:08.619 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:08 smithi032 ceph-mon[27800]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:08.619 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:08 smithi032 ceph-mon[27800]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-15T03:13:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:08.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:08 smithi096 ceph-mon[31365]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:08 smithi096 ceph-mon[31365]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-15T03:13:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:08.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:08 smithi187 ceph-mon[31764]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:08.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:08 smithi187 ceph-mon[31764]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-15T03:13:08.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:08 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:08.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:08 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:08.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:08 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:09.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:09 smithi096 ceph-mon[31365]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-15T03:13:09.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:09 smithi096 ceph-mon[31365]: osdmap e6: 1 total, 0 up, 1 in 2024-09-15T03:13:09.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:09 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:09.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:09 smithi096 ceph-mon[31365]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]: dispatch 2024-09-15T03:13:09.761 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:09 smithi032 ceph-mon[27800]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-15T03:13:09.761 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:09 smithi032 ceph-mon[27800]: osdmap e6: 1 total, 0 up, 1 in 2024-09-15T03:13:09.761 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:09 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:09.761 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:09 smithi032 ceph-mon[27800]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]: dispatch 2024-09-15T03:13:09.761 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:13:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0[41630]: 2024-09-15T03:13:09.436+0000 7f4bf97fd640 -1 osd.0 0 waiting for initial osdmap 2024-09-15T03:13:09.761 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:13:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0[41630]: 2024-09-15T03:13:09.439+0000 7f4bf4e35640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-15T03:13:09.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:09 smithi187 ceph-mon[31764]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-15T03:13:09.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:09 smithi187 ceph-mon[31764]: osdmap e6: 1 total, 0 up, 1 in 2024-09-15T03:13:09.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:09 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:09.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:09 smithi187 ceph-mon[31764]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]: dispatch 2024-09-15T03:13:10.221 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:13:10.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:10 smithi032 ceph-mon[27800]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:10.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:10 smithi032 ceph-mon[27800]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]': finished 2024-09-15T03:13:10.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:10 smithi032 ceph-mon[27800]: osdmap e7: 1 total, 0 up, 1 in 2024-09-15T03:13:10.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:10 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:10 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:10 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:10 smithi187 ceph-mon[31764]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:10.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:10 smithi187 ceph-mon[31764]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]': finished 2024-09-15T03:13:10.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:10 smithi187 ceph-mon[31764]: osdmap e7: 1 total, 0 up, 1 in 2024-09-15T03:13:10.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:10 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:10 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:10 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:10 smithi096 ceph-mon[31365]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:10.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:10 smithi096 ceph-mon[31365]: from='osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]': finished 2024-09-15T03:13:10.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:10 smithi096 ceph-mon[31365]: osdmap e7: 1 total, 0 up, 1 in 2024-09-15T03:13:10.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:10 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:10 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:10.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:10 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:11.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:11 smithi032 ceph-mon[27800]: purged_snaps scrub starts 2024-09-15T03:13:11.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:11 smithi032 ceph-mon[27800]: purged_snaps scrub ok 2024-09-15T03:13:11.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:11 smithi032 ceph-mon[27800]: osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817] boot 2024-09-15T03:13:11.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:11 smithi032 ceph-mon[27800]: osdmap e8: 1 total, 1 up, 1 in 2024-09-15T03:13:11.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:11 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:11.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:11 smithi187 ceph-mon[31764]: purged_snaps scrub starts 2024-09-15T03:13:11.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:11 smithi187 ceph-mon[31764]: purged_snaps scrub ok 2024-09-15T03:13:11.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:11 smithi187 ceph-mon[31764]: osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817] boot 2024-09-15T03:13:11.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:11 smithi187 ceph-mon[31764]: osdmap e8: 1 total, 1 up, 1 in 2024-09-15T03:13:11.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:11 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:11.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:11 smithi096 ceph-mon[31365]: purged_snaps scrub starts 2024-09-15T03:13:11.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:11 smithi096 ceph-mon[31365]: purged_snaps scrub ok 2024-09-15T03:13:11.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:11 smithi096 ceph-mon[31365]: osd.0 [v2:172.21.15.32:6802/3066781817,v1:172.21.15.32:6803/3066781817] boot 2024-09-15T03:13:11.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:11 smithi096 ceph-mon[31365]: osdmap e8: 1 total, 1 up, 1 in 2024-09-15T03:13:11.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:11 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-15T03:13:12.562 INFO:teuthology.orchestra.run.smithi032.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-15T03:13:12.647 INFO:teuthology.orchestra.run.smithi032.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-15T03:13:12.657 INFO:teuthology.orchestra.run.smithi032.stderr: stderr: 10+0 records in 2024-09-15T03:13:12.657 INFO:teuthology.orchestra.run.smithi032.stderr:10+0 records out 2024-09-15T03:13:12.657 INFO:teuthology.orchestra.run.smithi032.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.00818029 s, 1.3 GB/s 2024-09-15T03:13:12.657 INFO:teuthology.orchestra.run.smithi032.stderr:--> Zapping successful for: 2024-09-15T03:13:12.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: osdmap e9: 1 total, 1 up, 1 in 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi032 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: Adjusting osd_memory_target on smithi032 to 17092M 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:12.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:12 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:12.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: osdmap e9: 1 total, 1 up, 1 in 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: Detected new or changed devices on smithi032 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: Adjusting osd_memory_target on smithi032 to 17092M 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:12.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:12 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-15T03:13:12.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: osdmap e9: 1 total, 1 up, 1 in 2024-09-15T03:13:12.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi032 2024-09-15T03:13:12.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: Adjusting osd_memory_target on smithi032 to 17092M 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:12.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:12 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:13.275 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi032:vg_nvme/lv_3 2024-09-15T03:13:13.528 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:13:14.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:14 smithi032 ceph-mon[27800]: pgmap v47: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:14.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:14 smithi187 ceph-mon[31764]: pgmap v47: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:14.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:14 smithi096 ceph-mon[31365]: pgmap v47: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:15.783 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:13:15.783 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:13:15.783 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:15 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:15.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:15 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:13:15.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:15 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:13:15.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:15 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:15.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:15 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:13:15.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:15 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:13:15.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:15 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:16.780 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:16 smithi032 ceph-mon[27800]: pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:16.780 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:16 smithi032 ceph-mon[27800]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi032:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:13:16.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:16 smithi187 ceph-mon[31764]: pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:16.809 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:16 smithi187 ceph-mon[31764]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi032:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:13:16.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:16 smithi096 ceph-mon[31365]: pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:16.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:16 smithi096 ceph-mon[31365]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi032:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:13:18.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:18 smithi032 ceph-mon[27800]: pgmap v49: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:18.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:18 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2849622520' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48694c67-84e1-4a21-afc2-5e76c6dbf5ce"}]: dispatch 2024-09-15T03:13:18.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:18 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2849622520' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "48694c67-84e1-4a21-afc2-5e76c6dbf5ce"}]': finished 2024-09-15T03:13:18.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:18 smithi032 ceph-mon[27800]: osdmap e10: 2 total, 1 up, 2 in 2024-09-15T03:13:18.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:18 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:18.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:18 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3300183953' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:13:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:18 smithi187 ceph-mon[31764]: pgmap v49: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:18 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/2849622520' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48694c67-84e1-4a21-afc2-5e76c6dbf5ce"}]: dispatch 2024-09-15T03:13:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:18 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/2849622520' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "48694c67-84e1-4a21-afc2-5e76c6dbf5ce"}]': finished 2024-09-15T03:13:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:18 smithi187 ceph-mon[31764]: osdmap e10: 2 total, 1 up, 2 in 2024-09-15T03:13:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:18 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:18 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3300183953' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:13:18.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:18 smithi096 ceph-mon[31365]: pgmap v49: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:18 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2849622520' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "48694c67-84e1-4a21-afc2-5e76c6dbf5ce"}]: dispatch 2024-09-15T03:13:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:18 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2849622520' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "48694c67-84e1-4a21-afc2-5e76c6dbf5ce"}]': finished 2024-09-15T03:13:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:18 smithi096 ceph-mon[31365]: osdmap e10: 2 total, 1 up, 2 in 2024-09-15T03:13:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:18 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:18 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3300183953' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:13:20.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:20 smithi032 ceph-mon[27800]: pgmap v51: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:20.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:20 smithi187 ceph-mon[31764]: pgmap v51: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:20.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:20 smithi096 ceph-mon[31365]: pgmap v51: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:22.757 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:22 smithi032 ceph-mon[27800]: pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:22.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:22 smithi187 ceph-mon[31764]: pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:22.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:22 smithi096 ceph-mon[31365]: pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:24.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:24 smithi032 ceph-mon[27800]: pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:24.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-15T03:13:24.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:24.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:24 smithi187 ceph-mon[31764]: pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:24.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:24 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-15T03:13:24.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:24 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:24.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:24 smithi096 ceph-mon[31365]: pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:24.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-15T03:13:24.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:25.639 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:25 smithi032 ceph-mon[27800]: Deploying daemon osd.1 on smithi032 2024-09-15T03:13:25.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:25 smithi187 ceph-mon[31764]: Deploying daemon osd.1 on smithi032 2024-09-15T03:13:25.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:25 smithi096 ceph-mon[31365]: Deploying daemon osd.1 on smithi032 2024-09-15T03:13:26.853 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:26 smithi032 ceph-mon[27800]: pgmap v54: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:26.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:26 smithi187 ceph-mon[31764]: pgmap v54: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:26.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:26 smithi096 ceph-mon[31365]: pgmap v54: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:28.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:28 smithi032 ceph-mon[27800]: pgmap v55: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:28.730 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:28 smithi096 ceph-mon[31365]: pgmap v55: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:28.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:28 smithi187 ceph-mon[31764]: pgmap v55: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:29.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:29 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:29.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:29 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:29.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:29 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:29.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:29 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:29.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:29 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:29.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:29 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:29.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:29 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:29.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:29 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:29.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:29 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:30.788 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:30 smithi032 ceph-mon[27800]: pgmap v56: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:30.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:30 smithi187 ceph-mon[31764]: pgmap v56: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:30.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:30 smithi096 ceph-mon[31365]: pgmap v56: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:31.904 INFO:teuthology.orchestra.run.smithi032.stdout:Created osd(s) 1 on host 'smithi032' 2024-09-15T03:13:32.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: pgmap v57: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:32 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: pgmap v57: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:32 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: pgmap v57: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:32 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:32.551 DEBUG:teuthology.orchestra.run.smithi032:osd.1> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.1.service 2024-09-15T03:13:32.553 INFO:tasks.cephadm:Deploying osd.2 on smithi096 with /dev/vg_nvme/lv_4... 2024-09-15T03:13:32.553 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-15T03:13:32.799 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.b/config 2024-09-15T03:13:33.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:33 smithi032 ceph-mon[27800]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-15T03:13:33.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:33 smithi032 ceph-mon[27800]: osdmap e11: 2 total, 1 up, 2 in 2024-09-15T03:13:33.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:33 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:33.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:33 smithi032 ceph-mon[27800]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]: dispatch 2024-09-15T03:13:33.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:13:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1[47280]: 2024-09-15T03:13:33.039+0000 7f384a8ed640 -1 osd.1 0 waiting for initial osdmap 2024-09-15T03:13:33.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:13:33 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1[47280]: 2024-09-15T03:13:33.042+0000 7f3844722640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-15T03:13:33.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:33 smithi096 ceph-mon[31365]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-15T03:13:33.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:33 smithi096 ceph-mon[31365]: osdmap e11: 2 total, 1 up, 2 in 2024-09-15T03:13:33.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:33 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:33.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:33 smithi096 ceph-mon[31365]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]: dispatch 2024-09-15T03:13:33.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:33 smithi187 ceph-mon[31764]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-15T03:13:33.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:33 smithi187 ceph-mon[31764]: osdmap e11: 2 total, 1 up, 2 in 2024-09-15T03:13:33.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:33 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:33.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:33 smithi187 ceph-mon[31764]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]: dispatch 2024-09-15T03:13:34.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:34 smithi032 ceph-mon[27800]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]': finished 2024-09-15T03:13:34.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:34 smithi032 ceph-mon[27800]: osdmap e12: 2 total, 1 up, 2 in 2024-09-15T03:13:34.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:34 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:34 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:34 smithi032 ceph-mon[27800]: pgmap v60: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:34.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:34 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:34 smithi187 ceph-mon[31764]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]': finished 2024-09-15T03:13:34.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:34 smithi187 ceph-mon[31764]: osdmap e12: 2 total, 1 up, 2 in 2024-09-15T03:13:34.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:34 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:34 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:34 smithi187 ceph-mon[31764]: pgmap v60: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:34.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:34 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.429 INFO:teuthology.orchestra.run.smithi096.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-15T03:13:34.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:34 smithi096 ceph-mon[31365]: from='osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi032", "root=default"]}]': finished 2024-09-15T03:13:34.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:34 smithi096 ceph-mon[31365]: osdmap e12: 2 total, 1 up, 2 in 2024-09-15T03:13:34.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:34 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:34 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:34 smithi096 ceph-mon[31365]: pgmap v60: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-09-15T03:13:34.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:34 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:34.524 INFO:teuthology.orchestra.run.smithi096.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-15T03:13:34.537 INFO:teuthology.orchestra.run.smithi096.stderr: stderr: 10+0 records in 2024-09-15T03:13:34.537 INFO:teuthology.orchestra.run.smithi096.stderr:10+0 records out 2024-09-15T03:13:34.537 INFO:teuthology.orchestra.run.smithi096.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.011313 s, 927 MB/s 2024-09-15T03:13:34.538 INFO:teuthology.orchestra.run.smithi096.stderr:--> Zapping successful for: 2024-09-15T03:13:35.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:35 smithi032 ceph-mon[27800]: purged_snaps scrub starts 2024-09-15T03:13:35.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:35 smithi032 ceph-mon[27800]: purged_snaps scrub ok 2024-09-15T03:13:35.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:35 smithi032 ceph-mon[27800]: osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146] boot 2024-09-15T03:13:35.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:35 smithi032 ceph-mon[27800]: osdmap e13: 2 total, 2 up, 2 in 2024-09-15T03:13:35.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:35.135 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi096:vg_nvme/lv_4 2024-09-15T03:13:35.159 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:35 smithi096 ceph-mon[31365]: purged_snaps scrub starts 2024-09-15T03:13:35.159 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:35 smithi096 ceph-mon[31365]: purged_snaps scrub ok 2024-09-15T03:13:35.160 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:35 smithi096 ceph-mon[31365]: osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146] boot 2024-09-15T03:13:35.160 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:35 smithi096 ceph-mon[31365]: osdmap e13: 2 total, 2 up, 2 in 2024-09-15T03:13:35.160 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:35.377 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.b/config 2024-09-15T03:13:35.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:35 smithi187 ceph-mon[31764]: purged_snaps scrub starts 2024-09-15T03:13:35.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:35 smithi187 ceph-mon[31764]: purged_snaps scrub ok 2024-09-15T03:13:35.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:35 smithi187 ceph-mon[31764]: osd.1 [v2:172.21.15.32:6810/1694699146,v1:172.21.15.32:6811/1694699146] boot 2024-09-15T03:13:35.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:35 smithi187 ceph-mon[31764]: osdmap e13: 2 total, 2 up, 2 in 2024-09-15T03:13:35.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-15T03:13:36.168 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: osdmap e14: 2 total, 2 up, 2 in 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi032 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: Adjusting osd_memory_target on smithi032 to 8546M 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.169 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:36 smithi096 ceph-mon[31365]: pgmap v63: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:36.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: osdmap e14: 2 total, 2 up, 2 in 2024-09-15T03:13:36.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi032 2024-09-15T03:13:36.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: Adjusting osd_memory_target on smithi032 to 8546M 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:36 smithi032 ceph-mon[27800]: pgmap v63: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:36.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: osdmap e14: 2 total, 2 up, 2 in 2024-09-15T03:13:36.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: Detected new or changed devices on smithi032 2024-09-15T03:13:36.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: Adjusting osd_memory_target on smithi032 to 8546M 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:36.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:36 smithi187 ceph-mon[31764]: pgmap v63: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:37.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:13:37.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:13:37.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:37 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:37.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:13:37.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:13:37.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:37 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:37.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:13:37.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:13:37.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:37 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:38.456 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:38 smithi096 ceph-mon[31365]: from='client.24161 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:13:38.457 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:38 smithi096 ceph-mon[31365]: pgmap v64: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:38.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:38 smithi032 ceph-mon[27800]: from='client.24161 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:13:38.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:38 smithi032 ceph-mon[27800]: pgmap v64: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:38.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:38 smithi187 ceph-mon[31764]: from='client.24161 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:13:38.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:38 smithi187 ceph-mon[31764]: pgmap v64: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:40.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: pgmap v65: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:40.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: from='client.? 172.21.15.96:0/2792213698' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]: dispatch 2024-09-15T03:13:40.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]: dispatch 2024-09-15T03:13:40.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]': finished 2024-09-15T03:13:40.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: osdmap e15: 3 total, 2 up, 3 in 2024-09-15T03:13:40.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:40.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:40 smithi032 ceph-mon[27800]: from='client.? 172.21.15.96:0/2975314535' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:13:40.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: pgmap v65: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:40.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: from='client.? 172.21.15.96:0/2792213698' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]: dispatch 2024-09-15T03:13:40.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]: dispatch 2024-09-15T03:13:40.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]': finished 2024-09-15T03:13:40.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: osdmap e15: 3 total, 2 up, 3 in 2024-09-15T03:13:40.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:40.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:40 smithi187 ceph-mon[31764]: from='client.? 172.21.15.96:0/2975314535' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:13:40.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: pgmap v65: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:40.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: from='client.? 172.21.15.96:0/2792213698' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]: dispatch 2024-09-15T03:13:40.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]: dispatch 2024-09-15T03:13:40.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "fc1ff642-a8ba-4207-82c8-3e8fde335f43"}]': finished 2024-09-15T03:13:40.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: osdmap e15: 3 total, 2 up, 3 in 2024-09-15T03:13:40.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:40.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:40 smithi096 ceph-mon[31365]: from='client.? 172.21.15.96:0/2975314535' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:13:42.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:42 smithi032 ceph-mon[27800]: pgmap v67: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:42.643 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:42 smithi096 ceph-mon[31365]: pgmap v67: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:42.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:42 smithi187 ceph-mon[31764]: pgmap v67: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:44.420 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:44 smithi096 ceph-mon[31365]: pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:44.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:44 smithi032 ceph-mon[27800]: pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:44.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:44 smithi187 ceph-mon[31764]: pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:46.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:46 smithi032 ceph-mon[27800]: pgmap v69: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:46.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-15T03:13:46.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:46.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:46 smithi032 ceph-mon[27800]: Deploying daemon osd.2 on smithi096 2024-09-15T03:13:46.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:46 smithi187 ceph-mon[31764]: pgmap v69: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:46.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-15T03:13:46.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:46.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:46 smithi187 ceph-mon[31764]: Deploying daemon osd.2 on smithi096 2024-09-15T03:13:46.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:46 smithi096 ceph-mon[31365]: pgmap v69: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:46.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-15T03:13:46.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:46.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:46 smithi096 ceph-mon[31365]: Deploying daemon osd.2 on smithi096 2024-09-15T03:13:48.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:48 smithi032 ceph-mon[27800]: pgmap v70: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:48.655 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:48 smithi096 ceph-mon[31365]: pgmap v70: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:48.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:48 smithi187 ceph-mon[31764]: pgmap v70: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:50.596 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:50 smithi096 ceph-mon[31365]: pgmap v71: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:50.596 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:50 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:50.596 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:50 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:50.597 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:50 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:50.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:50 smithi032 ceph-mon[27800]: pgmap v71: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:50.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:50 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:50.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:50 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:50.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:50 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:50.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:50 smithi187 ceph-mon[31764]: pgmap v71: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:50.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:50 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:50.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:50 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:50.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:50 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:52.541 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:52 smithi096 ceph-mon[31365]: pgmap v72: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:52.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:52 smithi032 ceph-mon[27800]: pgmap v72: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:52.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:52 smithi187 ceph-mon[31764]: pgmap v72: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:53.449 INFO:teuthology.orchestra.run.smithi096.stdout:Created osd(s) 2 on host 'smithi096' 2024-09-15T03:13:53.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:53.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.071 DEBUG:teuthology.orchestra.run.smithi096:osd.2> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.2.service 2024-09-15T03:13:54.113 INFO:tasks.cephadm:Deploying osd.3 on smithi096 with /dev/vg_nvme/lv_3... 2024-09-15T03:13:54.113 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-15T03:13:54.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:54.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:55.062 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-mon[31365]: pgmap v73: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:55.062 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-mon[31365]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-15T03:13:55.062 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-mon[31365]: osdmap e16: 3 total, 2 up, 3 in 2024-09-15T03:13:55.062 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:55.062 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-mon[31365]: from='osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:13:55.062 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-mon[31365]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:13:55.063 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2[35562]: 2024-09-15T03:13:54.685+0000 7fe7c33d2640 -1 osd.2 0 waiting for initial osdmap 2024-09-15T03:13:55.063 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:13:54 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2[35562]: 2024-09-15T03:13:54.688+0000 7fe7bca06640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-15T03:13:55.071 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.b/config 2024-09-15T03:13:55.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:54 smithi032 ceph-mon[27800]: pgmap v73: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:55.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:54 smithi032 ceph-mon[27800]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-15T03:13:55.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:54 smithi032 ceph-mon[27800]: osdmap e16: 3 total, 2 up, 3 in 2024-09-15T03:13:55.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:55.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:54 smithi032 ceph-mon[27800]: from='osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:13:55.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:54 smithi032 ceph-mon[27800]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:13:55.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:54 smithi187 ceph-mon[31764]: pgmap v73: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:55.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:54 smithi187 ceph-mon[31764]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-15T03:13:55.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:54 smithi187 ceph-mon[31764]: osdmap e16: 3 total, 2 up, 3 in 2024-09-15T03:13:55.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:55.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:54 smithi187 ceph-mon[31764]: from='osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:13:55.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:54 smithi187 ceph-mon[31764]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:13:55.985 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:55 smithi096 ceph-mon[31365]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-15T03:13:55.985 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:55 smithi096 ceph-mon[31365]: osdmap e17: 3 total, 2 up, 3 in 2024-09-15T03:13:55.986 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:55 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:55.986 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:55 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:55 smithi032 ceph-mon[27800]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-15T03:13:56.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:55 smithi032 ceph-mon[27800]: osdmap e17: 3 total, 2 up, 3 in 2024-09-15T03:13:56.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:55 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:55 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:55 smithi187 ceph-mon[31764]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-15T03:13:56.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:55 smithi187 ceph-mon[31764]: osdmap e17: 3 total, 2 up, 3 in 2024-09-15T03:13:56.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:55 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:55 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: purged_snaps scrub starts 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: purged_snaps scrub ok 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: pgmap v76: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148] boot 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: osdmap e18: 3 total, 3 up, 3 in 2024-09-15T03:13:56.825 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:56 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:56.966 INFO:teuthology.orchestra.run.smithi096.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-15T03:13:57.065 INFO:teuthology.orchestra.run.smithi096.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-15T03:13:57.082 INFO:teuthology.orchestra.run.smithi096.stderr: stderr: 10+0 records in 2024-09-15T03:13:57.083 INFO:teuthology.orchestra.run.smithi096.stderr:10+0 records out 2024-09-15T03:13:57.083 INFO:teuthology.orchestra.run.smithi096.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0152124 s, 689 MB/s 2024-09-15T03:13:57.083 INFO:teuthology.orchestra.run.smithi096.stderr:--> Zapping successful for: 2024-09-15T03:13:57.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: purged_snaps scrub starts 2024-09-15T03:13:57.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: purged_snaps scrub ok 2024-09-15T03:13:57.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: pgmap v76: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:57.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:57.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148] boot 2024-09-15T03:13:57.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: osdmap e18: 3 total, 3 up, 3 in 2024-09-15T03:13:57.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:56 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:57.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: purged_snaps scrub starts 2024-09-15T03:13:57.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: purged_snaps scrub ok 2024-09-15T03:13:57.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: pgmap v76: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-15T03:13:57.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:57.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: osd.2 [v2:172.21.15.96:6800/3470808148,v1:172.21.15.96:6801/3470808148] boot 2024-09-15T03:13:57.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: osdmap e18: 3 total, 3 up, 3 in 2024-09-15T03:13:57.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:56 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-15T03:13:57.898 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:57 smithi096 ceph-mon[31365]: osdmap e19: 3 total, 3 up, 3 in 2024-09-15T03:13:58.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:57 smithi032 ceph-mon[27800]: osdmap e19: 3 total, 3 up, 3 in 2024-09-15T03:13:58.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:57 smithi187 ceph-mon[31764]: osdmap e19: 3 total, 3 up, 3 in 2024-09-15T03:13:58.172 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi096:vg_nvme/lv_3 2024-09-15T03:13:58.409 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.b/config 2024-09-15T03:13:58.809 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: pgmap v79: 0 pgs: ; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:13:58.809 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-15T03:13:58.809 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi096 2024-09-15T03:13:58.809 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: osdmap e20: 3 total, 3 up, 3 in 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: Adjusting osd_memory_target on smithi096 to 17088M 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:58.810 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:58 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: pgmap v79: 0 pgs: ; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi096 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: osdmap e20: 3 total, 3 up, 3 in 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: Adjusting osd_memory_target on smithi096 to 17088M 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:59.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:59.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:58 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: pgmap v79: 0 pgs: ; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: Detected new or changed devices on smithi096 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: osdmap e20: 3 total, 3 up, 3 in 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: Adjusting osd_memory_target on smithi096 to 17088M 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:13:59.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:13:59.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:58 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:13:59.922 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:59 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-15T03:13:59.923 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:59 smithi096 ceph-mon[31365]: osdmap e21: 3 total, 3 up, 3 in 2024-09-15T03:13:59.923 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:13:59 smithi096 ceph-mon[31365]: pgmap v82: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:00.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-15T03:14:00.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:59 smithi032 ceph-mon[27800]: osdmap e21: 3 total, 3 up, 3 in 2024-09-15T03:14:00.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:13:59 smithi032 ceph-mon[27800]: pgmap v82: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:00.128 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:13:59 smithi032 sudo[50756]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-15T03:14:00.128 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:13:59 smithi032 sudo[50756]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:00.128 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:13:59 smithi032 sudo[50756]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:00.128 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:13:59 smithi032 sudo[50756]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:00.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:59 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-15T03:14:00.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:59 smithi187 ceph-mon[31764]: osdmap e21: 3 total, 3 up, 3 in 2024-09-15T03:14:00.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:13:59 smithi187 ceph-mon[31764]: pgmap v82: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:00.627 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50759]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-15T03:14:00.628 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50759]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:00.628 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50759]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:00.628 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50759]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:01.112 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:00 smithi096 ceph-mon[31365]: osdmap e22: 3 total, 3 up, 3 in 2024-09-15T03:14:01.112 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:00 smithi096 ceph-mon[31365]: from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:01.113 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:01.113 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:01.113 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:01.113 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:01.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:00 smithi032 ceph-mon[27800]: osdmap e22: 3 total, 3 up, 3 in 2024-09-15T03:14:01.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:00 smithi032 ceph-mon[27800]: from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:01.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:01.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:01.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:01.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:01.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50762]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-15T03:14:01.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50762]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:01.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50762]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:01.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:00 smithi032 sudo[50762]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:01.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:00 smithi187 ceph-mon[31764]: osdmap e22: 3 total, 3 up, 3 in 2024-09-15T03:14:01.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:00 smithi187 ceph-mon[31764]: from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi096:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:01.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:01.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:01.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:01.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:01.627 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:01 smithi032 sudo[50765]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-15T03:14:01.627 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:01 smithi032 sudo[50765]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:01.628 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:01 smithi032 sudo[50765]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:01.628 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:14:01 smithi032 sudo[50765]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:01.774 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39768]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-15T03:14:01.774 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39768]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:01.774 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39768]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:01.774 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39768]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:02.029 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39778]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-15T03:14:02.029 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39778]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:02.030 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39778]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:02.030 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:14:01 smithi096 sudo[39778]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:02.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50768]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-15T03:14:02.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50768]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:02.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50768]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:02.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50768]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 ceph-mon[31764]: pgmap v84: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 ceph-mon[31764]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 sudo[33762]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 sudo[33762]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 sudo[33762]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:02.958 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:02 smithi187 sudo[33762]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50771]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50771]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50771]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 sudo[50771]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 ceph-mon[27800]: pgmap v84: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:03.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:02 smithi032 ceph-mon[27800]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:03.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:02 smithi096 ceph-mon[31365]: pgmap v84: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:03.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:02 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:03.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:02 smithi096 ceph-mon[31365]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:03.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 sudo[33765]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-15T03:14:03.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 sudo[33765]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:03.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 sudo[33765]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 sudo[33765]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:03.722 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39830]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-15T03:14:03.722 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39830]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:03.722 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39830]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:03.722 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39830]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39855]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39855]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39855]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 sudo[39855]: pam_unix(sudo:session): session closed for user root 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='client.? 172.21.15.96:0/376521681' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]: dispatch 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]: dispatch 2024-09-15T03:14:03.978 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]': finished 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: osdmap e23: 4 total, 3 up, 4 in 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:03.979 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:03.980 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='client.? 172.21.15.96:0/376521681' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]': finished 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: osdmap e23: 4 total, 3 up, 4 in 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:04.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='client.? 172.21.15.96:0/376521681' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]: dispatch 2024-09-15T03:14:04.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "03ade949-91ed-4152-ac15-3f90e75a35c7"}]': finished 2024-09-15T03:14:04.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: osdmap e23: 4 total, 3 up, 4 in 2024-09-15T03:14:04.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:04.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:04.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:14:04.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:14:04.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-15T03:14:05.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:04 smithi032 ceph-mon[27800]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:05.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:04 smithi032 ceph-mon[27800]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:05.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:04 smithi032 ceph-mon[27800]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:05.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:04 smithi032 ceph-mon[27800]: from='client.? 172.21.15.96:0/2151467368' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:05.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:04 smithi187 ceph-mon[31764]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:05.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:04 smithi187 ceph-mon[31764]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:05.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:04 smithi187 ceph-mon[31764]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:05.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:04 smithi187 ceph-mon[31764]: from='client.? 172.21.15.96:0/2151467368' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:05.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:04 smithi096 ceph-mon[31365]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-15T03:14:05.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:04 smithi096 ceph-mon[31365]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 873 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:05.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:04 smithi096 ceph-mon[31365]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-15T03:14:05.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:04 smithi096 ceph-mon[31365]: from='client.? 172.21.15.96:0/2151467368' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:06.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:06 smithi096 ceph-mon[31365]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:07.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:06 smithi032 ceph-mon[27800]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:07.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:06 smithi187 ceph-mon[31764]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:09.025 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:08 smithi096 ceph-mon[31365]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 6.6 KiB/s rd, 321 KiB/s wr, 21 op/s 2024-09-15T03:14:09.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:08 smithi032 ceph-mon[27800]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 6.6 KiB/s rd, 321 KiB/s wr, 21 op/s 2024-09-15T03:14:09.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:08 smithi187 ceph-mon[31764]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 6.6 KiB/s rd, 321 KiB/s wr, 21 op/s 2024-09-15T03:14:09.990 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:09 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-15T03:14:09.990 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:09 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:10.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:09 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-15T03:14:10.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:09 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:10.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:09 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-15T03:14:10.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:09 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:10.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:10 smithi096 ceph-mon[31365]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 4.4 KiB/s rd, 215 KiB/s wr, 14 op/s 2024-09-15T03:14:10.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:10 smithi096 ceph-mon[31365]: Deploying daemon osd.3 on smithi096 2024-09-15T03:14:11.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:10 smithi032 ceph-mon[27800]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 4.4 KiB/s rd, 215 KiB/s wr, 14 op/s 2024-09-15T03:14:11.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:10 smithi032 ceph-mon[27800]: Deploying daemon osd.3 on smithi096 2024-09-15T03:14:11.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:10 smithi187 ceph-mon[31764]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 4.4 KiB/s rd, 215 KiB/s wr, 14 op/s 2024-09-15T03:14:11.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:10 smithi187 ceph-mon[31764]: Deploying daemon osd.3 on smithi096 2024-09-15T03:14:13.001 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:12 smithi096 ceph-mon[31365]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 3.3 KiB/s rd, 162 KiB/s wr, 10 op/s 2024-09-15T03:14:13.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:12 smithi032 ceph-mon[27800]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 3.3 KiB/s rd, 162 KiB/s wr, 10 op/s 2024-09-15T03:14:13.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:12 smithi187 ceph-mon[31764]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 3.3 KiB/s rd, 162 KiB/s wr, 10 op/s 2024-09-15T03:14:13.900 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:13 smithi096 ceph-mon[31365]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.7 KiB/s rd, 130 KiB/s wr, 8 op/s 2024-09-15T03:14:14.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:13 smithi032 ceph-mon[27800]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.7 KiB/s rd, 130 KiB/s wr, 8 op/s 2024-09-15T03:14:14.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:13 smithi187 ceph-mon[31764]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.7 KiB/s rd, 130 KiB/s wr, 8 op/s 2024-09-15T03:14:14.817 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:14 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:14.817 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:14 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:14.817 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:14 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:15.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:14 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:15.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:14 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:15.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:14 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:15.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:14 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:15.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:14 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:15.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:14 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:16.029 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:15 smithi032 ceph-mon[27800]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-15T03:14:16.058 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:15 smithi187 ceph-mon[31764]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-15T03:14:16.123 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:15 smithi096 ceph-mon[31365]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-15T03:14:17.389 INFO:teuthology.orchestra.run.smithi096.stdout:Created osd(s) 3 on host 'smithi096' 2024-09-15T03:14:17.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:17 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:17.925 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.926 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:17.950 DEBUG:teuthology.orchestra.run.smithi096:osd.3> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.3.service 2024-09-15T03:14:17.952 INFO:tasks.cephadm:Deploying osd.4 on smithi187 with /dev/vg_nvme/lv_4... 2024-09-15T03:14:17.953 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-15T03:14:18.201 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:14:18.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:18 smithi032 ceph-mon[27800]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-15T03:14:18.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:18 smithi032 ceph-mon[27800]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-15T03:14:18.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:18 smithi032 ceph-mon[27800]: osdmap e24: 4 total, 3 up, 4 in 2024-09-15T03:14:18.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:18 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:18.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:18 smithi032 ceph-mon[27800]: from='osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:14:18.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:18 smithi032 ceph-mon[27800]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:14:18.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:18 smithi187 ceph-mon[31764]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-15T03:14:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:18 smithi187 ceph-mon[31764]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-15T03:14:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:18 smithi187 ceph-mon[31764]: osdmap e24: 4 total, 3 up, 4 in 2024-09-15T03:14:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:18 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:18 smithi187 ceph-mon[31764]: from='osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:14:18.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:18 smithi187 ceph-mon[31764]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:14:18.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:18 smithi096 ceph-mon[31365]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-15T03:14:18.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:18 smithi096 ceph-mon[31365]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-15T03:14:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:18 smithi096 ceph-mon[31365]: osdmap e24: 4 total, 3 up, 4 in 2024-09-15T03:14:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:18 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:18 smithi096 ceph-mon[31365]: from='osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:14:18.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:18 smithi096 ceph-mon[31365]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-09-15T03:14:19.249 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:14:19 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3[41485]: 2024-09-15T03:14:19.115+0000 7f0ce48ad640 -1 osd.3 0 waiting for initial osdmap 2024-09-15T03:14:19.249 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:14:19 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3[41485]: 2024-09-15T03:14:19.118+0000 7f0cdbebb640 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-15T03:14:19.720 INFO:teuthology.orchestra.run.smithi187.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-15T03:14:19.809 INFO:teuthology.orchestra.run.smithi187.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-15T03:14:19.822 INFO:teuthology.orchestra.run.smithi187.stderr: stderr: 10+0 records in 2024-09-15T03:14:19.822 INFO:teuthology.orchestra.run.smithi187.stderr:10+0 records out 2024-09-15T03:14:19.822 INFO:teuthology.orchestra.run.smithi187.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0114992 s, 912 MB/s 2024-09-15T03:14:19.822 INFO:teuthology.orchestra.run.smithi187.stderr:--> Zapping successful for: 2024-09-15T03:14:20.278 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:20 smithi096 ceph-mon[31365]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-15T03:14:20.278 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:20 smithi096 ceph-mon[31365]: osdmap e25: 4 total, 3 up, 4 in 2024-09-15T03:14:20.278 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:20 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:20.278 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:20 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:20.278 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:20 smithi096 ceph-mon[31365]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:20.329 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi187:vg_nvme/lv_4 2024-09-15T03:14:20.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:20 smithi032 ceph-mon[27800]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-15T03:14:20.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:20 smithi032 ceph-mon[27800]: osdmap e25: 4 total, 3 up, 4 in 2024-09-15T03:14:20.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:20 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:20.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:20 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:20.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:20 smithi032 ceph-mon[27800]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:20.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:20 smithi187 ceph-mon[31764]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-09-15T03:14:20.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:20 smithi187 ceph-mon[31764]: osdmap e25: 4 total, 3 up, 4 in 2024-09-15T03:14:20.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:20 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:20.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:20 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:20.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:20 smithi187 ceph-mon[31764]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 874 MiB used, 267 GiB / 268 GiB avail 2024-09-15T03:14:20.567 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:14:21.337 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: purged_snaps scrub starts 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: purged_snaps scrub ok 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497] boot 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: osdmap e26: 4 total, 4 up, 4 in 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: Detected new or changed devices on smithi096 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.338 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:21.339 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:21.339 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: Adjusting osd_memory_target on smithi096 to 8544M 2024-09-15T03:14:21.339 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.339 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:21.339 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:21.339 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:21 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: purged_snaps scrub starts 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: purged_snaps scrub ok 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497] boot 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: osdmap e26: 4 total, 4 up, 4 in 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi096 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: Adjusting osd_memory_target on smithi096 to 8544M 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:21.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:21.379 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:21 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: purged_snaps scrub starts 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: purged_snaps scrub ok 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: osd.3 [v2:172.21.15.96:6808/1410020497,v1:172.21.15.96:6809/1410020497] boot 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: osdmap e26: 4 total, 4 up, 4 in 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi096 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: Adjusting osd_memory_target on smithi096 to 8544M 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:21.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:21.430 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:21 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:22.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:22 smithi032 ceph-mon[27800]: osdmap e27: 4 total, 4 up, 4 in 2024-09-15T03:14:22.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:22 smithi032 ceph-mon[27800]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:22.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:22 smithi187 ceph-mon[31764]: osdmap e27: 4 total, 4 up, 4 in 2024-09-15T03:14:22.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:22 smithi187 ceph-mon[31764]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:22.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:22 smithi096 ceph-mon[31365]: osdmap e27: 4 total, 4 up, 4 in 2024-09-15T03:14:22.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:22 smithi096 ceph-mon[31365]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:23.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:23 smithi032 ceph-mon[27800]: from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:23.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:23 smithi032 ceph-mon[27800]: osdmap e28: 4 total, 4 up, 4 in 2024-09-15T03:14:23.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:23.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:23.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:23.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:23 smithi187 ceph-mon[31764]: from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:23.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:23 smithi187 ceph-mon[31764]: osdmap e28: 4 total, 4 up, 4 in 2024-09-15T03:14:23.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:23 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:23.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:23 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:23.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:23 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:23.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:23 smithi096 ceph-mon[31365]: from='client.24190 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:23.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:23 smithi096 ceph-mon[31365]: osdmap e28: 4 total, 4 up, 4 in 2024-09-15T03:14:23.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:23.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:23.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:24.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:24 smithi187 ceph-mon[31764]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:24.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:24 smithi096 ceph-mon[31365]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:24.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:24 smithi032 ceph-mon[27800]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:25.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:25 smithi187 ceph-mon[31764]: from='client.? 172.21.15.187:0/1113433346' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]: dispatch 2024-09-15T03:14:25.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:25 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]: dispatch 2024-09-15T03:14:25.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:25 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]': finished 2024-09-15T03:14:25.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:25 smithi187 ceph-mon[31764]: osdmap e29: 5 total, 4 up, 5 in 2024-09-15T03:14:25.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:25 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:25.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:25 smithi187 ceph-mon[31764]: from='client.? 172.21.15.187:0/4170603530' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:25.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:25 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/1113433346' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]: dispatch 2024-09-15T03:14:25.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:25 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]: dispatch 2024-09-15T03:14:25.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:25 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]': finished 2024-09-15T03:14:25.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:25 smithi096 ceph-mon[31365]: osdmap e29: 5 total, 4 up, 5 in 2024-09-15T03:14:25.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:25 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:25.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:25 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/4170603530' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:25.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:25 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/1113433346' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]: dispatch 2024-09-15T03:14:25.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:25 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]: dispatch 2024-09-15T03:14:25.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:25 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc496c75-00a7-4015-bb27-cc12d125a5e3"}]': finished 2024-09-15T03:14:25.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:25 smithi032 ceph-mon[27800]: osdmap e29: 5 total, 4 up, 5 in 2024-09-15T03:14:25.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:25 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:25.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:25 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/4170603530' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:26.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:26 smithi187 ceph-mon[31764]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-15T03:14:26.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:26 smithi096 ceph-mon[31365]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-15T03:14:26.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:26 smithi032 ceph-mon[27800]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-15T03:14:28.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:28 smithi032 ceph-mon[27800]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-15T03:14:28.635 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:28 smithi187 ceph-mon[31764]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-15T03:14:28.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:28 smithi096 ceph-mon[31365]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-15T03:14:30.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:30 smithi032 ceph-mon[27800]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-15T03:14:30.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:30 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-15T03:14:30.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:30 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:30.656 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:30 smithi187 ceph-mon[31764]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-15T03:14:30.656 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:30 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-15T03:14:30.656 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:30 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:30.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:30 smithi096 ceph-mon[31365]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-15T03:14:30.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-15T03:14:30.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:30 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:31.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:31 smithi032 ceph-mon[27800]: Deploying daemon osd.4 on smithi187 2024-09-15T03:14:31.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:31 smithi187 ceph-mon[31764]: Deploying daemon osd.4 on smithi187 2024-09-15T03:14:31.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:31 smithi096 ceph-mon[31365]: Deploying daemon osd.4 on smithi187 2024-09-15T03:14:32.599 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:32 smithi187 ceph-mon[31764]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-15T03:14:32.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:32 smithi032 ceph-mon[27800]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-15T03:14:32.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:32 smithi096 ceph-mon[31365]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-15T03:14:34.597 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:34 smithi187 ceph-mon[31764]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:14:34.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:34 smithi032 ceph-mon[27800]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:14:34.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:34 smithi096 ceph-mon[31365]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:14:35.379 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:35.379 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:35.380 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:35 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:35.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:35.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:35.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:35 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:35.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:35.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:35 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:36.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:36 smithi187 ceph-mon[31764]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-15T03:14:37.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:36 smithi032 ceph-mon[27800]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-15T03:14:37.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:36 smithi096 ceph-mon[31365]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-15T03:14:37.301 INFO:teuthology.orchestra.run.smithi187.stdout:Created osd(s) 4 on host 'smithi187' 2024-09-15T03:14:37.878 DEBUG:teuthology.orchestra.run.smithi187:osd.4> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.4.service 2024-09-15T03:14:37.881 INFO:tasks.cephadm:Deploying osd.5 on smithi187 with /dev/vg_nvme/lv_3... 2024-09-15T03:14:37.881 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-15T03:14:38.242 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:14:38.607 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:38.608 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.608 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.608 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: from='osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-15T03:14:38.608 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-15T03:14:38.608 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.608 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:38 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:38.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: from='osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-15T03:14:38.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-15T03:14:38.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:38 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:38.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: from='osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-15T03:14:38.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-15T03:14:38.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:38.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:38 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-mon[31764]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-15T03:14:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-mon[31764]: osdmap e30: 5 total, 4 up, 5 in 2024-09-15T03:14:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-mon[31764]: from='osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:14:39.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-mon[31764]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:14:39.909 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4[36049]: 2024-09-15T03:14:39.735+0000 7f561f871640 -1 osd.4 0 waiting for initial osdmap 2024-09-15T03:14:39.909 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:14:39 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4[36049]: 2024-09-15T03:14:39.739+0000 7f5616e7f640 -1 osd.4 31 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-15T03:14:40.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:39 smithi032 ceph-mon[27800]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-15T03:14:40.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:39 smithi032 ceph-mon[27800]: osdmap e30: 5 total, 4 up, 5 in 2024-09-15T03:14:40.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:39 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:40.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:39 smithi032 ceph-mon[27800]: from='osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:14:40.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:39 smithi032 ceph-mon[27800]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:14:40.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:39 smithi096 ceph-mon[31365]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-15T03:14:40.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:39 smithi096 ceph-mon[31365]: osdmap e30: 5 total, 4 up, 5 in 2024-09-15T03:14:40.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:39 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:40.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:39 smithi096 ceph-mon[31365]: from='osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:14:40.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:39 smithi096 ceph-mon[31365]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:14:40.856 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:40 smithi187 ceph-mon[31764]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:40.857 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:40 smithi187 ceph-mon[31764]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-09-15T03:14:40.857 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:40 smithi187 ceph-mon[31764]: osdmap e31: 5 total, 4 up, 5 in 2024-09-15T03:14:40.857 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:40.857 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:40 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:41.003 INFO:teuthology.orchestra.run.smithi187.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-15T03:14:41.100 INFO:teuthology.orchestra.run.smithi187.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-15T03:14:41.112 INFO:teuthology.orchestra.run.smithi187.stderr: stderr: 10+0 records in 2024-09-15T03:14:41.112 INFO:teuthology.orchestra.run.smithi187.stderr:10+0 records out 2024-09-15T03:14:41.112 INFO:teuthology.orchestra.run.smithi187.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0124881 s, 840 MB/s 2024-09-15T03:14:41.113 INFO:teuthology.orchestra.run.smithi187.stderr:--> Zapping successful for: 2024-09-15T03:14:41.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:40 smithi032 ceph-mon[27800]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:41.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:40 smithi032 ceph-mon[27800]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-09-15T03:14:41.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:40 smithi032 ceph-mon[27800]: osdmap e31: 5 total, 4 up, 5 in 2024-09-15T03:14:41.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:41.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:40 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:41.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:40 smithi096 ceph-mon[31365]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:41.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:40 smithi096 ceph-mon[31365]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-09-15T03:14:41.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:40 smithi096 ceph-mon[31365]: osdmap e31: 5 total, 4 up, 5 in 2024-09-15T03:14:41.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:41.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:40 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:41.747 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi187:vg_nvme/lv_3 2024-09-15T03:14:42.005 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:41 smithi187 ceph-mon[31764]: purged_snaps scrub starts 2024-09-15T03:14:42.006 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:41 smithi187 ceph-mon[31764]: purged_snaps scrub ok 2024-09-15T03:14:42.006 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:41 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:42.006 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:41 smithi187 ceph-mon[31764]: osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973] boot 2024-09-15T03:14:42.006 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:41 smithi187 ceph-mon[31764]: osdmap e32: 5 total, 5 up, 5 in 2024-09-15T03:14:42.006 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:41 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:42.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:41 smithi032 ceph-mon[27800]: purged_snaps scrub starts 2024-09-15T03:14:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:41 smithi032 ceph-mon[27800]: purged_snaps scrub ok 2024-09-15T03:14:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:41 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:41 smithi032 ceph-mon[27800]: osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973] boot 2024-09-15T03:14:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:41 smithi032 ceph-mon[27800]: osdmap e32: 5 total, 5 up, 5 in 2024-09-15T03:14:42.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:41 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:42.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:41 smithi096 ceph-mon[31365]: purged_snaps scrub starts 2024-09-15T03:14:42.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:41 smithi096 ceph-mon[31365]: purged_snaps scrub ok 2024-09-15T03:14:42.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:41 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:42.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:41 smithi096 ceph-mon[31365]: osd.4 [v2:172.21.15.187:6800/2370189973,v1:172.21.15.187:6801/2370189973] boot 2024-09-15T03:14:42.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:41 smithi096 ceph-mon[31365]: osdmap e32: 5 total, 5 up, 5 in 2024-09-15T03:14:42.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:41 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-15T03:14:42.315 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.c/config 2024-09-15T03:14:43.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: pgmap v114: 1 pgs: 1 peering; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: osdmap e33: 5 total, 5 up, 5 in 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:43.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:42 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: pgmap v114: 1 pgs: 1 peering; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: osdmap e33: 5 total, 5 up, 5 in 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:43.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:43.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:43.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:43.159 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:42 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: pgmap v114: 1 pgs: 1 peering; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:14:43.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: osdmap e33: 5 total, 5 up, 5 in 2024-09-15T03:14:43.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:14:43.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:42 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:44.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:43 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi187 2024-09-15T03:14:44.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:43 smithi032 ceph-mon[27800]: Adjusting osd_memory_target on smithi187 to 21184M 2024-09-15T03:14:44.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:43 smithi032 ceph-mon[27800]: osdmap e34: 5 total, 5 up, 5 in 2024-09-15T03:14:44.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:43 smithi187 ceph-mon[31764]: Detected new or changed devices on smithi187 2024-09-15T03:14:44.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:43 smithi187 ceph-mon[31764]: Adjusting osd_memory_target on smithi187 to 21184M 2024-09-15T03:14:44.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:43 smithi187 ceph-mon[31764]: osdmap e34: 5 total, 5 up, 5 in 2024-09-15T03:14:44.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:43 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi187 2024-09-15T03:14:44.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:43 smithi096 ceph-mon[31365]: Adjusting osd_memory_target on smithi187 to 21184M 2024-09-15T03:14:44.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:43 smithi096 ceph-mon[31365]: osdmap e34: 5 total, 5 up, 5 in 2024-09-15T03:14:44.888 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:44 smithi187 ceph-mon[31764]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:44.888 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:44 smithi187 ceph-mon[31764]: from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:44.888 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:44 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:44.888 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:44 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:44.888 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:44 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:45.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:44 smithi032 ceph-mon[27800]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:45.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:44 smithi032 ceph-mon[27800]: from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:45.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:44 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:45.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:44 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:45.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:44 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:45.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:44 smithi096 ceph-mon[31365]: pgmap v117: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:45.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:44 smithi096 ceph-mon[31365]: from='client.24217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:14:45.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:44 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-15T03:14:45.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:44 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-15T03:14:45.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:44 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:46.029 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:45 smithi032 ceph-mon[27800]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-15T03:14:46.157 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:45 smithi187 ceph-mon[31764]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-15T03:14:46.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:45 smithi096 ceph-mon[31365]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-15T03:14:46.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:46 smithi187 ceph-mon[31764]: from='client.? 172.21.15.187:0/3366191790' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]: dispatch 2024-09-15T03:14:46.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:46 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]: dispatch 2024-09-15T03:14:46.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:46 smithi187 ceph-mon[31764]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]': finished 2024-09-15T03:14:46.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:46 smithi187 ceph-mon[31764]: osdmap e35: 6 total, 5 up, 6 in 2024-09-15T03:14:46.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:46 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:14:46.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:46 smithi187 ceph-mon[31764]: from='client.? 172.21.15.187:0/1559029865' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:47.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:46 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/3366191790' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]: dispatch 2024-09-15T03:14:47.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:46 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]: dispatch 2024-09-15T03:14:47.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:46 smithi032 ceph-mon[27800]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]': finished 2024-09-15T03:14:47.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:46 smithi032 ceph-mon[27800]: osdmap e35: 6 total, 5 up, 6 in 2024-09-15T03:14:47.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:46 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:14:47.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:46 smithi032 ceph-mon[27800]: from='client.? 172.21.15.187:0/1559029865' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:47.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:46 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/3366191790' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]: dispatch 2024-09-15T03:14:47.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:46 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]: dispatch 2024-09-15T03:14:47.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:46 smithi096 ceph-mon[31365]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4478dbec-0452-4b70-8a12-396c99cc217f"}]': finished 2024-09-15T03:14:47.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:46 smithi096 ceph-mon[31365]: osdmap e35: 6 total, 5 up, 6 in 2024-09-15T03:14:47.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:46 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:14:47.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:46 smithi096 ceph-mon[31365]: from='client.? 172.21.15.187:0/1559029865' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-15T03:14:47.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:47 smithi187 ceph-mon[31764]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-15T03:14:48.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:47 smithi032 ceph-mon[27800]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-15T03:14:48.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:47 smithi096 ceph-mon[31365]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-15T03:14:50.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:50 smithi032 ceph-mon[27800]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-15T03:14:50.644 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:50 smithi187 ceph-mon[31764]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-15T03:14:50.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:50 smithi096 ceph-mon[31365]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-15T03:14:52.570 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:52 smithi187 ceph-mon[31764]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-15T03:14:52.570 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:52 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-15T03:14:52.570 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:52 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:52.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:52 smithi032 ceph-mon[27800]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-15T03:14:52.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:52 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-15T03:14:52.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:52 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:52.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:52 smithi096 ceph-mon[31365]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-15T03:14:52.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:52 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-15T03:14:52.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:52 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:14:53.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:53 smithi187 ceph-mon[31764]: Deploying daemon osd.5 on smithi187 2024-09-15T03:14:53.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:53 smithi032 ceph-mon[27800]: Deploying daemon osd.5 on smithi187 2024-09-15T03:14:53.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:53 smithi096 ceph-mon[31365]: Deploying daemon osd.5 on smithi187 2024-09-15T03:14:54.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:54 smithi187 ceph-mon[31764]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:14:54.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:54 smithi032 ceph-mon[27800]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:14:54.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:54 smithi096 ceph-mon[31365]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:14:56.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:56 smithi032 ceph-mon[27800]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:56.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:56 smithi187 ceph-mon[31764]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:56.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:56 smithi096 ceph-mon[31365]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:57.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:57 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:57.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:57 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:57.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:57 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:57.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:57 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:57.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:57 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:57.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:57 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:57.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:57 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:14:57.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:57 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:57.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:57 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:14:58.863 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:14:58 smithi187 ceph-mon[31764]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:58.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:14:58 smithi032 ceph-mon[27800]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:58.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:14:58 smithi096 ceph-mon[31365]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:14:59.751 INFO:teuthology.orchestra.run.smithi187.stdout:Created osd(s) 5 on host 'smithi187' 2024-09-15T03:15:00.344 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.345 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:00 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.368 DEBUG:teuthology.orchestra.run.smithi187:osd.5> sudo journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.5.service 2024-09-15T03:15:00.371 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-15T03:15:00.371 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-15T03:15:00.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:00 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.635 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:00.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:00.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:00.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:15:00.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-15T03:15:00.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-15T03:15:00.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:15:00.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:00.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:00 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:01.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:01 smithi032 ceph-mon[27800]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-15T03:15:01.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:01 smithi032 ceph-mon[27800]: osdmap e36: 6 total, 5 up, 6 in 2024-09-15T03:15:01.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:01 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:01.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:01 smithi032 ceph-mon[27800]: from='osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:15:01.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:01 smithi032 ceph-mon[27800]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:15:01.550 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-mon[31764]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-15T03:15:01.551 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-mon[31764]: osdmap e36: 6 total, 5 up, 6 in 2024-09-15T03:15:01.551 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:01.551 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-mon[31764]: from='osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:15:01.551 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-mon[31764]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:15:01.551 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5[41688]: 2024-09-15T03:15:01.270+0000 7f3417dff640 -1 osd.5 0 waiting for initial osdmap 2024-09-15T03:15:01.551 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:15:01 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5[41688]: 2024-09-15T03:15:01.275+0000 7f3412c36640 -1 osd.5 37 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-15T03:15:01.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:01 smithi096 ceph-mon[31365]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-15T03:15:01.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:01 smithi096 ceph-mon[31365]: osdmap e36: 6 total, 5 up, 6 in 2024-09-15T03:15:01.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:01 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:01.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:01 smithi096 ceph-mon[31365]: from='osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:15:01.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:01 smithi096 ceph-mon[31365]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-09-15T03:15:02.318 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:02.559 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:02 smithi187 ceph-mon[31764]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-09-15T03:15:02.559 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:02 smithi187 ceph-mon[31764]: osdmap e37: 6 total, 5 up, 6 in 2024-09-15T03:15:02.559 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:02 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:02.559 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:02 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:02.559 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:02 smithi187 ceph-mon[31764]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:15:02.607 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:02 smithi032 ceph-mon[27800]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-09-15T03:15:02.607 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:02 smithi032 ceph-mon[27800]: osdmap e37: 6 total, 5 up, 6 in 2024-09-15T03:15:02.607 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:02.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:02 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:02.608 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:02 smithi032 ceph-mon[27800]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:15:02.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:02 smithi096 ceph-mon[31365]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-09-15T03:15:02.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:02 smithi096 ceph-mon[31365]: osdmap e37: 6 total, 5 up, 6 in 2024-09-15T03:15:02.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:02 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:02.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:02 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:02.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:02 smithi096 ceph-mon[31365]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:15:02.984 INFO:teuthology.orchestra.run.smithi032.stdout:{"epoch":38,"num_osds":6,"num_up_osds":6,"osd_up_since":1726370102,"num_in_osds":6,"osd_in_since":1726370086,"num_remapped_pgs":1} 2024-09-15T03:15:02.984 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-15T03:15:03.254 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: purged_snaps scrub starts 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: purged_snaps scrub ok 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362] boot 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: osdmap e38: 6 total, 6 up, 6 in 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3267661318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: osdmap e39: 6 total, 6 up, 6 in 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.408 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:15:03.409 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:15:03.409 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.409 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:03.409 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:03.409 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:03 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.603 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: purged_snaps scrub starts 2024-09-15T03:15:03.604 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: purged_snaps scrub ok 2024-09-15T03:15:03.604 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:03.604 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362] boot 2024-09-15T03:15:03.604 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: osdmap e38: 6 total, 6 up, 6 in 2024-09-15T03:15:03.605 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:03.605 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3267661318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-15T03:15:03.605 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: osdmap e39: 6 total, 6 up, 6 in 2024-09-15T03:15:03.605 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.605 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:15:03.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:15:03.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:03.606 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:03.607 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: purged_snaps scrub starts 2024-09-15T03:15:03.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: purged_snaps scrub ok 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: osd.5 [v2:172.21.15.187:6808/2006959362,v1:172.21.15.187:6809/2006959362] boot 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: osdmap e38: 6 total, 6 up, 6 in 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3267661318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: osdmap e39: 6 total, 6 up, 6 in 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:03.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:03.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:04.315 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:04 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi187 2024-09-15T03:15:04.315 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:04 smithi032 ceph-mon[27800]: Adjusting osd_memory_target on smithi187 to 10592M 2024-09-15T03:15:04.315 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:04 smithi032 ceph-mon[27800]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:04.315 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:04 smithi032 ceph-mon[27800]: osdmap e40: 6 total, 6 up, 6 in 2024-09-15T03:15:04.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:04 smithi187 ceph-mon[31764]: Detected new or changed devices on smithi187 2024-09-15T03:15:04.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:04 smithi187 ceph-mon[31764]: Adjusting osd_memory_target on smithi187 to 10592M 2024-09-15T03:15:04.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:04 smithi187 ceph-mon[31764]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:04.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:04 smithi187 ceph-mon[31764]: osdmap e40: 6 total, 6 up, 6 in 2024-09-15T03:15:04.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:04 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi187 2024-09-15T03:15:04.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:04 smithi096 ceph-mon[31365]: Adjusting osd_memory_target on smithi187 to 10592M 2024-09-15T03:15:04.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:04 smithi096 ceph-mon[31365]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:04.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:04 smithi096 ceph-mon[31365]: osdmap e40: 6 total, 6 up, 6 in 2024-09-15T03:15:04.981 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:04.982 INFO:teuthology.orchestra.run.smithi032.stdout:{"epoch":40,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","created":"2024-09-15T03:10:52.498492+0000","modified":"2024-09-15T03:15:04.094078+0000","last_up_change":"2024-09-15T03:15:02.269026+0000","last_in_change":"2024-09-15T03:14:46.066135+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-15T03:13:57.748607+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,"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,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"087d5e2d-895d-47aa-82a3-e72c17c9608e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6802","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6803","nonce":3066781817}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6804","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6805","nonce":3066781817}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6808","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6809","nonce":3066781817}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6806","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6807","nonce":3066781817}]},"public_addr":"172.21.15.32:6803/3066781817","cluster_addr":"172.21.15.32:6805/3066781817","heartbeat_back_addr":"172.21.15.32:6809/3066781817","heartbeat_front_addr":"172.21.15.32:6807/3066781817","state":["exists","up"]},{"osd":1,"uuid":"48694c67-84e1-4a21-afc2-5e76c6dbf5ce","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6810","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6811","nonce":1694699146}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6812","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6813","nonce":1694699146}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6816","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6817","nonce":1694699146}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6814","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6815","nonce":1694699146}]},"public_addr":"172.21.15.32:6811/1694699146","cluster_addr":"172.21.15.32:6813/1694699146","heartbeat_back_addr":"172.21.15.32:6817/1694699146","heartbeat_front_addr":"172.21.15.32:6815/1694699146","state":["exists","up"]},{"osd":2,"uuid":"fc1ff642-a8ba-4207-82c8-3e8fde335f43","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6801","nonce":3470808148}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6803","nonce":3470808148}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6807","nonce":3470808148}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6805","nonce":3470808148}]},"public_addr":"172.21.15.96:6801/3470808148","cluster_addr":"172.21.15.96:6803/3470808148","heartbeat_back_addr":"172.21.15.96:6807/3470808148","heartbeat_front_addr":"172.21.15.96:6805/3470808148","state":["exists","up"]},{"osd":3,"uuid":"03ade949-91ed-4152-ac15-3f90e75a35c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6809","nonce":1410020497}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6810","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6811","nonce":1410020497}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6815","nonce":1410020497}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6813","nonce":1410020497}]},"public_addr":"172.21.15.96:6809/1410020497","cluster_addr":"172.21.15.96:6811/1410020497","heartbeat_back_addr":"172.21.15.96:6815/1410020497","heartbeat_front_addr":"172.21.15.96:6813/1410020497","state":["exists","up"]},{"osd":4,"uuid":"cc496c75-00a7-4015-bb27-cc12d125a5e3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6800","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6801","nonce":2370189973}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6802","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6803","nonce":2370189973}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6806","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6807","nonce":2370189973}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6804","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6805","nonce":2370189973}]},"public_addr":"172.21.15.187:6801/2370189973","cluster_addr":"172.21.15.187:6803/2370189973","heartbeat_back_addr":"172.21.15.187:6807/2370189973","heartbeat_front_addr":"172.21.15.187:6805/2370189973","state":["exists","up"]},{"osd":5,"uuid":"4478dbec-0452-4b70-8a12-396c99cc217f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6808","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6809","nonce":2006959362}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6810","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6811","nonce":2006959362}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6814","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6815","nonce":2006959362}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6812","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6813","nonce":2006959362}]},"public_addr":"172.21.15.187:6809/2006959362","cluster_addr":"172.21.15.187:6811/2006959362","heartbeat_back_addr":"172.21.15.187:6815/2006959362","heartbeat_front_addr":"172.21.15.187:6813/2006959362","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:08.601395+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:32.617303+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:54.113429+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:14:18.263940+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:14:38.810689+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:15:00.682053+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.32:0/3357432754":"2024-09-16T03:11:37.245684+0000","172.21.15.32:0/1242914657":"2024-09-16T03:11:37.245684+0000","172.21.15.32:0/2610150492":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6800/371636025":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6801/371636025":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6800/2297170429":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/1158324152":"2024-09-16T03:11:14.135966+0000","172.21.15.32:6801/2297170429":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/3514364257":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/3397832794":"2024-09-16T03:11:14.135966+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","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}} 2024-09-15T03:15:05.615 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:05 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2141255696' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:05.642 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-15T03:13:57.748607+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, '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, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}}] 2024-09-15T03:15:05.642 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-15T03:15:05.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:05 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/2141255696' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:05.681 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:05 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2141255696' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:05.896 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:06.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:06 smithi032 ceph-mon[27800]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-15T03:15:06.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:06 smithi187 ceph-mon[31764]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-15T03:15:06.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:06 smithi096 ceph-mon[31365]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-15T03:15:07.535 INFO:teuthology.orchestra.run.smithi032.stdout:pg_num: 1 2024-09-15T03:15:08.107 INFO:tasks.cephadm:Setting up client nodes... 2024-09-15T03:15:08.107 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-15T03:15:08.107 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-15T03:15:08.107 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-15T03:15:08.362 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:08 smithi032 ceph-mon[27800]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-15T03:15:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:08 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3090026190' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-15T03:15:08.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:08 smithi187 ceph-mon[31764]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-15T03:15:08.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:08 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3090026190' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-15T03:15:08.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:08 smithi096 ceph-mon[31365]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-15T03:15:08.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:08 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3090026190' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-15T03:15:10.216 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:10.508 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:10 smithi032 ceph-mon[27800]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-15T03:15:10.508 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:10 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/4260608614' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-15T03:15:10.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:10 smithi187 ceph-mon[31764]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-15T03:15:10.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:10 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/4260608614' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-15T03:15:10.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:10 smithi096 ceph-mon[31365]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-15T03:15:10.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:10 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/4260608614' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-15T03:15:10.819 INFO:teuthology.orchestra.run.smithi032.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6800","nonce":1876685070},{"type":"v1","addr":"172.21.15.32:6801","nonce":1876685070}]},"active_addr":"172.21.15.32:6801/1876685070","active_change":"2024-09-15T03:11:37.245788+0000","active_mgr_features":4540138320759226367,"available":true,"standbys":[{"gid":24110,"name":"b","mgr_features":4540138320759226367,"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","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":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"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":[]},"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":[]},"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.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki 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.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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:v2.43.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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail 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":"docker.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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":"False","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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":"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":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":"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":[]}}},{"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":[]},"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":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","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":[]},"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":"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":[]},"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":[]},"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":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","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":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"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","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":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"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":[]},"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":[]},"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.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki 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.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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:v2.43.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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail 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":"docker.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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":"False","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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":"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":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":"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":[]}}},{"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":[]},"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":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","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":[]},"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":"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":[]},"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":[]},"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":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","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":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.32: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"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.32:0","nonce":4190944670}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.32:0","nonce":2715273430}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.32:0","nonce":3906514390}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.32:0","nonce":3672259806}]}]} 2024-09-15T03:15:10.823 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-15T03:15:10.824 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-15T03:15:10.824 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-15T03:15:11.076 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:12.419 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:12 smithi032 ceph-mon[27800]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-15T03:15:12.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:12 smithi187 ceph-mon[31764]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-15T03:15:12.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:12 smithi096 ceph-mon[31365]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-15T03:15:12.784 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:12.785 INFO:teuthology.orchestra.run.smithi032.stdout:{"epoch":40,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","created":"2024-09-15T03:10:52.498492+0000","modified":"2024-09-15T03:15:04.094078+0000","last_up_change":"2024-09-15T03:15:02.269026+0000","last_in_change":"2024-09-15T03:14:46.066135+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-15T03:13:57.748607+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,"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,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"087d5e2d-895d-47aa-82a3-e72c17c9608e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6802","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6803","nonce":3066781817}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6804","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6805","nonce":3066781817}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6808","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6809","nonce":3066781817}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6806","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6807","nonce":3066781817}]},"public_addr":"172.21.15.32:6803/3066781817","cluster_addr":"172.21.15.32:6805/3066781817","heartbeat_back_addr":"172.21.15.32:6809/3066781817","heartbeat_front_addr":"172.21.15.32:6807/3066781817","state":["exists","up"]},{"osd":1,"uuid":"48694c67-84e1-4a21-afc2-5e76c6dbf5ce","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6810","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6811","nonce":1694699146}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6812","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6813","nonce":1694699146}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6816","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6817","nonce":1694699146}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6814","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6815","nonce":1694699146}]},"public_addr":"172.21.15.32:6811/1694699146","cluster_addr":"172.21.15.32:6813/1694699146","heartbeat_back_addr":"172.21.15.32:6817/1694699146","heartbeat_front_addr":"172.21.15.32:6815/1694699146","state":["exists","up"]},{"osd":2,"uuid":"fc1ff642-a8ba-4207-82c8-3e8fde335f43","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6801","nonce":3470808148}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6803","nonce":3470808148}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6807","nonce":3470808148}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6805","nonce":3470808148}]},"public_addr":"172.21.15.96:6801/3470808148","cluster_addr":"172.21.15.96:6803/3470808148","heartbeat_back_addr":"172.21.15.96:6807/3470808148","heartbeat_front_addr":"172.21.15.96:6805/3470808148","state":["exists","up"]},{"osd":3,"uuid":"03ade949-91ed-4152-ac15-3f90e75a35c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6809","nonce":1410020497}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6810","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6811","nonce":1410020497}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6815","nonce":1410020497}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6813","nonce":1410020497}]},"public_addr":"172.21.15.96:6809/1410020497","cluster_addr":"172.21.15.96:6811/1410020497","heartbeat_back_addr":"172.21.15.96:6815/1410020497","heartbeat_front_addr":"172.21.15.96:6813/1410020497","state":["exists","up"]},{"osd":4,"uuid":"cc496c75-00a7-4015-bb27-cc12d125a5e3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6800","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6801","nonce":2370189973}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6802","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6803","nonce":2370189973}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6806","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6807","nonce":2370189973}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6804","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6805","nonce":2370189973}]},"public_addr":"172.21.15.187:6801/2370189973","cluster_addr":"172.21.15.187:6803/2370189973","heartbeat_back_addr":"172.21.15.187:6807/2370189973","heartbeat_front_addr":"172.21.15.187:6805/2370189973","state":["exists","up"]},{"osd":5,"uuid":"4478dbec-0452-4b70-8a12-396c99cc217f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6808","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6809","nonce":2006959362}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6810","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6811","nonce":2006959362}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6814","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6815","nonce":2006959362}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6812","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6813","nonce":2006959362}]},"public_addr":"172.21.15.187:6809/2006959362","cluster_addr":"172.21.15.187:6811/2006959362","heartbeat_back_addr":"172.21.15.187:6815/2006959362","heartbeat_front_addr":"172.21.15.187:6813/2006959362","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:08.601395+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:32.617303+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:54.113429+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:14:18.263940+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:14:38.810689+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:15:00.682053+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.32:0/3357432754":"2024-09-16T03:11:37.245684+0000","172.21.15.32:0/1242914657":"2024-09-16T03:11:37.245684+0000","172.21.15.32:0/2610150492":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6800/371636025":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6801/371636025":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6800/2297170429":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/1158324152":"2024-09-16T03:11:14.135966+0000","172.21.15.32:6801/2297170429":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/3514364257":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/3397832794":"2024-09-16T03:11:14.135966+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","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}} 2024-09-15T03:15:13.372 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:13 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/1182338089' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:13.397 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-15T03:15:13.397 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-15T03:15:13.647 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:13.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:13 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/1182338089' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:13.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:13 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/1182338089' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:14.603 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:14 smithi032 ceph-mon[27800]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:15:14.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:14 smithi187 ceph-mon[31764]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:15:14.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:14 smithi096 ceph-mon[31365]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:15:15.280 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:15.281 INFO:teuthology.orchestra.run.smithi032.stdout:{"epoch":40,"fsid":"f2ed5114-730f-11ef-bceb-c7b262605968","created":"2024-09-15T03:10:52.498492+0000","modified":"2024-09-15T03:15:04.094078+0000","last_up_change":"2024-09-15T03:15:02.269026+0000","last_in_change":"2024-09-15T03:14:46.066135+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-15T03:13:57.748607+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,"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,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"087d5e2d-895d-47aa-82a3-e72c17c9608e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6802","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6803","nonce":3066781817}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6804","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6805","nonce":3066781817}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6808","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6809","nonce":3066781817}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6806","nonce":3066781817},{"type":"v1","addr":"172.21.15.32:6807","nonce":3066781817}]},"public_addr":"172.21.15.32:6803/3066781817","cluster_addr":"172.21.15.32:6805/3066781817","heartbeat_back_addr":"172.21.15.32:6809/3066781817","heartbeat_front_addr":"172.21.15.32:6807/3066781817","state":["exists","up"]},{"osd":1,"uuid":"48694c67-84e1-4a21-afc2-5e76c6dbf5ce","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6810","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6811","nonce":1694699146}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6812","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6813","nonce":1694699146}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6816","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6817","nonce":1694699146}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.32:6814","nonce":1694699146},{"type":"v1","addr":"172.21.15.32:6815","nonce":1694699146}]},"public_addr":"172.21.15.32:6811/1694699146","cluster_addr":"172.21.15.32:6813/1694699146","heartbeat_back_addr":"172.21.15.32:6817/1694699146","heartbeat_front_addr":"172.21.15.32:6815/1694699146","state":["exists","up"]},{"osd":2,"uuid":"fc1ff642-a8ba-4207-82c8-3e8fde335f43","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6801","nonce":3470808148}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6803","nonce":3470808148}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6807","nonce":3470808148}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":3470808148},{"type":"v1","addr":"172.21.15.96:6805","nonce":3470808148}]},"public_addr":"172.21.15.96:6801/3470808148","cluster_addr":"172.21.15.96:6803/3470808148","heartbeat_back_addr":"172.21.15.96:6807/3470808148","heartbeat_front_addr":"172.21.15.96:6805/3470808148","state":["exists","up"]},{"osd":3,"uuid":"03ade949-91ed-4152-ac15-3f90e75a35c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6809","nonce":1410020497}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6810","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6811","nonce":1410020497}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6815","nonce":1410020497}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":1410020497},{"type":"v1","addr":"172.21.15.96:6813","nonce":1410020497}]},"public_addr":"172.21.15.96:6809/1410020497","cluster_addr":"172.21.15.96:6811/1410020497","heartbeat_back_addr":"172.21.15.96:6815/1410020497","heartbeat_front_addr":"172.21.15.96:6813/1410020497","state":["exists","up"]},{"osd":4,"uuid":"cc496c75-00a7-4015-bb27-cc12d125a5e3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6800","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6801","nonce":2370189973}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6802","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6803","nonce":2370189973}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6806","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6807","nonce":2370189973}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6804","nonce":2370189973},{"type":"v1","addr":"172.21.15.187:6805","nonce":2370189973}]},"public_addr":"172.21.15.187:6801/2370189973","cluster_addr":"172.21.15.187:6803/2370189973","heartbeat_back_addr":"172.21.15.187:6807/2370189973","heartbeat_front_addr":"172.21.15.187:6805/2370189973","state":["exists","up"]},{"osd":5,"uuid":"4478dbec-0452-4b70-8a12-396c99cc217f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6808","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6809","nonce":2006959362}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6810","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6811","nonce":2006959362}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6814","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6815","nonce":2006959362}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6812","nonce":2006959362},{"type":"v1","addr":"172.21.15.187:6813","nonce":2006959362}]},"public_addr":"172.21.15.187:6809/2006959362","cluster_addr":"172.21.15.187:6811/2006959362","heartbeat_back_addr":"172.21.15.187:6815/2006959362","heartbeat_front_addr":"172.21.15.187:6813/2006959362","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:08.601395+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:32.617303+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:13:54.113429+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:14:18.263940+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:14:38.810689+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-15T03:15:00.682053+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.32:0/3357432754":"2024-09-16T03:11:37.245684+0000","172.21.15.32:0/1242914657":"2024-09-16T03:11:37.245684+0000","172.21.15.32:0/2610150492":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6800/371636025":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6801/371636025":"2024-09-16T03:11:37.245684+0000","172.21.15.32:6800/2297170429":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/1158324152":"2024-09-16T03:11:14.135966+0000","172.21.15.32:6801/2297170429":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/3514364257":"2024-09-16T03:11:14.135966+0000","172.21.15.32:0/3397832794":"2024-09-16T03:11:14.135966+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","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}} 2024-09-15T03:15:15.593 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:15 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/439844169' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:15.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:15 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/439844169' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:15.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:15 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/439844169' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-15T03:15:15.900 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-15T03:15:15.901 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-15T03:15:15.901 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-15T03:15:15.902 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-15T03:15:15.902 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-15T03:15:15.902 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-15T03:15:16.204 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:16.208 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:16.453 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:16 smithi032 ceph-mon[27800]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-15T03:15:16.558 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:16 smithi187 ceph-mon[31764]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-15T03:15:16.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:16 smithi096 ceph-mon[31365]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-15T03:15:17.537 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:17.549 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:17.552 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:18.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:18 smithi032 ceph-mon[27800]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:18.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:18 smithi187 ceph-mon[31764]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:18.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:18 smithi096 ceph-mon[31365]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:20.598 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:20 smithi032 ceph-mon[27800]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:20.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:20 smithi187 ceph-mon[31764]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:20.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:20 smithi096 ceph-mon[31365]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:21.957 INFO:teuthology.orchestra.run.smithi032.stdout:34359738396 2024-09-15T03:15:21.958 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-15T03:15:22.374 INFO:teuthology.orchestra.run.smithi032.stdout:77309411348 2024-09-15T03:15:22.374 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-15T03:15:22.601 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:22 smithi032 ceph-mon[27800]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:22.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:22 smithi187 ceph-mon[31764]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:22.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:22 smithi096 ceph-mon[31365]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:22.835 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:24.140 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:24.140 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:24.567 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:24 smithi032 ceph-mon[27800]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:24.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:24 smithi187 ceph-mon[31764]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:24.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:24 smithi096 ceph-mon[31365]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:26.361 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:26 smithi032 ceph-mon[27800]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:26.387 INFO:teuthology.orchestra.run.smithi032.stdout:163208757256 2024-09-15T03:15:26.388 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-15T03:15:26.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:26 smithi187 ceph-mon[31764]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:26.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:26 smithi096 ceph-mon[31365]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:28.432 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:28 smithi032 ceph-mon[27800]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:28.466 INFO:teuthology.orchestra.run.smithi032.stdout:111669149710 2024-09-15T03:15:28.466 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-15T03:15:28.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:28 smithi187 ceph-mon[31764]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:28.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:28 smithi096 ceph-mon[31365]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:29.719 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:30.153 INFO:teuthology.orchestra.run.smithi032.stdout:55834574873 2024-09-15T03:15:30.153 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-15T03:15:30.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:30 smithi032 ceph-mon[27800]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:30.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:30 smithi187 ceph-mon[31764]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:30.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:30 smithi096 ceph-mon[31365]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:30.845 INFO:teuthology.orchestra.run.smithi032.stdout:34359738398 2024-09-15T03:15:31.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:31 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/1711452642' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-15T03:15:31.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:31 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/1711452642' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-15T03:15:31.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:31 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/1711452642' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-15T03:15:32.011 INFO:teuthology.orchestra.run.smithi032.stdout:137438953484 2024-09-15T03:15:32.012 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-15T03:15:32.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:32 smithi032 ceph-mon[27800]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:32.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:32 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3113500719' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-15T03:15:32.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:32 smithi187 ceph-mon[31764]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:32.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:32 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3113500719' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-15T03:15:32.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:32 smithi096 ceph-mon[31365]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:32.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:32 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3113500719' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-15T03:15:32.726 INFO:teuthology.orchestra.run.smithi032.stdout:77309411350 2024-09-15T03:15:33.411 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411348 got 77309411350 for osd.2 2024-09-15T03:15:33.411 DEBUG:teuthology.parallel:result is None 2024-09-15T03:15:33.817 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738396 got 34359738398 for osd.0 2024-09-15T03:15:33.817 DEBUG:teuthology.parallel:result is None 2024-09-15T03:15:33.862 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:34.544 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:34 smithi032 ceph-mon[27800]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:34.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:34 smithi187 ceph-mon[31764]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:34.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:34 smithi096 ceph-mon[31365]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:35.008 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:35.008 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:35.559 INFO:teuthology.orchestra.run.smithi032.stdout:163208757258 2024-09-15T03:15:36.270 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757256 got 163208757258 for osd.5 2024-09-15T03:15:36.271 DEBUG:teuthology.parallel:result is None 2024-09-15T03:15:36.549 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:36 smithi032 ceph-mon[27800]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:36.549 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:36 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2272164810' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-15T03:15:36.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:36 smithi187 ceph-mon[31764]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:36.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:36 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/2272164810' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-15T03:15:36.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:36 smithi096 ceph-mon[31365]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:36.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:36 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2272164810' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-15T03:15:38.505 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:38 smithi032 ceph-mon[27800]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:38.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:38 smithi187 ceph-mon[31764]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:38.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:38 smithi096 ceph-mon[31365]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:38.685 INFO:teuthology.orchestra.run.smithi032.stdout:55834574875 2024-09-15T03:15:39.279 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574873 got 55834574875 for osd.1 2024-09-15T03:15:39.279 DEBUG:teuthology.parallel:result is None 2024-09-15T03:15:39.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:39 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3017614811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-15T03:15:39.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:39 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3017614811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-15T03:15:39.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:39 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3017614811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-15T03:15:40.045 INFO:teuthology.orchestra.run.smithi032.stdout:137438953486 2024-09-15T03:15:40.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:40 smithi032 ceph-mon[27800]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:40.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:40 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3541405505' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-15T03:15:40.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:40 smithi187 ceph-mon[31764]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:40.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:40 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3541405505' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-15T03:15:40.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:40 smithi096 ceph-mon[31365]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:40.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:40 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3541405505' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-15T03:15:40.679 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953484 got 137438953486 for osd.4 2024-09-15T03:15:40.680 DEBUG:teuthology.parallel:result is None 2024-09-15T03:15:41.018 INFO:teuthology.orchestra.run.smithi032.stdout:111669149713 2024-09-15T03:15:41.583 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:41 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2600274389' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-15T03:15:41.612 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149710 got 111669149713 for osd.3 2024-09-15T03:15:41.612 DEBUG:teuthology.parallel:result is None 2024-09-15T03:15:41.612 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-15T03:15:41.612 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-15T03:15:41.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:41 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/2600274389' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-15T03:15:41.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:41 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2600274389' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-15T03:15:41.869 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:42.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:42 smithi032 ceph-mon[27800]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:42.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:42 smithi187 ceph-mon[31764]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:42.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:42 smithi096 ceph-mon[31365]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:43.804 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:43.805 INFO:teuthology.orchestra.run.smithi032.stderr:dumped all 2024-09-15T03:15:44.383 INFO:teuthology.orchestra.run.smithi032.stdout:{"pg_ready":true,"pg_map":{"version":153,"stamp":"2024-09-15T03:15:43.289575+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":1788000,"kb_used_data":3844,"kb_used_omap":9,"kb_used_meta":1784054,"kb_avail":560682912,"statfs":{"total":575970213888,"available":574139301888,"internally_reserved":0,"allocated":3936256,"data_stored":2590506,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10224,"internal_metadata":1826871312},"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":"12.002126"},"pg_stats":[{"pgid":"1.0","version":"23'92","reported_seq":68,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-15T03:15:04.695139+0000","last_change":"2024-09-15T03:15:04.695139+0000","last_active":"2024-09-15T03:15:04.695139+0000","last_peered":"2024-09-15T03:15:04.695139+0000","last_clean":"2024-09-15T03:15:04.695139+0000","last_became_active":"2024-09-15T03:15:04.690137+0000","last_became_peered":"2024-09-15T03:15:04.690137+0000","last_unstale":"2024-09-15T03:15:04.695139+0000","last_undegraded":"2024-09-15T03:15:04.695139+0000","last_fullsized":"2024-09-15T03:15:04.695139+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-15T03:13:57.798860+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-15T03:13:57.798860+0000","last_clean_scrub_stamp":"2024-09-15T03:13:57.798860+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"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 @ 2024-09-16T08:32:01.082907+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757260,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298288,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446864,"statfs":{"total":95995035648,"available":95689588736,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.51500000000000001}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.47099999999999997}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.433}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.40100000000000002}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.25900000000000001}]}]},{"osd":4,"up_from":32,"seq":137438953487,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297716,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447436,"statfs":{"total":95995035648,"available":95690174464,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.45900000000000002}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.438}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.46899999999999997}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.44700000000000001}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.32400000000000001}]}]},{"osd":3,"up_from":26,"seq":111669149714,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298292,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446860,"statfs":{"total":95995035648,"available":95689584640,"internally_reserved":0,"allocated":954368,"data_stored":727040,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Sun Sep 15 03:15:24 2024","interfaces":[{"interface":"back","average":{"1min":1.2110000000000001,"5min":1.2110000000000001,"15min":1.2110000000000001},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":16.478000000000002,"5min":16.478000000000002,"15min":16.478000000000002},"last":0.498},{"interface":"front","average":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.59599999999999997}]},{"osd":1,"last update":"Sun Sep 15 03:15:24 2024","interfaces":[{"interface":"back","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.64400000000000002,"5min":0.64400000000000002,"15min":0.64400000000000002},"last":0.45500000000000002},{"interface":"front","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.65300000000000002,"5min":0.65300000000000002,"15min":0.65300000000000002},"last":0.62}]},{"osd":2,"last update":"Sun Sep 15 03:15:24 2024","interfaces":[{"interface":"back","average":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"min":{"1min":0.252,"5min":0.252,"15min":0.252},"max":{"1min":0.53700000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"last":0.29399999999999998},{"interface":"front","average":{"1min":0.377,"5min":0.377,"15min":0.377},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.504,"5min":0.504,"15min":0.504},"last":0.32100000000000001}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.55600000000000005}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.48599999999999999}]}]},{"osd":2,"up_from":18,"seq":77309411353,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298284,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446868,"statfs":{"total":95995035648,"available":95689592832,"internally_reserved":0,"allocated":954368,"data_stored":727040,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Sun Sep 15 03:14:56 2024","interfaces":[{"interface":"back","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.53000000000000003},{"interface":"front","average":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"min":{"1min":0.26500000000000001,"5min":0.26500000000000001,"15min":0.26500000000000001},"max":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"last":0.51700000000000002}]},{"osd":1,"last update":"Sun Sep 15 03:14:56 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.67100000000000004,"5min":0.67100000000000004,"15min":0.67100000000000004},"last":0.54800000000000004},{"interface":"front","average":{"1min":0.498,"5min":0.498,"15min":0.498},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.62,"5min":0.62,"15min":0.62},"last":0.56100000000000005}]},{"osd":3,"last update":"Sun Sep 15 03:15:22 2024","interfaces":[{"interface":"back","average":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"last":0.33300000000000002},{"interface":"front","average":{"1min":0.39900000000000002,"5min":0.39900000000000002,"15min":0.39900000000000002},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"last":0.34499999999999997}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.49399999999999999}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.45300000000000001}]}]},{"osd":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297704,"kb_used_data":348,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":356352,"data_stored":136357,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Sun Sep 15 03:15:35 2024","interfaces":[{"interface":"back","average":{"1min":0.29899999999999999,"5min":0.31900000000000001,"15min":0.32200000000000001},"min":{"1min":0.20200000000000001,"5min":0.20200000000000001,"15min":0.20200000000000001},"max":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"last":0.218},{"interface":"front","average":{"1min":0.307,"5min":0.34100000000000003,"15min":0.34699999999999998},"min":{"1min":0.20499999999999999,"5min":0.20499999999999999,"15min":0.20499999999999999},"max":{"1min":0.45900000000000002,"5min":0.47899999999999998,"15min":0.47899999999999998},"last":0.251}]},{"osd":2,"last update":"Sun Sep 15 03:14:58 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.62,"5min":0.62,"15min":0.62},"last":0.38800000000000001},{"interface":"front","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.35199999999999998}]},{"osd":3,"last update":"Sun Sep 15 03:15:22 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"last":0.40699999999999997},{"interface":"front","average":{"1min":0.499,"5min":0.499,"15min":0.499},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"last":0.375}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.499}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.58399999999999996}]}]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297716,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447436,"statfs":{"total":95995035648,"available":95690174464,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Sun Sep 15 03:15:39 2024","interfaces":[{"interface":"back","average":{"1min":0.33900000000000002,"5min":0.315,"15min":0.311},"min":{"1min":0.185,"5min":0.185,"15min":0.185},"max":{"1min":0.91000000000000003,"5min":0.91000000000000003,"15min":0.91000000000000003},"last":0.28799999999999998},{"interface":"front","average":{"1min":0.34300000000000003,"5min":0.33300000000000002,"15min":0.33100000000000002},"min":{"1min":0.22700000000000001,"5min":0.22700000000000001,"15min":0.22700000000000001},"max":{"1min":0.87,"5min":0.87,"15min":0.87},"last":0.34999999999999998}]},{"osd":2,"last update":"Sun Sep 15 03:14:56 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"last":0.503}]},{"osd":3,"last update":"Sun Sep 15 03:15:22 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.97399999999999998,"5min":0.97399999999999998,"15min":0.97399999999999998},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.59699999999999998}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.57099999999999995}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.48599999999999999}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-15T03:15:44.384 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-15T03:15:44.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:44 smithi032 ceph-mon[27800]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:44.638 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:44.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:44 smithi187 ceph-mon[31764]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:44.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:44 smithi096 ceph-mon[31365]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:45.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:45 smithi032 ceph-mon[27800]: from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:45.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:45 smithi187 ceph-mon[31764]: from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:45.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:45 smithi096 ceph-mon[31365]: from='client.14448 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:46.380 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:46.381 INFO:teuthology.orchestra.run.smithi032.stderr:dumped all 2024-09-15T03:15:46.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:46 smithi032 ceph-mon[27800]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:46.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:46 smithi187 ceph-mon[31764]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:46.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:46 smithi096 ceph-mon[31365]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:46.954 INFO:teuthology.orchestra.run.smithi032.stdout:{"pg_ready":true,"pg_map":{"version":154,"stamp":"2024-09-15T03:15:45.289882+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":1788000,"kb_used_data":3844,"kb_used_omap":9,"kb_used_meta":1784054,"kb_avail":560682912,"statfs":{"total":575970213888,"available":574139301888,"internally_reserved":0,"allocated":3936256,"data_stored":2590506,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10224,"internal_metadata":1826871312},"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":"12.002132"},"pg_stats":[{"pgid":"1.0","version":"23'92","reported_seq":68,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-15T03:15:04.695139+0000","last_change":"2024-09-15T03:15:04.695139+0000","last_active":"2024-09-15T03:15:04.695139+0000","last_peered":"2024-09-15T03:15:04.695139+0000","last_clean":"2024-09-15T03:15:04.695139+0000","last_became_active":"2024-09-15T03:15:04.690137+0000","last_became_peered":"2024-09-15T03:15:04.690137+0000","last_unstale":"2024-09-15T03:15:04.695139+0000","last_undegraded":"2024-09-15T03:15:04.695139+0000","last_fullsized":"2024-09-15T03:15:04.695139+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-15T03:13:57.798860+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-15T03:13:57.798860+0000","last_clean_scrub_stamp":"2024-09-15T03:13:57.798860+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"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 @ 2024-09-16T08:32:01.082907+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757260,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298288,"kb_used_data":928,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446864,"statfs":{"total":95995035648,"available":95689588736,"internally_reserved":0,"allocated":950272,"data_stored":726725,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.51500000000000001}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.47099999999999997}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.433}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.40100000000000002}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.25900000000000001}]}]},{"osd":4,"up_from":32,"seq":137438953487,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297716,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447436,"statfs":{"total":95995035648,"available":95690174464,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.45900000000000002}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.438}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.46899999999999997}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.44700000000000001}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.32400000000000001}]}]},{"osd":3,"up_from":26,"seq":111669149715,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298292,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446860,"statfs":{"total":95995035648,"available":95689584640,"internally_reserved":0,"allocated":954368,"data_stored":727040,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Sun Sep 15 03:15:24 2024","interfaces":[{"interface":"back","average":{"1min":1.2110000000000001,"5min":1.2110000000000001,"15min":1.2110000000000001},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":16.478000000000002,"5min":16.478000000000002,"15min":16.478000000000002},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.40400000000000003}]},{"osd":1,"last update":"Sun Sep 15 03:15:24 2024","interfaces":[{"interface":"back","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.64400000000000002,"5min":0.64400000000000002,"15min":0.64400000000000002},"last":0.42099999999999999},{"interface":"front","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.65300000000000002,"5min":0.65300000000000002,"15min":0.65300000000000002},"last":0.432}]},{"osd":2,"last update":"Sun Sep 15 03:15:24 2024","interfaces":[{"interface":"back","average":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"min":{"1min":0.252,"5min":0.252,"15min":0.252},"max":{"1min":0.53700000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"last":0.35099999999999998},{"interface":"front","average":{"1min":0.377,"5min":0.377,"15min":0.377},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.504,"5min":0.504,"15min":0.504},"last":0.379}]},{"osd":4,"last update":"Sun Sep 15 03:15:41 2024","interfaces":[{"interface":"back","average":{"1min":0.59999999999999998,"5min":0.59999999999999998,"15min":0.59999999999999998},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":1.206,"5min":1.206,"15min":1.206},"last":0.75700000000000001},{"interface":"front","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.80700000000000005,"5min":0.80700000000000005,"15min":0.80700000000000005},"last":0.748}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.72799999999999998}]}]},{"osd":2,"up_from":18,"seq":77309411353,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":298284,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93446868,"statfs":{"total":95995035648,"available":95689592832,"internally_reserved":0,"allocated":954368,"data_stored":727040,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Sun Sep 15 03:14:56 2024","interfaces":[{"interface":"back","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.53000000000000003},{"interface":"front","average":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"min":{"1min":0.26500000000000001,"5min":0.26500000000000001,"15min":0.26500000000000001},"max":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"last":0.51700000000000002}]},{"osd":1,"last update":"Sun Sep 15 03:14:56 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.67100000000000004,"5min":0.67100000000000004,"15min":0.67100000000000004},"last":0.54800000000000004},{"interface":"front","average":{"1min":0.498,"5min":0.498,"15min":0.498},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.62,"5min":0.62,"15min":0.62},"last":0.56100000000000005}]},{"osd":3,"last update":"Sun Sep 15 03:15:22 2024","interfaces":[{"interface":"back","average":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"last":0.33300000000000002},{"interface":"front","average":{"1min":0.39900000000000002,"5min":0.39900000000000002,"15min":0.39900000000000002},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"last":0.34499999999999997}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.49399999999999999}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.45300000000000001}]}]},{"osd":1,"up_from":13,"seq":55834574877,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297704,"kb_used_data":348,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447448,"statfs":{"total":95995035648,"available":95690186752,"internally_reserved":0,"allocated":356352,"data_stored":136357,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Sun Sep 15 03:15:35 2024","interfaces":[{"interface":"back","average":{"1min":0.29899999999999999,"5min":0.31900000000000001,"15min":0.32200000000000001},"min":{"1min":0.20200000000000001,"5min":0.20200000000000001,"15min":0.20200000000000001},"max":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"last":0.27700000000000002},{"interface":"front","average":{"1min":0.307,"5min":0.34100000000000003,"15min":0.34699999999999998},"min":{"1min":0.20499999999999999,"5min":0.20499999999999999,"15min":0.20499999999999999},"max":{"1min":0.45900000000000002,"5min":0.47899999999999998,"15min":0.47899999999999998},"last":0.245}]},{"osd":2,"last update":"Sun Sep 15 03:14:58 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.29999999999999999,"5min":0.29999999999999999,"15min":0.29999999999999999},"max":{"1min":0.62,"5min":0.62,"15min":0.62},"last":0.56499999999999995},{"interface":"front","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.5}]},{"osd":3,"last update":"Sun Sep 15 03:15:22 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"last":0.55400000000000005},{"interface":"front","average":{"1min":0.499,"5min":0.499,"15min":0.499},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"last":0.52300000000000002}]},{"osd":4,"last update":"Sun Sep 15 03:15:44 2024","interfaces":[{"interface":"back","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.73099999999999998,"5min":0.73099999999999998,"15min":0.73099999999999998},"last":0.45800000000000002},{"interface":"front","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.38}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.42699999999999999}]}]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":297716,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93447436,"statfs":{"total":95995035648,"available":95690174464,"internally_reserved":0,"allocated":360448,"data_stored":136672,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Sun Sep 15 03:15:39 2024","interfaces":[{"interface":"back","average":{"1min":0.33900000000000002,"5min":0.315,"15min":0.311},"min":{"1min":0.185,"5min":0.185,"15min":0.185},"max":{"1min":0.91000000000000003,"5min":0.91000000000000003,"15min":0.91000000000000003},"last":0.28799999999999998},{"interface":"front","average":{"1min":0.34300000000000003,"5min":0.33300000000000002,"15min":0.33100000000000002},"min":{"1min":0.22700000000000001,"5min":0.22700000000000001,"15min":0.22700000000000001},"max":{"1min":0.87,"5min":0.87,"15min":0.87},"last":0.34999999999999998}]},{"osd":2,"last update":"Sun Sep 15 03:14:56 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"last":0.503}]},{"osd":3,"last update":"Sun Sep 15 03:15:22 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.97399999999999998,"5min":0.97399999999999998,"15min":0.97399999999999998},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.59699999999999998}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.57099999999999995}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.48599999999999999}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-15T03:15:46.955 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-15T03:15:46.955 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-15T03:15:46.955 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-15T03:15:46.956 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-15T03:15:47.222 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:47.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:47 smithi032 ceph-mon[27800]: from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:47.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:47 smithi187 ceph-mon[31764]: from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:47.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:47 smithi096 ceph-mon[31365]: from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:48.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:48 smithi032 ceph-mon[27800]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:48.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:48 smithi187 ceph-mon[31764]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:48.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:48 smithi096 ceph-mon[31365]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:49.139 INFO:teuthology.orchestra.run.smithi032.stdout: 2024-09-15T03:15:49.139 INFO:teuthology.orchestra.run.smithi032.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-15T03:15:49.448 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:49 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/3321355672' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-15T03:15:49.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:49 smithi187 ceph-mon[31764]: from='client.? 172.21.15.32:0/3321355672' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-15T03:15:49.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:49 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/3321355672' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-15T03:15:49.861 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-15T03:15:49.861 INFO:tasks.cephadm:Setup complete, yielding 2024-09-15T03:15:49.861 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-15T03:15:49.871 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi032.front.sepia.ceph.com 2024-09-15T03:15:49.872 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid f2ed5114-730f-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-15T03:15:49.872 DEBUG:teuthology.orchestra.run.smithi032:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-15T03:15:49.872 DEBUG:teuthology.orchestra.run.smithi032:> for host in $HOSTNAMES; do 2024-09-15T03:15:49.872 DEBUG:teuthology.orchestra.run.smithi032:> # find the hostname for "host.c" which will have no mgr 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> HOST_C="${host}" 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> fi 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> done 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> # now drain that host 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> # wait for drain to complete 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> sleep 15 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> done 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> # we want to check the ability to remove the host from 2024-09-15T03:15:49.873 DEBUG:teuthology.orchestra.run.smithi032:> # the CRUSH map, so we should first verify the host is in 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> # the CRUSH map. 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> ceph osd getcrushmap -o compiled-crushmap 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> exit 1 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> fi 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> # If the drain was successful, we should be able to remove the 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> # host without force with no issues. If there are still daemons 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> # we will get a response telling us to drain the host and a 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> # non-zero return code 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-15T03:15:49.874 DEBUG:teuthology.orchestra.run.smithi032:> sleep 30 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> ceph osd getcrushmap -o compiled-crushmap 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> exit 1 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> fi 2024-09-15T03:15:49.875 DEBUG:teuthology.orchestra.run.smithi032:> ' 2024-09-15T03:15:50.128 INFO:teuthology.orchestra.run.smithi032.stderr:Inferring config /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/mon.a/config 2024-09-15T03:15:50.544 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:50 smithi032 ceph-mon[27800]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:50.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:50 smithi187 ceph-mon[31764]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:50.681 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:50 smithi096 ceph-mon[31365]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:51.827 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch host ls --format json 2024-09-15T03:15:51.827 INFO:teuthology.orchestra.run.smithi032.stderr:++ jq -r '.[] | .hostname' 2024-09-15T03:15:52.006 INFO:teuthology.orchestra.run.smithi032.stderr:+ HOSTNAMES='smithi032 2024-09-15T03:15:52.006 INFO:teuthology.orchestra.run.smithi032.stderr:smithi096 2024-09-15T03:15:52.006 INFO:teuthology.orchestra.run.smithi032.stderr:smithi187' 2024-09-15T03:15:52.007 INFO:teuthology.orchestra.run.smithi032.stderr:+ for host in $HOSTNAMES 2024-09-15T03:15:52.007 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch ps --hostname smithi032 --format json 2024-09-15T03:15:52.007 INFO:teuthology.orchestra.run.smithi032.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-15T03:15:52.273 INFO:teuthology.orchestra.run.smithi032.stderr:+ HAS_MGRS=true 2024-09-15T03:15:52.274 INFO:teuthology.orchestra.run.smithi032.stderr:+ '[' true == false ']' 2024-09-15T03:15:52.274 INFO:teuthology.orchestra.run.smithi032.stderr:+ for host in $HOSTNAMES 2024-09-15T03:15:52.274 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch ps --hostname smithi096 --format json 2024-09-15T03:15:52.274 INFO:teuthology.orchestra.run.smithi032.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-15T03:15:52.542 INFO:teuthology.orchestra.run.smithi032.stderr:+ HAS_MGRS=true 2024-09-15T03:15:52.542 INFO:teuthology.orchestra.run.smithi032.stderr:+ '[' true == false ']' 2024-09-15T03:15:52.543 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:52 smithi032 ceph-mon[27800]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:52.543 INFO:teuthology.orchestra.run.smithi032.stderr:+ for host in $HOSTNAMES 2024-09-15T03:15:52.543 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch ps --hostname smithi187 --format json 2024-09-15T03:15:52.543 INFO:teuthology.orchestra.run.smithi032.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-15T03:15:52.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:52 smithi187 ceph-mon[31764]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:52.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:52 smithi096 ceph-mon[31365]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:52.808 INFO:teuthology.orchestra.run.smithi032.stderr:+ HAS_MGRS=false 2024-09-15T03:15:52.808 INFO:teuthology.orchestra.run.smithi032.stderr:+ '[' false == false ']' 2024-09-15T03:15:52.808 INFO:teuthology.orchestra.run.smithi032.stderr:+ HOST_C=smithi187 2024-09-15T03:15:52.808 INFO:teuthology.orchestra.run.smithi032.stderr:+ ceph orch host drain smithi187 --zap-osd-devices 2024-09-15T03:15:53.070 INFO:teuthology.orchestra.run.smithi032.stdout:Scheduled to remove the following daemons from host 'smithi187' 2024-09-15T03:15:53.070 INFO:teuthology.orchestra.run.smithi032.stdout:type id 2024-09-15T03:15:53.070 INFO:teuthology.orchestra.run.smithi032.stdout:-------------------- --------------- 2024-09-15T03:15:53.070 INFO:teuthology.orchestra.run.smithi032.stdout:mon c 2024-09-15T03:15:53.070 INFO:teuthology.orchestra.run.smithi032.stdout:osd 4 2024-09-15T03:15:53.070 INFO:teuthology.orchestra.run.smithi032.stdout:osd 5 2024-09-15T03:15:53.081 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch ps --hostname smithi187 2024-09-15T03:15:53.349 INFO:teuthology.orchestra.run.smithi032.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-15T03:15:53.349 INFO:teuthology.orchestra.run.smithi032.stderr:mon.c smithi187 running (3m) 54s ago 3m 36.8M 2048M 17.2.7-1643-gd75f2382 5c88729ed6d5 c89f8ec6c905 2024-09-15T03:15:53.349 INFO:teuthology.orchestra.run.smithi032.stderr:osd.4 smithi187 running (79s) 54s ago 78s 29.7M 10.3G 17.2.7-1643-gd75f2382 5c88729ed6d5 47b88761ad34 2024-09-15T03:15:53.349 INFO:teuthology.orchestra.run.smithi032.stderr:osd.5 smithi187 running (57s) 54s ago 56s 11.5M 10.3G 17.2.7-1643-gd75f2382 5c88729ed6d5 0bb5a350e32f ' 2024-09-15T03:15:53.350 INFO:teuthology.orchestra.run.smithi032.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-15T03:15:53.350 INFO:teuthology.orchestra.run.smithi032.stderr:mon.c smithi187 running (3m) 54s ago 3m 36.8M 2048M 17.2.7-1643-gd75f2382 5c88729ed6d5 c89f8ec6c905 2024-09-15T03:15:53.350 INFO:teuthology.orchestra.run.smithi032.stderr:osd.4 smithi187 running (79s) 54s ago 78s 29.7M 10.3G 17.2.7-1643-gd75f2382 5c88729ed6d5 47b88761ad34 2024-09-15T03:15:53.350 INFO:teuthology.orchestra.run.smithi032.stderr:osd.5 smithi187 running (57s) 54s ago 56s 11.5M 10.3G 17.2.7-1643-gd75f2382 5c88729ed6d5 0bb5a350e32f ' '!=' 'No daemons reported' ']' 2024-09-15T03:15:53.350 INFO:teuthology.orchestra.run.smithi032.stderr:+ sleep 15 2024-09-15T03:15:53.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi032", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi096", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-15T03:15:53.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:53 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-15T03:15:53.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.657 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi032", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi096", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:53.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:15:53.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:53.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-15T03:15:53.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:53 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-15T03:15:53.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi032", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi096", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-15T03:15:53.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:53 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi187", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: Added label _no_schedule to host smithi187 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi187 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: osd.4 crush weight is 0.0872955322265625 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: osd.5 crush weight is 0.0872955322265625 2024-09-15T03:15:54.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: Removing smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: Removing smithi187:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: Removing smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-15T03:15:54.629 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-15T03:15:54.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-15T03:15:54.630 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:54 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a[27796]: 2024-09-15T03:15:54.564+0000 7fc088b0b640 -1 mon.a@0(leader).osd e41 definitely_dead 0 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi187", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: Added label _no_schedule to host smithi187 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi187 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: osd.4 crush weight is 0.0872955322265625 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: osd.5 crush weight is 0.0872955322265625 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:54.658 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: Removing smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: Removing smithi187:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: Removing smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-15T03:15:54.659 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:54 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-15T03:15:54.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi187", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: Added label _no_schedule to host smithi187 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi187 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: osd.4 crush weight is 0.0872955322265625 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: osd.5 crush weight is 0.0872955322265625 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:15:54.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: Removing smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: Removing smithi187:/etc/ceph/ceph.client.admin.keyring 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: Removing smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-15T03:15:54.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:54 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-15T03:15:55.877 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: osdmap e41: 6 total, 6 up, 6 in 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: osd.5 weight is now 0.0 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.878 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:55 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: osdmap e41: 6 total, 6 up, 6 in 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: osd.5 weight is now 0.0 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.879 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:55 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: osdmap e41: 6 total, 6 up, 6 in 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: osd.5 weight is now 0.0 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-15T03:15:55.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:55 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-15T03:15:56.158 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:55 smithi187 systemd[1]: Stopping Ceph osd.4 for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:15:56.158 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4[36049]: 2024-09-15T03:15:56.120+0000 7f561f070640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:15:56.158 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4[36049]: 2024-09-15T03:15:56.120+0000 7f561f070640 -1 osd.4 41 *** Got signal Terminated *** 2024-09-15T03:15:56.158 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4[36049]: 2024-09-15T03:15:56.121+0000 7f561f070640 -1 osd.4 41 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-15T03:15:56.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:56 smithi032 ceph-mon[27800]: pgmap v160: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:56.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:56 smithi032 ceph-mon[27800]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-15T03:15:56.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:56 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-15T03:15:56.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:56 smithi032 ceph-mon[27800]: osdmap e42: 6 total, 5 up, 6 in 2024-09-15T03:15:56.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:56 smithi032 ceph-mon[27800]: osd.4 now down 2024-09-15T03:15:56.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:56 smithi032 ceph-mon[27800]: Removing daemon osd.4 from smithi187 -- ports [] 2024-09-15T03:15:56.907 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:56 smithi187 podman[45689]: 2024-09-15 03:15:56.652394297 +0000 UTC m=+0.633683354 container died 47b88761ad346f86571e1f613ec13ca0f8d940ab5a3026e601711eb699e01ecf (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238) 2024-09-15T03:15:56.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-mon[31764]: pgmap v160: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:56.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-mon[31764]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-15T03:15:56.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-15T03:15:56.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-mon[31764]: osdmap e42: 6 total, 5 up, 6 in 2024-09-15T03:15:56.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-mon[31764]: osd.4 now down 2024-09-15T03:15:56.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:56 smithi187 ceph-mon[31764]: Removing daemon osd.4 from smithi187 -- ports [] 2024-09-15T03:15:56.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:56 smithi096 ceph-mon[31365]: pgmap v160: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:56.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:56 smithi096 ceph-mon[31365]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-15T03:15:56.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:56 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-15T03:15:56.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:56 smithi096 ceph-mon[31365]: osdmap e42: 6 total, 5 up, 6 in 2024-09-15T03:15:56.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:56 smithi096 ceph-mon[31365]: osd.4 now down 2024-09-15T03:15:56.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:56 smithi096 ceph-mon[31365]: Removing daemon osd.4 from smithi187 -- ports [] 2024-09-15T03:15:57.287 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:57 smithi187 podman[45689]: 2024-09-15 03:15:57.096006609 +0000 UTC m=+1.077295655 container cleanup 47b88761ad346f86571e1f613ec13ca0f8d940ab5a3026e601711eb699e01ecf (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4, GIT_CLEAN=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-15T03:15:57.288 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:57 smithi187 bash[45689]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4 2024-09-15T03:15:57.580 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:57 smithi187 podman[45704]: 2024-09-15 03:15:57.372339265 +0000 UTC m=+0.719912035 container remove 47b88761ad346f86571e1f613ec13ca0f8d940ab5a3026e601711eb699e01ecf (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD) 2024-09-15T03:15:57.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:57 smithi032 ceph-mon[27800]: osdmap e43: 6 total, 5 up, 6 in 2024-09-15T03:15:57.854 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:57 smithi187 ceph-mon[31764]: osdmap e43: 6 total, 5 up, 6 in 2024-09-15T03:15:57.854 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:57 smithi187 podman[45793]: 2024-09-15 03:15:57.599551088 +0000 UTC m=+0.015764829 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac 2024-09-15T03:15:57.854 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:57 smithi187 podman[45793]: 2024-09-15 03:15:57.69802611 +0000 UTC m=+0.114239843 container create dff7d985d1ac372f399f3bbefb92cdb52699b77319ab91b66882ac28b6feece8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4-deactivate, ceph=True, GIT_CLEAN=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731) 2024-09-15T03:15:57.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:57 smithi096 ceph-mon[31365]: osdmap e43: 6 total, 5 up, 6 in 2024-09-15T03:15:58.118 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 podman[45793]: 2024-09-15 03:15:58.02576315 +0000 UTC m=+0.441976892 container init dff7d985d1ac372f399f3bbefb92cdb52699b77319ab91b66882ac28b6feece8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4-deactivate, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, ceph=True, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-15T03:15:58.118 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 podman[45793]: 2024-09-15 03:15:58.029542006 +0000 UTC m=+0.445755740 container start dff7d985d1ac372f399f3bbefb92cdb52699b77319ab91b66882ac28b6feece8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, io.buildah.version=1.37.2) 2024-09-15T03:15:58.118 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 podman[45793]: 2024-09-15 03:15:58.117483512 +0000 UTC m=+0.533697259 container attach dff7d985d1ac372f399f3bbefb92cdb52699b77319ab91b66882ac28b6feece8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4-deactivate, ceph=True, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-15T03:15:58.408 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 podman[45793]: 2024-09-15 03:15:58.205420603 +0000 UTC m=+0.621634342 container died dff7d985d1ac372f399f3bbefb92cdb52699b77319ab91b66882ac28b6feece8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-15T03:15:58.830 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:58 smithi096 ceph-mon[31365]: pgmap v163: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:58.830 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:58 smithi096 ceph-mon[31365]: osdmap e44: 6 total, 5 up, 6 in 2024-09-15T03:15:58.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:58 smithi032 ceph-mon[27800]: pgmap v163: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:58.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:58 smithi032 ceph-mon[27800]: osdmap e44: 6 total, 5 up, 6 in 2024-09-15T03:15:58.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:58 smithi187 ceph-mon[31764]: pgmap v163: 1 pgs: 1 peering; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-15T03:15:58.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:58 smithi187 ceph-mon[31764]: osdmap e44: 6 total, 5 up, 6 in 2024-09-15T03:15:58.908 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 podman[45817]: 2024-09-15 03:15:58.662754529 +0000 UTC m=+0.448224504 container remove dff7d985d1ac372f399f3bbefb92cdb52699b77319ab91b66882ac28b6feece8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-4-deactivate, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, ceph=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2) 2024-09-15T03:15:58.908 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-15T03:15:58.908 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 systemd[1]: Stopped Ceph osd.4 for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:15:58.908 INFO:journalctl@ceph.osd.4.smithi187.stdout:Sep 15 03:15:58 smithi187 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.4.service: Consumed 1.485s CPU time. 2024-09-15T03:15:59.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-15T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-15T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-15T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: Cluster is now healthy 2024-09-15T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-15T03:15:59.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:15:59 smithi032 ceph-mon[27800]: osdmap e45: 5 total, 5 up, 5 in 2024-09-15T03:15:59.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-15T03:15:59.907 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-15T03:15:59.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:15:59.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-15T03:15:59.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: Cluster is now healthy 2024-09-15T03:15:59.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-15T03:15:59.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:15:59 smithi187 ceph-mon[31764]: osdmap e45: 5 total, 5 up, 5 in 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: Cluster is now healthy 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-15T03:15:59.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:15:59 smithi096 ceph-mon[31365]: osdmap e45: 5 total, 5 up, 5 in 2024-09-15T03:16:00.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:00 smithi032 ceph-mon[27800]: Removing key for osd.4 2024-09-15T03:16:00.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:00 smithi032 ceph-mon[27800]: Successfully removed osd.4 on smithi187 2024-09-15T03:16:00.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:00 smithi032 ceph-mon[27800]: Successfully purged osd.4 on smithi187 2024-09-15T03:16:00.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:00 smithi032 ceph-mon[27800]: Zapping devices for osd.4 on smithi187 2024-09-15T03:16:00.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:00 smithi032 ceph-mon[27800]: pgmap v166: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:00.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:00 smithi032 ceph-mon[27800]: osdmap e46: 5 total, 5 up, 5 in 2024-09-15T03:16:00.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:00 smithi187 ceph-mon[31764]: Removing key for osd.4 2024-09-15T03:16:00.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:00 smithi187 ceph-mon[31764]: Successfully removed osd.4 on smithi187 2024-09-15T03:16:00.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:00 smithi187 ceph-mon[31764]: Successfully purged osd.4 on smithi187 2024-09-15T03:16:00.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:00 smithi187 ceph-mon[31764]: Zapping devices for osd.4 on smithi187 2024-09-15T03:16:00.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:00 smithi187 ceph-mon[31764]: pgmap v166: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:00.908 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:00 smithi187 ceph-mon[31764]: osdmap e46: 5 total, 5 up, 5 in 2024-09-15T03:16:00.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:00 smithi096 ceph-mon[31365]: Removing key for osd.4 2024-09-15T03:16:00.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:00 smithi096 ceph-mon[31365]: Successfully removed osd.4 on smithi187 2024-09-15T03:16:00.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:00 smithi096 ceph-mon[31365]: Successfully purged osd.4 on smithi187 2024-09-15T03:16:00.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:00 smithi096 ceph-mon[31365]: Zapping devices for osd.4 on smithi187 2024-09-15T03:16:00.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:00 smithi096 ceph-mon[31365]: pgmap v166: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:00.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:00 smithi096 ceph-mon[31365]: osdmap e46: 5 total, 5 up, 5 in 2024-09-15T03:16:02.013 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:01 smithi187 podman[46158]: 2024-09-15 03:16:01.781285399 +0000 UTC m=+0.018959947 container died c89f8ec6c90574b6f5a2916c39c7636db4094f105e9c7815fbe866e608820519 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-c, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:16:02.127 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:01 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:16:01.738+0000 7f6b5b215640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2024-09-15T03:16:02.407 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:02 smithi187 podman[46158]: 2024-09-15 03:16:02.237815562 +0000 UTC m=+0.475490100 container remove c89f8ec6c90574b6f5a2916c39c7636db4094f105e9c7815fbe866e608820519 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-c, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731) 2024-09-15T03:16:03.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:02 smithi187 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-15T03:16:03.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:02 smithi187 systemd[1]: Stopped Ceph mon.c for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:16:03.158 INFO:journalctl@ceph.mon.c.smithi187.stdout:Sep 15 03:16:02 smithi187 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.c.service: Consumed 2.961s CPU time. 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: pgmap v169: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: Successfully zapped devices for osd.4 on smithi187 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: Removing monitor c from monmap... 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: Removing daemon mon.c from smithi187 -- ports [] 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: mon.b calling monitor election 2024-09-15T03:16:04.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: pgmap v170: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: mon.a calling monitor election 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: monmap e4: 2 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],b=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: fsmap 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: osdmap e47: 5 total, 5 up, 5 in 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: overall HEALTH_OK 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:04.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:03 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:04.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: pgmap v169: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: Successfully zapped devices for osd.4 on smithi187 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: Removing monitor c from monmap... 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: Removing daemon mon.c from smithi187 -- ports [] 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: mon.b calling monitor election 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: pgmap v170: 1 pgs: 1 peering; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: mon.a calling monitor election 2024-09-15T03:16:04.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: monmap e4: 2 mons at {a=[v2:172.21.15.32:3300/0,v1:172.21.15.32:6789/0],b=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: fsmap 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: osdmap e47: 5 total, 5 up, 5 in 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: overall HEALTH_OK 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:04.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:03 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:05.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:04 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:16:05.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:04 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:16:06.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:05 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:06.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:05 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:06.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:05 smithi096 ceph-mon[31365]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-15T03:16:06.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:05 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:06.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:05 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:06.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:05 smithi032 ceph-mon[27800]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 90 KiB/s, 0 objects/s recovering 2024-09-15T03:16:08.351 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch ps --hostname smithi187 2024-09-15T03:16:08.619 INFO:teuthology.orchestra.run.smithi032.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-15T03:16:08.619 INFO:teuthology.orchestra.run.smithi032.stderr:osd.5 smithi187 running (72s) 3s ago 72s 36.7M 10.3G 17.2.7-1643-gd75f2382 5c88729ed6d5 0bb5a350e32f ' 2024-09-15T03:16:08.619 INFO:teuthology.orchestra.run.smithi032.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-15T03:16:08.619 INFO:teuthology.orchestra.run.smithi032.stderr:osd.5 smithi187 running (72s) 3s ago 72s 36.7M 10.3G 17.2.7-1643-gd75f2382 5c88729ed6d5 0bb5a350e32f ' '!=' 'No daemons reported' ']' 2024-09-15T03:16:08.619 INFO:teuthology.orchestra.run.smithi032.stderr:+ sleep 15 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a[27796]: 2024-09-15T03:16:08.133+0000 7fc088b0b640 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: Detected new or changed devices on smithi187 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: Updating smithi032:/etc/ceph/ceph.conf 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:16:08.620 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-15T03:16:08.621 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:08 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-15T03:16:08.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: Detected new or changed devices on smithi187 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: Updating smithi032:/etc/ceph/ceph.conf 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: Updating smithi096:/etc/ceph/ceph.conf 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:08.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:08.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:08.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-15T03:16:08.680 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:08 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-15T03:16:09.556 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-15T03:16:09.557 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:09 smithi096 ceph-mon[31365]: osdmap e48: 5 total, 4 up, 5 in 2024-09-15T03:16:09.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: Updating smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: Updating smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-15T03:16:09.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:09 smithi032 ceph-mon[27800]: osdmap e48: 5 total, 4 up, 5 in 2024-09-15T03:16:09.699 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:09 smithi187 systemd[1]: Stopping Ceph osd.5 for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:16:10.157 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:09 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5[41688]: 2024-09-15T03:16:09.697+0000 7f3418e23640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:16:10.158 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:09 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5[41688]: 2024-09-15T03:16:09.697+0000 7f3418e23640 -1 osd.5 47 *** Got signal Terminated *** 2024-09-15T03:16:10.158 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:09 smithi187 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5[41688]: 2024-09-15T03:16:09.697+0000 7f3418e23640 -1 osd.5 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-15T03:16:10.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:10 smithi096 ceph-mon[31365]: osd.5 now down 2024-09-15T03:16:10.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:10 smithi096 ceph-mon[31365]: Removing daemon osd.5 from smithi187 -- ports [] 2024-09-15T03:16:10.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:10 smithi096 ceph-mon[31365]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-15T03:16:10.499 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:10 smithi187 podman[48569]: 2024-09-15 03:16:10.219357746 +0000 UTC m=+0.631200065 container died 0bb5a350e32f86e80b59e516996951da0d2027a85d95196d555f137a54103f92 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.build-date=20240731) 2024-09-15T03:16:10.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:10 smithi032 ceph-mon[27800]: osd.5 now down 2024-09-15T03:16:10.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:10 smithi032 ceph-mon[27800]: Removing daemon osd.5 from smithi187 -- ports [] 2024-09-15T03:16:10.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:10 smithi032 ceph-mon[27800]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-15T03:16:10.849 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:10 smithi187 podman[48569]: 2024-09-15 03:16:10.605947214 +0000 UTC m=+1.017789533 container cleanup 0bb5a350e32f86e80b59e516996951da0d2027a85d95196d555f137a54103f92 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2) 2024-09-15T03:16:10.849 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:10 smithi187 bash[48569]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5 2024-09-15T03:16:11.149 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:10 smithi187 podman[48583]: 2024-09-15 03:16:10.848618889 +0000 UTC m=+0.622947279 container remove 0bb5a350e32f86e80b59e516996951da0d2027a85d95196d555f137a54103f92 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5, GIT_CLEAN=True, io.buildah.version=1.37.2, ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-15T03:16:11.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:11 smithi187 podman[48669]: 2024-09-15 03:16:11.149386931 +0000 UTC m=+0.101770102 container create d8cdadb8b2af790466cc0980d7a243f11e1767f9787caeb890d6999579af3cbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5-deactivate, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:16:11.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:11 smithi187 podman[48669]: 2024-09-15 03:16:11.063191534 +0000 UTC m=+0.015574704 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac 2024-09-15T03:16:11.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:11 smithi187 podman[48669]: 2024-09-15 03:16:11.368475288 +0000 UTC m=+0.320858460 container init d8cdadb8b2af790466cc0980d7a243f11e1767f9787caeb890d6999579af3cbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5-deactivate, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, CEPH_POINT_RELEASE=, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD) 2024-09-15T03:16:11.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:11 smithi187 podman[48669]: 2024-09-15 03:16:11.371641699 +0000 UTC m=+0.324024871 container start d8cdadb8b2af790466cc0980d7a243f11e1767f9787caeb890d6999579af3cbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_CLEAN=True, org.label-schema.schema-version=1.0) 2024-09-15T03:16:11.907 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:11 smithi187 podman[48669]: 2024-09-15 03:16:11.443647564 +0000 UTC m=+0.396030736 container attach d8cdadb8b2af790466cc0980d7a243f11e1767f9787caeb890d6999579af3cbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-09-15T03:16:11.908 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:11 smithi187 podman[48669]: 2024-09-15 03:16:11.551127574 +0000 UTC m=+0.503510749 container died d8cdadb8b2af790466cc0980d7a243f11e1767f9787caeb890d6999579af3cbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:16:12.407 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:12 smithi187 podman[48692]: 2024-09-15 03:16:12.096520551 +0000 UTC m=+0.539727153 container remove d8cdadb8b2af790466cc0980d7a243f11e1767f9787caeb890d6999579af3cbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-5-deactivate, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-09-15T03:16:12.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:12 smithi187 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-15T03:16:12.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:12 smithi187 systemd[1]: Stopped Ceph osd.5 for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:16:12.408 INFO:journalctl@ceph.osd.5.smithi187.stdout:Sep 15 03:16:12 smithi187 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.5.service: Consumed 1.548s CPU time. 2024-09-15T03:16:12.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:12 smithi032 ceph-mon[27800]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:16:12.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:12 smithi096 ceph-mon[31365]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 1.4 GiB used, 446 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-15T03:16:13.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Removing key for osd.5 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Successfully removed osd.5 on smithi187 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Cluster is now healthy 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: osdmap e49: 4 total, 4 up, 4 in 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Successfully purged osd.5 on smithi187 2024-09-15T03:16:13.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:13 smithi032 ceph-mon[27800]: Zapping devices for osd.5 on smithi187 2024-09-15T03:16:13.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Removing key for osd.5 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Successfully removed osd.5 on smithi187 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Cluster is now healthy 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: osdmap e49: 4 total, 4 up, 4 in 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Successfully purged osd.5 on smithi187 2024-09-15T03:16:13.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:13 smithi096 ceph-mon[31365]: Zapping devices for osd.5 on smithi187 2024-09-15T03:16:14.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:14 smithi032 ceph-mon[27800]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:14.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:14 smithi096 ceph-mon[31365]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:16.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: Successfully zapped devices for osd.5 on smithi187 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: Reconfiguring mon.a (monmap changed)... 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:16.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:16 smithi032 ceph-mon[27800]: Reconfiguring daemon mon.a on smithi032 2024-09-15T03:16:16.678 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: Successfully zapped devices for osd.5 on smithi187 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: Reconfiguring mon.a (monmap changed)... 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:16.679 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:16 smithi096 ceph-mon[31365]: Reconfiguring daemon mon.a on smithi032 2024-09-15T03:16:18.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: Reconfiguring mgr.a (monmap changed)... 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: Reconfiguring daemon mgr.a on smithi032 2024-09-15T03:16:18.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:17 smithi032 ceph-mon[27800]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:18.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:18.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:18.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: Reconfiguring mgr.a (monmap changed)... 2024-09-15T03:16:18.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:16:18.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:16:18.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:18.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: Reconfiguring daemon mgr.a on smithi032 2024-09-15T03:16:18.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:17 smithi096 ceph-mon[31365]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:19.852 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:19 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:19.852 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:19 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:19.852 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:19 smithi032 ceph-mon[27800]: Reconfiguring osd.0 (monmap changed)... 2024-09-15T03:16:19.853 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:19 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-15T03:16:19.853 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:19 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:19.853 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:19 smithi032 ceph-mon[27800]: Reconfiguring daemon osd.0 on smithi032 2024-09-15T03:16:19.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:19 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:19.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:19 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:19.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:19 smithi096 ceph-mon[31365]: Reconfiguring osd.0 (monmap changed)... 2024-09-15T03:16:19.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:19 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-15T03:16:19.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:19 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:19.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:19 smithi096 ceph-mon[31365]: Reconfiguring daemon osd.0 on smithi032 2024-09-15T03:16:20.709 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:20 smithi032 ceph-mon[27800]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:20.709 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:20 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:20.709 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:20 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:20.709 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:20 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-15T03:16:20.709 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:20 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:20.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:20 smithi096 ceph-mon[31365]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:20.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:20 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:20.928 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:20 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:20.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:20 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-15T03:16:20.929 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:20 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:21.856 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:21 smithi096 ceph-mon[31365]: Reconfiguring osd.1 (monmap changed)... 2024-09-15T03:16:21.856 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:21 smithi096 ceph-mon[31365]: Reconfiguring daemon osd.1 on smithi032 2024-09-15T03:16:21.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:21 smithi032 ceph-mon[27800]: Reconfiguring osd.1 (monmap changed)... 2024-09-15T03:16:21.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:21 smithi032 ceph-mon[27800]: Reconfiguring daemon osd.1 on smithi032 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: Reconfiguring mon.b (monmap changed)... 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:22.827 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:22 smithi096 ceph-mon[31365]: Reconfiguring daemon mon.b on smithi096 2024-09-15T03:16:22.877 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: Reconfiguring mon.b (monmap changed)... 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:22.878 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:22 smithi032 ceph-mon[27800]: Reconfiguring daemon mon.b on smithi096 2024-09-15T03:16:23.621 INFO:teuthology.orchestra.run.smithi032.stderr:++ ceph orch ps --hostname smithi187 2024-09-15T03:16:23.903 INFO:teuthology.orchestra.run.smithi032.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-15T03:16:23.903 INFO:teuthology.orchestra.run.smithi032.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-15T03:16:23.903 INFO:teuthology.orchestra.run.smithi032.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-15T03:16:24.151 INFO:teuthology.orchestra.run.smithi032.stderr:17 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: Reconfiguring mgr.b (monmap changed)... 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: Reconfiguring daemon mgr.b on smithi096 2024-09-15T03:16:24.152 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:23 smithi032 ceph-mon[27800]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:24.157 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: Reconfiguring mgr.b (monmap changed)... 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: Reconfiguring daemon mgr.b on smithi096 2024-09-15T03:16:24.158 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:23 smithi096 ceph-mon[31365]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:24.162 INFO:teuthology.orchestra.run.smithi032.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-15T03:16:24.172 INFO:teuthology.orchestra.run.smithi032.stderr:++ cat crushmap.txt 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:+ CRUSH_MAP='# begin crush map 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable choose_local_tries 0 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable choose_local_fallback_tries 0 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable choose_total_tries 50 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable chooseleaf_descend_once 1 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable chooseleaf_vary_r 1 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable chooseleaf_stable 1 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable straw_calc_version 1 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:tunable allowed_bucket_algs 54 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:24.174 INFO:teuthology.orchestra.run.smithi032.stderr:# devices 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:device 0 osd.0 class ssd 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:device 1 osd.1 class ssd 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:device 2 osd.2 class ssd 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:device 3 osd.3 class ssd 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:# types 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 0 osd 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 1 host 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 2 chassis 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 3 rack 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 4 row 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 5 pdu 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 6 pod 2024-09-15T03:16:24.175 INFO:teuthology.orchestra.run.smithi032.stderr:type 7 room 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr:type 8 datacenter 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr:type 9 zone 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr:type 10 region 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr:type 11 root 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr:# buckets 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr:host smithi032 { 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: id -3 # do not change unnecessarily 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: id -4 class ssd # do not change unnecessarily 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.17459 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:24.176 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.0 weight 0.08730 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.1 weight 0.08730 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr:host smithi096 { 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: id -5 # do not change unnecessarily 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: id -6 class ssd # do not change unnecessarily 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.17459 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.2 weight 0.08730 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.3 weight 0.08730 2024-09-15T03:16:24.177 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr:host smithi187 { 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: id -7 # do not change unnecessarily 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: id -8 class ssd # do not change unnecessarily 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.00000 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr:root default { 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: id -1 # do not change unnecessarily 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: id -2 class ssd # do not change unnecessarily 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.34918 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:24.178 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: item smithi032 weight 0.17459 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: item smithi096 weight 0.17459 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: item smithi187 weight 0.00000 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr:# rules 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr:rule replicated_rule { 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: id 0 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: type replicated 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: step take default 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: step choose firstn 0 type osd 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: step emit 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:24.179 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:24.180 INFO:teuthology.orchestra.run.smithi032.stderr:# end crush map' 2024-09-15T03:16:24.180 INFO:teuthology.orchestra.run.smithi032.stderr:+ grep -q smithi187 2024-09-15T03:16:24.180 INFO:teuthology.orchestra.run.smithi032.stderr:+ ceph orch host rm smithi187 --rm-crush-entry 2024-09-15T03:16:25.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/2132146763' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: Reconfiguring osd.2 (monmap changed)... 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: Reconfiguring daemon osd.2 on smithi096 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi187", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:16:25.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:24 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi187"}]: dispatch 2024-09-15T03:16:25.240 INFO:teuthology.orchestra.run.smithi032.stdout:Removed host 'smithi187' 2024-09-15T03:16:25.240 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/2132146763' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: Reconfiguring osd.2 (monmap changed)... 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: Reconfiguring daemon osd.2 on smithi096 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi187", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-15T03:16:25.241 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:24 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi187"}]: dispatch 2024-09-15T03:16:25.256 INFO:teuthology.orchestra.run.smithi032.stderr:+ sleep 30 2024-09-15T03:16:26.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi187"}]': finished 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: osdmap e50: 4 total, 4 up, 4 in 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi187"}]: dispatch 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi187"}]': finished 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: Removed host smithi187 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: Reconfiguring osd.3 (monmap changed)... 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:26.429 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:26 smithi096 ceph-mon[31365]: Reconfiguring daemon osd.3 on smithi096 2024-09-15T03:16:26.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi187"}]': finished 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: osdmap e50: 4 total, 4 up, 4 in 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi187"}]: dispatch 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi187"}]': finished 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: Removed host smithi187 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: Reconfiguring osd.3 (monmap changed)... 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:26.628 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-mon[27800]: Reconfiguring daemon osd.3 on smithi096 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:16:26.886+0000 7f6b4d1b9640 -1 log_channel(cephadm) log [ERR] : Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: service_name: mon 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: placement: 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: count: 3 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: hosts: 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: - smithi032:172.21.15.32=a 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: - smithi096:172.21.15.96=b 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: - smithi187:172.21.15.187=c 2024-09-15T03:16:27.128 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:26 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: ''')): Cannot place on smithi187: Unknown hosts 2024-09-15T03:16:28.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout: service_name: mon 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout: placement: 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout: count: 3 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout: hosts: 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout: - smithi032:172.21.15.32=a 2024-09-15T03:16:28.128 INFO:journalctl@ceph.mon.a.smithi032.stdout: - smithi096:172.21.15.96=b 2024-09-15T03:16:28.129 INFO:journalctl@ceph.mon.a.smithi032.stdout: - smithi187:172.21.15.187=c 2024-09-15T03:16:28.129 INFO:journalctl@ceph.mon.a.smithi032.stdout: ''')): Cannot place on smithi187: Unknown hosts 2024-09-15T03:16:28.129 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:27 smithi032 ceph-mon[27800]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:28.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:28.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:28.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-15T03:16:28.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-15T03:16:28.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: from='mgr.14150 172.21.15.32:0/3873566104' entity='mgr.a' 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: Failed to apply mon spec MONSpec.from_json(yaml.safe_load('''service_type: mon 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: service_name: mon 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: placement: 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: count: 3 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: hosts: 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: - smithi032:172.21.15.32=a 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: - smithi096:172.21.15.96=b 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: - smithi187:172.21.15.187=c 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout: ''')): Cannot place on smithi187: Unknown hosts 2024-09-15T03:16:28.180 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:27 smithi096 ceph-mon[31365]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:29.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:28 smithi032 ceph-mon[27800]: Health check failed: Failed to apply 1 service(s): mon (CEPHADM_APPLY_SPEC_FAIL) 2024-09-15T03:16:29.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:28 smithi032 ceph-mon[27800]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-15T03:16:29.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:28 smithi096 ceph-mon[31365]: Health check failed: Failed to apply 1 service(s): mon (CEPHADM_APPLY_SPEC_FAIL) 2024-09-15T03:16:29.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:28 smithi096 ceph-mon[31365]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-15T03:16:30.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:29 smithi096 ceph-mon[31365]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:30.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:29 smithi032 ceph-mon[27800]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:32.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:31 smithi032 ceph-mon[27800]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:32.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:31 smithi096 ceph-mon[31365]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:34.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:33 smithi032 ceph-mon[27800]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:34.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:33 smithi096 ceph-mon[31365]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:36.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:35 smithi032 ceph-mon[27800]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:36.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:35 smithi096 ceph-mon[31365]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:38.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:37 smithi032 ceph-mon[27800]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:38.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:37 smithi096 ceph-mon[31365]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:40.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:39 smithi032 ceph-mon[27800]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:40.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:39 smithi096 ceph-mon[31365]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:42.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:41 smithi032 ceph-mon[27800]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:42.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:41 smithi096 ceph-mon[31365]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:44.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:43 smithi032 ceph-mon[27800]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:44.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:43 smithi096 ceph-mon[31365]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:46.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:45 smithi032 ceph-mon[27800]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:46.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:45 smithi096 ceph-mon[31365]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:48.378 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:47 smithi032 ceph-mon[27800]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:48.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:47 smithi096 ceph-mon[31365]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:50.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:49 smithi032 ceph-mon[27800]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:50.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:49 smithi096 ceph-mon[31365]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:52.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:51 smithi032 ceph-mon[27800]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:52.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:51 smithi096 ceph-mon[31365]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:54.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:53 smithi032 ceph-mon[27800]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:54.428 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:53 smithi096 ceph-mon[31365]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:55.257 INFO:teuthology.orchestra.run.smithi032.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-15T03:16:55.515 INFO:teuthology.orchestra.run.smithi032.stderr:18 2024-09-15T03:16:55.526 INFO:teuthology.orchestra.run.smithi032.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-15T03:16:55.536 INFO:teuthology.orchestra.run.smithi032.stderr:++ cat crushmap.txt 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:+ CRUSH_MAP='# begin crush map 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:tunable choose_local_tries 0 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:tunable choose_local_fallback_tries 0 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:tunable choose_total_tries 50 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:tunable chooseleaf_descend_once 1 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:tunable chooseleaf_vary_r 1 2024-09-15T03:16:55.537 INFO:teuthology.orchestra.run.smithi032.stderr:tunable chooseleaf_stable 1 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:tunable straw_calc_version 1 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:tunable allowed_bucket_algs 54 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:# devices 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:device 0 osd.0 class ssd 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:device 1 osd.1 class ssd 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:device 2 osd.2 class ssd 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:device 3 osd.3 class ssd 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:# types 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:type 0 osd 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:type 1 host 2024-09-15T03:16:55.538 INFO:teuthology.orchestra.run.smithi032.stderr:type 2 chassis 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 3 rack 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 4 row 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 5 pdu 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 6 pod 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 7 room 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 8 datacenter 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 9 zone 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 10 region 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:type 11 root 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:# buckets 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr:host smithi032 { 2024-09-15T03:16:55.539 INFO:teuthology.orchestra.run.smithi032.stderr: id -3 # do not change unnecessarily 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: id -4 class ssd # do not change unnecessarily 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.17459 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.0 weight 0.08730 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.1 weight 0.08730 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr:host smithi096 { 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: id -5 # do not change unnecessarily 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: id -6 class ssd # do not change unnecessarily 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.17459 2024-09-15T03:16:55.540 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.2 weight 0.08730 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: item osd.3 weight 0.08730 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr:root default { 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: id -1 # do not change unnecessarily 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: id -2 class ssd # do not change unnecessarily 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: # weight 0.34918 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: alg straw2 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: hash 0 # rjenkins1 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: item smithi032 weight 0.17459 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: item smithi096 weight 0.17459 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:55.541 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr:# rules 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr:rule replicated_rule { 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr: id 0 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr: type replicated 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr: step take default 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr: step choose firstn 0 type osd 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr: step emit 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr:} 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr:# end crush map' 2024-09-15T03:16:55.542 INFO:teuthology.orchestra.run.smithi032.stderr:+ grep -q smithi187 2024-09-15T03:16:56.127 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:55 smithi032 ceph-mon[27800]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:56.128 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:55 smithi032 ceph-mon[27800]: from='client.? 172.21.15.32:0/4238008753' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-15T03:16:56.265 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-15T03:16:56.274 INFO:tasks.cephadm:Teardown begin 2024-09-15T03:16:56.275 DEBUG:teuthology.orchestra.run.smithi032:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:16:56.305 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:16:56.335 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:55 smithi096 ceph-mon[31365]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-15T03:16:56.335 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:55 smithi096 ceph-mon[31365]: from='client.? 172.21.15.32:0/4238008753' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-15T03:16:56.340 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:16:56.374 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-15T03:16:56.375 DEBUG:teuthology.orchestra.run.smithi032:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-15T03:16:56.391 DEBUG:teuthology.orchestra.run.smithi096:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-15T03:16:56.409 DEBUG:teuthology.orchestra.run.smithi187:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-15T03:16:56.432 INFO:tasks.cephadm:Stopping all daemons... 2024-09-15T03:16:56.432 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-15T03:16:56.433 DEBUG:teuthology.orchestra.run.smithi032:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a 2024-09-15T03:16:56.627 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:56 smithi032 systemd[1]: Stopping Ceph mon.a for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:16:57.052 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:56 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a[27796]: 2024-09-15T03:16:56.726+0000 7fc08e316640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:16:57.052 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:56 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a[27796]: 2024-09-15T03:16:56.726+0000 7fc08e316640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-15T03:16:57.052 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:56 smithi032 podman[55941]: 2024-09-15 03:16:56.747205737 +0000 UTC m=+0.125023201 container died 29016d5b1e351ec8663112191904602112e3e8f2581a79a10b260a898057f12a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.vendor=CentOS) 2024-09-15T03:16:57.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:57 smithi032 podman[55941]: 2024-09-15 03:16:57.158847082 +0000 UTC m=+0.536664546 container cleanup 29016d5b1e351ec8663112191904602112e3e8f2581a79a10b260a898057f12a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, ceph=True, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.license=GPLv2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:16:57.377 INFO:journalctl@ceph.mon.a.smithi032.stdout:Sep 15 03:16:57 smithi032 bash[55941]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-a 2024-09-15T03:16:57.534 DEBUG:teuthology.orchestra.run.smithi032:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.a.service' 2024-09-15T03:16:57.586 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:16:57.586 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-15T03:16:57.587 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-15T03:16:57.587 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.b 2024-09-15T03:16:57.877 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:57 smithi096 systemd[1]: Stopping Ceph mon.b for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:16:58.178 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:57 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-b[31361]: 2024-09-15T03:16:57.874+0000 7f5d435fe640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:16:58.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:57 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-b[31361]: 2024-09-15T03:16:57.874+0000 7f5d435fe640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-15T03:16:58.179 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:57 smithi096 podman[46589]: 2024-09-15 03:16:57.988965543 +0000 UTC m=+0.218369077 container died df8a673523c8a1f7b55f1248cd4e562986ce9cf51121334d4f5fa91bebdedc5a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-b, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True) 2024-09-15T03:16:58.578 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:58 smithi096 podman[46589]: 2024-09-15 03:16:58.342969891 +0000 UTC m=+0.572373426 container cleanup df8a673523c8a1f7b55f1248cd4e562986ce9cf51121334d4f5fa91bebdedc5a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-b, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True) 2024-09-15T03:16:58.578 INFO:journalctl@ceph.mon.b.smithi096.stdout:Sep 15 03:16:58 smithi096 bash[46589]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mon-b 2024-09-15T03:16:58.708 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.b.service' 2024-09-15T03:16:58.748 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:16:58.749 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-15T03:16:58.749 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-15T03:16:58.749 DEBUG:teuthology.orchestra.run.smithi187:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.c 2024-09-15T03:16:58.795 DEBUG:teuthology.orchestra.run.smithi187:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mon.c.service' 2024-09-15T03:16:59.151 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:16:59.151 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-15T03:16:59.151 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-15T03:16:59.151 DEBUG:teuthology.orchestra.run.smithi032:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a 2024-09-15T03:16:59.447 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:59 smithi032 systemd[1]: Stopping Ceph mgr.a for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:16:59.722 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:59 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a[28028]: 2024-09-15T03:16:59.446+0000 7f6b72c26640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:16:59.722 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:59 smithi032 podman[56062]: 2024-09-15 03:16:59.478114072 +0000 UTC m=+0.122358780 container died 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-15T03:17:00.106 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:59 smithi032 podman[56062]: 2024-09-15 03:16:59.904400087 +0000 UTC m=+0.548644799 container cleanup 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, ceph=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238) 2024-09-15T03:17:00.106 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:16:59 smithi032 bash[56062]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a 2024-09-15T03:17:00.340 DEBUG:teuthology.orchestra.run.smithi032:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-15T03:17:00.362 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:17:00 smithi032 podman[56076]: 2024-09-15 03:17:00.105716895 +0000 UTC m=+0.625365233 container remove 5813ac2e737f4081f083dbc77636c26c2f3a094e457a8e0813093e19c471deec (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d75f23820806da622f561ee5ee7551015285993f, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-a, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_CLEAN=True, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:17:00.363 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:17:00 smithi032 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service: Deactivated successfully. 2024-09-15T03:17:00.363 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:17:00 smithi032 systemd[1]: Stopped Ceph mgr.a for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:17:00.363 INFO:journalctl@ceph.mgr.a.smithi032.stdout:Sep 15 03:17:00 smithi032 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.a.service: Consumed 33.888s CPU time. 2024-09-15T03:17:00.375 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:00.375 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-15T03:17:00.375 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-15T03:17:00.375 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.b 2024-09-15T03:17:00.668 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:17:00 smithi096 systemd[1]: Stopping Ceph mgr.b for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:17:00.928 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:17:00 smithi096 podman[46711]: 2024-09-15 03:17:00.692980551 +0000 UTC m=+0.127854198 container died 7faa70ba07004e72ec57379da524fa875de4f182c798e5c06afd1b8ca1418da7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , ceph=True, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-09-15T03:17:01.340 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:17:01 smithi096 podman[46711]: 2024-09-15 03:17:01.113657393 +0000 UTC m=+0.548531032 container cleanup 7faa70ba07004e72ec57379da524fa875de4f182c798e5c06afd1b8ca1418da7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b, org.label-schema.schema-version=1.0, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-15T03:17:01.340 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:17:01 smithi096 bash[46711]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b 2024-09-15T03:17:01.594 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:17:01 smithi096 podman[46723]: 2024-09-15 03:17:01.339979482 +0000 UTC m=+0.645437839 container remove 7faa70ba07004e72ec57379da524fa875de4f182c798e5c06afd1b8ca1418da7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-mgr-b, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=) 2024-09-15T03:17:01.594 INFO:journalctl@ceph.mgr.b.smithi096.stdout:Sep 15 03:17:01 smithi096 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.b.service: Main process exited, code=exited, status=143/n/a 2024-09-15T03:17:01.607 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-15T03:17:01.642 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:01.643 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-15T03:17:01.643 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-15T03:17:01.643 DEBUG:teuthology.orchestra.run.smithi032:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.0 2024-09-15T03:17:01.934 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:01 smithi032 systemd[1]: Stopping Ceph osd.0 for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:17:02.377 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:01 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0[41630]: 2024-09-15T03:17:01.933+0000 7f4bfa821640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:17:02.377 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:01 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0[41630]: 2024-09-15T03:17:01.933+0000 7f4bfa821640 -1 osd.0 50 *** Got signal Terminated *** 2024-09-15T03:17:02.377 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:01 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0[41630]: 2024-09-15T03:17:01.933+0000 7f4bfa821640 -1 osd.0 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-15T03:17:07.643 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:07 smithi032 podman[56184]: 2024-09-15 03:17:07.381118539 +0000 UTC m=+5.547381208 container died 8f30f1b0a18eb656fbac58fd78ca07c2be87d88b0c83b8770c3388b4a1dc234f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0) 2024-09-15T03:17:07.985 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:07 smithi032 podman[56184]: 2024-09-15 03:17:07.816891994 +0000 UTC m=+5.983154695 container cleanup 8f30f1b0a18eb656fbac58fd78ca07c2be87d88b0c83b8770c3388b4a1dc234f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, ceph=True, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731) 2024-09-15T03:17:07.985 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:07 smithi032 bash[56184]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0 2024-09-15T03:17:08.377 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:07 smithi032 podman[56199]: 2024-09-15 03:17:07.984591146 +0000 UTC m=+0.601251363 container remove 8f30f1b0a18eb656fbac58fd78ca07c2be87d88b0c83b8770c3388b4a1dc234f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, maintainer=Guillaume Abrioux , RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD) 2024-09-15T03:17:08.755 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:08 smithi032 podman[56286]: 2024-09-15 03:17:08.338945045 +0000 UTC m=+0.015805327 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac 2024-09-15T03:17:08.755 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:08 smithi032 podman[56286]: 2024-09-15 03:17:08.452206723 +0000 UTC m=+0.129067021 container create 407aadc807edbb0e7c0cc6e89bb63f06eb87046281e9ba925c230e042066594a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, ceph=True) 2024-09-15T03:17:08.755 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:08 smithi032 podman[56286]: 2024-09-15 03:17:08.673166103 +0000 UTC m=+0.350026369 container init 407aadc807edbb0e7c0cc6e89bb63f06eb87046281e9ba925c230e042066594a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0-deactivate, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_CLEAN=True, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.license=GPLv2, io.buildah.version=1.37.2) 2024-09-15T03:17:08.755 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:08 smithi032 podman[56286]: 2024-09-15 03:17:08.676503014 +0000 UTC m=+0.353363271 container start 407aadc807edbb0e7c0cc6e89bb63f06eb87046281e9ba925c230e042066594a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0-deactivate, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.build-date=20240731) 2024-09-15T03:17:08.755 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:08 smithi032 podman[56286]: 2024-09-15 03:17:08.754146847 +0000 UTC m=+0.431007122 container attach 407aadc807edbb0e7c0cc6e89bb63f06eb87046281e9ba925c230e042066594a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0-deactivate, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.license=GPLv2, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux ) 2024-09-15T03:17:09.128 INFO:journalctl@ceph.osd.0.smithi032.stdout:Sep 15 03:17:08 smithi032 podman[56286]: 2024-09-15 03:17:08.85764617 +0000 UTC m=+0.534506427 container died 407aadc807edbb0e7c0cc6e89bb63f06eb87046281e9ba925c230e042066594a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0) 2024-09-15T03:17:09.523 DEBUG:teuthology.orchestra.run.smithi032:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.0.service' 2024-09-15T03:17:09.566 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:09.566 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-15T03:17:09.566 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-15T03:17:09.566 DEBUG:teuthology.orchestra.run.smithi032:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.1 2024-09-15T03:17:09.805 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:09 smithi032 systemd[1]: Stopping Ceph osd.1 for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:17:10.127 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1[47280]: 2024-09-15T03:17:09.893+0000 7f384b911640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:17:10.127 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1[47280]: 2024-09-15T03:17:09.893+0000 7f384b911640 -1 osd.1 50 *** Got signal Terminated *** 2024-09-15T03:17:10.127 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:09 smithi032 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1[47280]: 2024-09-15T03:17:09.893+0000 7f384b911640 -1 osd.1 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-15T03:17:15.612 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:15 smithi032 podman[56392]: 2024-09-15 03:17:15.344326841 +0000 UTC m=+5.544857253 container died fecd5c43a32d20813227f5b4b1c8f56e0cab11e3e01073543d970d64d0a63097 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-15T03:17:15.877 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:15 smithi032 podman[56392]: 2024-09-15 03:17:15.785117769 +0000 UTC m=+5.985648184 container cleanup fecd5c43a32d20813227f5b4b1c8f56e0cab11e3e01073543d970d64d0a63097 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2) 2024-09-15T03:17:15.877 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:15 smithi032 bash[56392]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1 2024-09-15T03:17:16.378 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:15 smithi032 podman[56418]: 2024-09-15 03:17:15.994677708 +0000 UTC m=+0.642338776 container remove fecd5c43a32d20813227f5b4b1c8f56e0cab11e3e01073543d970d64d0a63097 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:17:16.631 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:16 smithi032 podman[56507]: 2024-09-15 03:17:16.304934292 +0000 UTC m=+0.015932748 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac 2024-09-15T03:17:16.631 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:16 smithi032 podman[56507]: 2024-09-15 03:17:16.413134571 +0000 UTC m=+0.124133005 container create 9d608f6d72f5befb437ccecc02b9bc47b0ddd2c88bd92b68d9db1caa579f5fc6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1-deactivate, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:17:16.632 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:16 smithi032 podman[56507]: 2024-09-15 03:17:16.630773001 +0000 UTC m=+0.341771449 container init 9d608f6d72f5befb437ccecc02b9bc47b0ddd2c88bd92b68d9db1caa579f5fc6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2) 2024-09-15T03:17:17.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:16 smithi032 podman[56507]: 2024-09-15 03:17:16.634133414 +0000 UTC m=+0.345131849 container start 9d608f6d72f5befb437ccecc02b9bc47b0ddd2c88bd92b68d9db1caa579f5fc6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1-deactivate, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux ) 2024-09-15T03:17:17.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:16 smithi032 podman[56507]: 2024-09-15 03:17:16.697639019 +0000 UTC m=+0.408637464 container attach 9d608f6d72f5befb437ccecc02b9bc47b0ddd2c88bd92b68d9db1caa579f5fc6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-15T03:17:17.128 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:16 smithi032 podman[56507]: 2024-09-15 03:17:16.81513952 +0000 UTC m=+0.526137954 container died 9d608f6d72f5befb437ccecc02b9bc47b0ddd2c88bd92b68d9db1caa579f5fc6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1-deactivate, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux ) 2024-09-15T03:17:17.408 DEBUG:teuthology.orchestra.run.smithi032:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.1.service' 2024-09-15T03:17:17.415 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:17 smithi032 podman[56530]: 2024-09-15 03:17:17.383823231 +0000 UTC m=+0.562688592 container remove 9d608f6d72f5befb437ccecc02b9bc47b0ddd2c88bd92b68d9db1caa579f5fc6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-1-deactivate, ceph=True, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.license=GPLv2) 2024-09-15T03:17:17.415 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:17 smithi032 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.1.service: Deactivated successfully. 2024-09-15T03:17:17.415 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:17 smithi032 systemd[1]: Stopped Ceph osd.1 for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:17:17.416 INFO:journalctl@ceph.osd.1.smithi032.stdout:Sep 15 03:17:17 smithi032 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.1.service: Consumed 2.923s CPU time. 2024-09-15T03:17:17.451 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:17.451 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-15T03:17:17.452 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-15T03:17:17.452 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.2 2024-09-15T03:17:17.744 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:17 smithi096 systemd[1]: Stopping Ceph osd.2 for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:17:18.178 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:17 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2[35562]: 2024-09-15T03:17:17.740+0000 7fe7c43f6640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:17:18.178 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:17 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2[35562]: 2024-09-15T03:17:17.740+0000 7fe7c43f6640 -1 osd.2 50 *** Got signal Terminated *** 2024-09-15T03:17:18.179 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:17 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2[35562]: 2024-09-15T03:17:17.740+0000 7fe7c43f6640 -1 osd.2 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-15T03:17:23.366 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:23 smithi096 podman[46847]: 2024-09-15 03:17:23.073946797 +0000 UTC m=+5.435640927 container died 5b28aa9738a117551c642a921484536ca0386ef368b7cef00a5895d470c5a26c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, ceph=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731) 2024-09-15T03:17:23.678 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:23 smithi096 podman[46847]: 2024-09-15 03:17:23.464737193 +0000 UTC m=+5.826431310 container cleanup 5b28aa9738a117551c642a921484536ca0386ef368b7cef00a5895d470c5a26c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.license=GPLv2) 2024-09-15T03:17:23.678 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:23 smithi096 bash[46847]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2 2024-09-15T03:17:24.042 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:23 smithi096 podman[46861]: 2024-09-15 03:17:23.735613001 +0000 UTC m=+0.650919306 container remove 5b28aa9738a117551c642a921484536ca0386ef368b7cef00a5895d470c5a26c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True) 2024-09-15T03:17:24.361 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46947]: 2024-09-15 03:17:24.041756052 +0000 UTC m=+0.083416535 container create 0e5911faff4135a84fc466ee86ebd1776e5921805f3dd24c37c091cd0112c497 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-15T03:17:24.361 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46947]: 2024-09-15 03:17:23.973847145 +0000 UTC m=+0.015507641 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac 2024-09-15T03:17:24.361 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46947]: 2024-09-15 03:17:24.277446112 +0000 UTC m=+0.319106594 container init 0e5911faff4135a84fc466ee86ebd1776e5921805f3dd24c37c091cd0112c497 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-15T03:17:24.361 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46947]: 2024-09-15 03:17:24.280691471 +0000 UTC m=+0.322351949 container start 0e5911faff4135a84fc466ee86ebd1776e5921805f3dd24c37c091cd0112c497 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2-deactivate, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD) 2024-09-15T03:17:24.361 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46947]: 2024-09-15 03:17:24.360612822 +0000 UTC m=+0.402273315 container attach 0e5911faff4135a84fc466ee86ebd1776e5921805f3dd24c37c091cd0112c497 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-15T03:17:24.678 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46947]: 2024-09-15 03:17:24.451990591 +0000 UTC m=+0.493651085 container died 0e5911faff4135a84fc466ee86ebd1776e5921805f3dd24c37c091cd0112c497 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2-deactivate, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, ceph=True) 2024-09-15T03:17:25.002 INFO:journalctl@ceph.osd.2.smithi096.stdout:Sep 15 03:17:24 smithi096 podman[46970]: 2024-09-15 03:17:24.980349935 +0000 UTC m=+0.517748671 container remove 0e5911faff4135a84fc466ee86ebd1776e5921805f3dd24c37c091cd0112c497 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, ceph=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-15T03:17:25.007 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.2.service' 2024-09-15T03:17:25.046 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:25.046 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-15T03:17:25.047 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-15T03:17:25.047 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.3 2024-09-15T03:17:25.263 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:25 smithi096 systemd[1]: Stopping Ceph osd.3 for f2ed5114-730f-11ef-bceb-c7b262605968... 2024-09-15T03:17:25.678 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:25 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3[41485]: 2024-09-15T03:17:25.391+0000 7f0ce40ac640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-15T03:17:25.678 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:25 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3[41485]: 2024-09-15T03:17:25.391+0000 7f0ce40ac640 -1 osd.3 50 *** Got signal Terminated *** 2024-09-15T03:17:25.678 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:25 smithi096 ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3[41485]: 2024-09-15T03:17:25.391+0000 7f0ce40ac640 -1 osd.3 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-15T03:17:31.133 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:30 smithi096 podman[47050]: 2024-09-15 03:17:30.852284894 +0000 UTC m=+5.578314704 container died 7c677597738d123038cd0d88acf73e84966f9c57e0efd3093a3fcfaf42c00a7f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.schema-version=1.0) 2024-09-15T03:17:31.428 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:31 smithi096 podman[47050]: 2024-09-15 03:17:31.332601307 +0000 UTC m=+6.058631160 container cleanup 7c677597738d123038cd0d88acf73e84966f9c57e0efd3093a3fcfaf42c00a7f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-15T03:17:31.428 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:31 smithi096 bash[47050]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3 2024-09-15T03:17:31.893 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:31 smithi096 podman[47079]: 2024-09-15 03:17:31.59220197 +0000 UTC m=+0.731249157 container remove 7c677597738d123038cd0d88acf73e84966f9c57e0efd3093a3fcfaf42c00a7f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, ceph=True, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-09-15T03:17:32.154 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:31 smithi096 podman[47164]: 2024-09-15 03:17:31.794867395 +0000 UTC m=+0.015858594 image pull 5c88729ed6d5bf43038296d22a5895511cd0af7c2172156b411462c2685712d0 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac 2024-09-15T03:17:32.154 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:31 smithi096 podman[47164]: 2024-09-15 03:17:31.943042096 +0000 UTC m=+0.164033281 container create dcdb87ece2b0bb13d4c2d7c32a8b14e1c99a33c965f61c4ef620fc0697e72995 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3-deactivate, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731) 2024-09-15T03:17:32.154 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 podman[47164]: 2024-09-15 03:17:32.153493789 +0000 UTC m=+0.374484975 container init dcdb87ece2b0bb13d4c2d7c32a8b14e1c99a33c965f61c4ef620fc0697e72995 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.vendor=CentOS, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_BRANCH=HEAD) 2024-09-15T03:17:32.429 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 podman[47164]: 2024-09-15 03:17:32.156871333 +0000 UTC m=+0.377862523 container start dcdb87ece2b0bb13d4c2d7c32a8b14e1c99a33c965f61c4ef620fc0697e72995 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3-deactivate, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, org.label-schema.build-date=20240731, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-09-15T03:17:32.429 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 podman[47164]: 2024-09-15 03:17:32.228425314 +0000 UTC m=+0.449416501 container attach dcdb87ece2b0bb13d4c2d7c32a8b14e1c99a33c965f61c4ef620fc0697e72995 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3-deactivate, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731) 2024-09-15T03:17:32.429 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 podman[47164]: 2024-09-15 03:17:32.333116272 +0000 UTC m=+0.554107469 container died dcdb87ece2b0bb13d4c2d7c32a8b14e1c99a33c965f61c4ef620fc0697e72995 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.vendor=CentOS, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-09-15T03:17:32.872 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.3.service' 2024-09-15T03:17:32.896 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 podman[47187]: 2024-09-15 03:17:32.856215791 +0000 UTC m=+0.513415405 container remove dcdb87ece2b0bb13d4c2d7c32a8b14e1c99a33c965f61c4ef620fc0697e72995 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b74feaf32e117a824018a514c6386b2ab812fa0078f0a1365fcf1c4c7be8bdac, name=ceph-f2ed5114-730f-11ef-bceb-c7b262605968-osd-3-deactivate, RELEASE=wip-bharath9-testing-2024-09-13-1444-quincy-d75f238, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731) 2024-09-15T03:17:32.896 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.3.service: Deactivated successfully. 2024-09-15T03:17:32.896 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 systemd[1]: Stopped Ceph osd.3 for f2ed5114-730f-11ef-bceb-c7b262605968. 2024-09-15T03:17:32.896 INFO:journalctl@ceph.osd.3.smithi096.stdout:Sep 15 03:17:32 smithi096 systemd[1]: ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.3.service: Consumed 1.891s CPU time. 2024-09-15T03:17:32.910 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:32.910 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-15T03:17:32.910 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-15T03:17:32.910 DEBUG:teuthology.orchestra.run.smithi187:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.4 2024-09-15T03:17:32.956 DEBUG:teuthology.orchestra.run.smithi187:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.4.service' 2024-09-15T03:17:32.991 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:32.991 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-15T03:17:32.991 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-15T03:17:32.992 DEBUG:teuthology.orchestra.run.smithi187:> sudo systemctl stop ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.5 2024-09-15T03:17:33.070 DEBUG:teuthology.orchestra.run.smithi187:> sudo pkill -f 'journalctl -f -n 0 -u ceph-f2ed5114-730f-11ef-bceb-c7b262605968@osd.5.service' 2024-09-15T03:17:33.142 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-15T03:17:33.143 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-15T03:17:33.143 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-15T03:17:34.544 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-15T03:17:35.915 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-15T03:17:36.523 DEBUG:teuthology.orchestra.run.smithi032:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:17:36.556 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:17:36.586 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-15T03:17:36.613 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-15T03:17:36.614 DEBUG:teuthology.misc:Transferring archived files from smithi032:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi032/crash 2024-09-15T03:17:36.615 DEBUG:teuthology.orchestra.run.smithi032:> sudo tar c -f - -C /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash -- . 2024-09-15T03:17:36.655 INFO:teuthology.orchestra.run.smithi032.stderr:tar: /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-15T03:17:36.655 INFO:teuthology.orchestra.run.smithi032.stderr:tar: Error is not recoverable: exiting now 2024-09-15T03:17:36.657 DEBUG:teuthology.misc:Transferring archived files from smithi096:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi096/crash 2024-09-15T03:17:36.658 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash -- . 2024-09-15T03:17:36.697 INFO:teuthology.orchestra.run.smithi096.stderr:tar: /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-15T03:17:36.698 INFO:teuthology.orchestra.run.smithi096.stderr:tar: Error is not recoverable: exiting now 2024-09-15T03:17:36.699 DEBUG:teuthology.misc:Transferring archived files from smithi187:/var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi187/crash 2024-09-15T03:17:36.700 DEBUG:teuthology.orchestra.run.smithi187:> sudo tar c -f - -C /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash -- . 2024-09-15T03:17:36.741 INFO:teuthology.orchestra.run.smithi187.stderr:tar: /var/lib/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-15T03:17:36.741 INFO:teuthology.orchestra.run.smithi187.stderr:tar: Error is not recoverable: exiting now 2024-09-15T03:17:36.742 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-15T03:17:36.743 DEBUG:teuthology.orchestra.run.smithi032:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-09-15T03:17:36.774 INFO:teuthology.orchestra.run.smithi032.stderr:grep: /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-15T03:17:36.776 INFO:tasks.cephadm:Compressing logs... 2024-09-15T03:17:36.776 DEBUG:teuthology.orchestra.run.smithi032:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-15T03:17:36.819 DEBUG:teuthology.orchestra.run.smithi096:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-15T03:17:36.822 DEBUG:teuthology.orchestra.run.smithi187:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-15T03:17:36.845 INFO:teuthology.orchestra.run.smithi032.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-15T03:17:36.845 INFO:teuthology.orchestra.run.smithi032.stderr:: No such file or directory 2024-09-15T03:17:36.845 INFO:teuthology.orchestra.run.smithi032.stderr:gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-15T03:17:36.849 INFO:teuthology.orchestra.run.smithi032.stderr:gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-15T03:17:36.850 INFO:teuthology.orchestra.run.smithi032.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.0.log: /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-15T03:17:36.850 INFO:teuthology.orchestra.run.smithi032.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-15T03:17:36.850 INFO:teuthology.orchestra.run.smithi032.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:: No such file or directory 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-15T03:17:36.851 INFO:teuthology.orchestra.run.smithi096.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.b.log: /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.3.log: /var/log/ceph/cephadm.log: 90.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi096.stderr: 91.0% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log: No such file or directory 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr: 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr:gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-15T03:17:36.852 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.5.log: /var/log/ceph/cephadm.log: 91.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-15T03:17:36.853 INFO:teuthology.orchestra.run.smithi096.stderr: 91.2% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-15T03:17:36.853 INFO:teuthology.orchestra.run.smithi187.stderr: 91.2% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-15T03:17:36.854 INFO:teuthology.orchestra.run.smithi032.stderr:/var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.a.log: /var/log/ceph/cephadm.log: 90.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-15T03:17:36.854 INFO:teuthology.orchestra.run.smithi032.stderr: 91.3% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-15T03:17:36.864 INFO:teuthology.orchestra.run.smithi187.stderr: 92.9% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-15T03:17:36.876 INFO:teuthology.orchestra.run.smithi187.stderr: 92.8% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-15T03:17:36.878 INFO:teuthology.orchestra.run.smithi032.stderr: 93.0% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-15T03:17:36.885 INFO:teuthology.orchestra.run.smithi032.stderr: 92.9% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-15T03:17:36.889 INFO:teuthology.orchestra.run.smithi096.stderr: 92.9% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-15T03:17:36.901 INFO:teuthology.orchestra.run.smithi187.stderr: 92.6% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-15T03:17:36.903 INFO:teuthology.orchestra.run.smithi187.stderr: 2024-09-15T03:17:36.903 INFO:teuthology.orchestra.run.smithi187.stderr:real 0m0.064s 2024-09-15T03:17:36.903 INFO:teuthology.orchestra.run.smithi187.stderr:user 0m0.112s 2024-09-15T03:17:36.903 INFO:teuthology.orchestra.run.smithi187.stderr:sys 0m0.016s 2024-09-15T03:17:36.903 INFO:teuthology.orchestra.run.smithi096.stderr: 93.1% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-15T03:17:36.905 INFO:teuthology.orchestra.run.smithi096.stderr: 92.3% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-15T03:17:36.907 INFO:teuthology.orchestra.run.smithi096.stderr: 2024-09-15T03:17:36.907 INFO:teuthology.orchestra.run.smithi096.stderr:real 0m0.072s 2024-09-15T03:17:36.908 INFO:teuthology.orchestra.run.smithi096.stderr:user 0m0.170s 2024-09-15T03:17:36.908 INFO:teuthology.orchestra.run.smithi096.stderr:sys 0m0.022s 2024-09-15T03:17:36.910 INFO:teuthology.orchestra.run.smithi032.stderr: 89.3% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-15T03:17:37.047 INFO:teuthology.orchestra.run.smithi032.stderr: 91.0% -- replaced with /var/log/ceph/f2ed5114-730f-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-15T03:17:37.049 INFO:teuthology.orchestra.run.smithi032.stderr: 2024-09-15T03:17:37.049 INFO:teuthology.orchestra.run.smithi032.stderr:real 0m0.216s 2024-09-15T03:17:37.049 INFO:teuthology.orchestra.run.smithi032.stderr:user 0m0.341s 2024-09-15T03:17:37.050 INFO:teuthology.orchestra.run.smithi032.stderr:sys 0m0.033s 2024-09-15T03:17:37.050 INFO:tasks.cephadm:Archiving logs... 2024-09-15T03:17:37.050 DEBUG:teuthology.misc:Transferring archived files from smithi032:/var/log/ceph to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi032/log 2024-09-15T03:17:37.051 DEBUG:teuthology.orchestra.run.smithi032:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-15T03:17:37.180 DEBUG:teuthology.misc:Transferring archived files from smithi096:/var/log/ceph to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi096/log 2024-09-15T03:17:37.181 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-15T03:17:37.238 DEBUG:teuthology.misc:Transferring archived files from smithi187:/var/log/ceph to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi187/log 2024-09-15T03:17:37.239 DEBUG:teuthology.orchestra.run.smithi187:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-15T03:17:37.280 INFO:tasks.cephadm:Removing cluster... 2024-09-15T03:17:37.280 DEBUG:teuthology.orchestra.run.smithi032:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --force 2024-09-15T03:17:37.749 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --force 2024-09-15T03:17:38.221 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid f2ed5114-730f-11ef-bceb-c7b262605968 --force 2024-09-15T03:17:38.690 INFO:tasks.cephadm:Removing cephadm ... 2024-09-15T03:17:38.691 DEBUG:teuthology.orchestra.run.smithi032:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-15T03:17:38.710 DEBUG:teuthology.orchestra.run.smithi096:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-15T03:17:38.727 DEBUG:teuthology.orchestra.run.smithi187:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-15T03:17:38.743 INFO:tasks.cephadm:Teardown complete 2024-09-15T03:17:38.743 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-15T03:17:38.754 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-15T03:17:38.755 DEBUG:teuthology.orchestra.run.smithi032:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-15T03:17:38.757 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-15T03:17:38.769 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-15T03:17:38.886 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-15T03:17:38.894 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-15T03:17:38.895 DEBUG:teuthology.orchestra.run.smithi032:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-15T03:17:38.897 DEBUG:teuthology.orchestra.run.smithi096:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-15T03:17:38.899 DEBUG:teuthology.orchestra.run.smithi187:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-15T03:17:38.912 INFO:teuthology.orchestra.run.smithi096.stderr:bash: line 1: ntpq: command not found 2024-09-15T03:17:38.912 INFO:teuthology.orchestra.run.smithi032.stderr:bash: line 1: ntpq: command not found 2024-09-15T03:17:38.913 INFO:teuthology.orchestra.run.smithi187.stderr:bash: line 1: ntpq: command not found 2024-09-15T03:17:38.916 INFO:teuthology.orchestra.run.smithi096.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-15T03:17:38.916 INFO:teuthology.orchestra.run.smithi096.stdout:=============================================================================== 2024-09-15T03:17:38.916 INFO:teuthology.orchestra.run.smithi096.stdout:^* hv01.front.sepia.ceph.com 3 6 377 22 +209us[ +210us] +/- 47ms 2024-09-15T03:17:38.916 INFO:teuthology.orchestra.run.smithi096.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 22 -249us[ -248us] +/- 75ms 2024-09-15T03:17:38.916 INFO:teuthology.orchestra.run.smithi096.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 22 -90us[ -89us] +/- 83ms 2024-09-15T03:17:38.916 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi032.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi032.stdout:=============================================================================== 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi032.stdout:^* hv01.front.sepia.ceph.com 3 6 377 25 +235us[ +243us] +/- 47ms 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi032.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 21 -234us[ -234us] +/- 75ms 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi032.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 21 -69us[ -69us] +/- 83ms 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi032.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi187.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi187.stdout:=============================================================================== 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi187.stdout:^* hv01.front.sepia.ceph.com 3 6 377 22 +224us[ +246us] +/- 47ms 2024-09-15T03:17:38.919 INFO:teuthology.orchestra.run.smithi187.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 22 -260us[ -237us] +/- 75ms 2024-09-15T03:17:38.920 INFO:teuthology.orchestra.run.smithi187.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 20 -92us[ -92us] +/- 83ms 2024-09-15T03:17:38.920 INFO:teuthology.orchestra.run.smithi187.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-15T03:17:38.920 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-15T03:17:38.929 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-15T03:17:38.929 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-15T03:17:38.937 DEBUG:teuthology.orchestra.run.smithi032:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-15T03:17:39.036 DEBUG:teuthology.orchestra.run.smithi096:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-15T03:17:39.101 DEBUG:teuthology.orchestra.run.smithi187:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-15T03:17:39.165 DEBUG:teuthology.orchestra.run.smithi032:> 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 2024-09-15T03:17:39.197 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:17:39.197 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-09-15T03:17:39.225 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:17:39.225 DEBUG:teuthology.orchestra.run.smithi187:> 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 2024-09-15T03:17:39.253 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:17:39.253 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-15T03:17:39.263 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-15T03:17:39.272 INFO:teuthology.task.internal:Duration was 844.657560 seconds 2024-09-15T03:17:39.272 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-15T03:17:39.281 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-15T03:17:39.281 DEBUG:teuthology.orchestra.run.smithi032:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-15T03:17:39.284 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-15T03:17:39.287 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-15T03:17:39.322 INFO:teuthology.orchestra.run.smithi096.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-15T03:17:39.325 INFO:teuthology.orchestra.run.smithi032.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-15T03:17:39.332 INFO:teuthology.orchestra.run.smithi187.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-15T03:17:39.672 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-15T03:17:39.672 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi032.front.sepia.ceph.com 2024-09-15T03:17:39.672 DEBUG:teuthology.orchestra.run.smithi032:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-15T03:17:39.697 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi096.front.sepia.ceph.com 2024-09-15T03:17:39.697 DEBUG:teuthology.orchestra.run.smithi096:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-15T03:17:39.727 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi187.front.sepia.ceph.com 2024-09-15T03:17:39.727 DEBUG:teuthology.orchestra.run.smithi187:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-15T03:17:39.755 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-15T03:17:39.755 DEBUG:teuthology.orchestra.run.smithi032:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-15T03:17:39.757 DEBUG:teuthology.orchestra.run.smithi096:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-15T03:17:39.769 DEBUG:teuthology.orchestra.run.smithi187:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-15T03:17:39.821 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-15T03:17:39.821 DEBUG:teuthology.orchestra.run.smithi032:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-15T03:17:39.830 DEBUG:teuthology.orchestra.run.smithi096:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-15T03:17:39.836 DEBUG:teuthology.orchestra.run.smithi187:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-15T03:17:40.027 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-15T03:17:40.037 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-15T03:17:40.037 DEBUG:teuthology.orchestra.run.smithi032:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-15T03:17:40.063 DEBUG:teuthology.orchestra.run.smithi096:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-15T03:17:40.089 DEBUG:teuthology.orchestra.run.smithi187:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-15T03:17:40.114 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-15T03:17:40.125 DEBUG:teuthology.orchestra.run.smithi032:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-15T03:17:40.128 DEBUG:teuthology.orchestra.run.smithi096:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-15T03:17:40.131 DEBUG:teuthology.orchestra.run.smithi187:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-15T03:17:40.149 INFO:teuthology.orchestra.run.smithi032.stdout:kernel.core_pattern = core 2024-09-15T03:17:40.152 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern = core 2024-09-15T03:17:40.177 INFO:teuthology.orchestra.run.smithi187.stdout:kernel.core_pattern = core 2024-09-15T03:17:40.202 DEBUG:teuthology.orchestra.run.smithi032:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-15T03:17:40.234 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:17:40.234 DEBUG:teuthology.orchestra.run.smithi096:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-15T03:17:40.256 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:17:40.257 DEBUG:teuthology.orchestra.run.smithi187:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-15T03:17:40.273 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-15T03:17:40.273 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-15T03:17:40.283 INFO:teuthology.task.internal:Transferring archived files... 2024-09-15T03:17:40.284 DEBUG:teuthology.misc:Transferring archived files from smithi032:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi032 2024-09-15T03:17:40.284 DEBUG:teuthology.orchestra.run.smithi032:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-15T03:17:40.323 DEBUG:teuthology.misc:Transferring archived files from smithi096:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi096 2024-09-15T03:17:40.323 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-15T03:17:40.357 DEBUG:teuthology.misc:Transferring archived files from smithi187:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/skanta-2024-09-15_00:54:39-rados-wip-bharath9-testing-2024-09-13-1444-quincy-distro-default-smithi/7905239/remote/smithi187 2024-09-15T03:17:40.358 DEBUG:teuthology.orchestra.run.smithi187:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-15T03:17:40.392 INFO:teuthology.task.internal:Removing archive directory... 2024-09-15T03:17:40.393 DEBUG:teuthology.orchestra.run.smithi032:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-15T03:17:40.395 DEBUG:teuthology.orchestra.run.smithi096:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-15T03:17:40.397 DEBUG:teuthology.orchestra.run.smithi187:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-15T03:17:40.442 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-15T03:17:40.451 INFO:teuthology.task.internal:Not uploading archives. 2024-09-15T03:17:40.451 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-15T03:17:40.459 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-15T03:17:40.460 DEBUG:teuthology.orchestra.run.smithi032:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-15T03:17:40.462 DEBUG:teuthology.orchestra.run.smithi096:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-15T03:17:40.464 DEBUG:teuthology.orchestra.run.smithi187:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-15T03:17:40.475 INFO:teuthology.orchestra.run.smithi032.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 15 03:17 /home/ubuntu/cephtest 2024-09-15T03:17:40.476 INFO:teuthology.orchestra.run.smithi096.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 15 03:17 /home/ubuntu/cephtest 2024-09-15T03:17:40.497 INFO:teuthology.orchestra.run.smithi187.stdout: 265613 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 15 03:17 /home/ubuntu/cephtest 2024-09-15T03:17:40.498 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-15T03:17:40.509 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-15T03:17:40.530 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} duration: 844.6575601100922 flavor: default owner: scheduled_skanta@teuthology success: true 2024-09-15T03:17:40.530 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-15T03:17:40.606 INFO:teuthology.run:pass